Depth Map from stereo images : OpenCV Python

By Vikrant Dey

In this tutorial, we shall see how to create a depth map from stereo images using the OpenCV library in Python. But before that, let us first understand the concept of stereo image.... Read More

Function Wrappers in Python

By Sameer Chachiya

In this tutorial, we will learn how function wrappers work in Python and what it is. They are a very powerful tool that allows programmers to modify the behaviour of the function o.... Read More

Python code for Time complexity plot of Heap sort

By Richa Sirwani

In this tutorial, we will write the Python program for the time complexity plot of heap sort. Heap: A heap is a complete binary tree where the value of parent is greater than its c.... Read More

Convert String to JSON Object using Python

By Prince John

In this tutorial, we will understand the concepts of JSON. And learn different methods to Convert String to a JSON object in Python. Example of a JSON Object { "employee": { "name".... Read More

Difference between iterable and iterator in Python

By Ranjeet V

Hello everyone, in this tutorial, we are going the see the difference between iterable and iterator in Python. Let’s start with an example. Say, we have a Python list as show.... Read More

How to create mergeable stack in C++

By Titichh Mishra

Hi there. Today we will see how to merge two stacks in O(1) time complexity using C++. Since we have to solve this in such an efficient way, we won’t be able to use arrays he.... Read More

C++ program to check if a singly linked list is palindrome.

By Titichh Mishra

Today we are going to see if a singly linked list is a palindrome or not in C++. A palindrome number is a number that looks the same in both backward and forwards. Examples are 100.... Read More

C++ program to find unique words in a file

By Titichh Mishra

Hi there. Today we are going to see how to find unique words in a text file. For this problem, we will need to use a library named fstream, another standard C++ library. It has it&.... Read More

Related Posts