Hello Programmers, In this tutorial, we will learn about Optical Flow in OpenCV using Python. Optical flow is the flow (motion) of objects between two consecutive frames caused by .... Read More
In this tutorial, we will learn how to record voice from the microphone in python. This can be done by using the Pyaudio module. This pyaudio helps python to record as well as play.... Read More
In this article, we will learn how to check if a given array contains all the elements in the given range in Python. Example arr[] = {2, 6, 7, 8, 9, 10, 12, 14} range = {5, 10} Out.... Read More
Before understanding our topic, we must first understand the meaning of a character. A single alphabet or a single digit or a single symbol or a single space within a single quote .... Read More
This tutorial will teach us how to insert a new column based on conditions in Python. It is easy to add a column in Python. But here we will add a column with values based on some .... Read More
In this tutorial, we are going to see how to add labels to a pie chart. First of all, let us about what a pie chart is. In matplotlib pie() function is used to plot the pie chart. .... Read More
Hello programmers, in this tutorial, we will learn how to remove digits from the end of a string in Python. We can do this using the rstrip([chars]) method. rstrip([char]) rstrip .... Read More
In Excel, if a blank row appears in the wrong place it will prevent Excel from performing basic functions such as sorting, removing, duplicates and subtotals. Learn how to programm.... Read More