Draw a circle on an image using OpenCV Python

By Soma Shrenika

In this tutorial, we will learn how to draw a circle on an image using OpenCV Python. This can be useful when we want to detect an object in an image. We will discuss the technique.... Read More

Why destructor does not take parameters in C++

By Shubham Baniya

Hello Folks! Welcome to this tutorial. In this tutorial, we are going to discuss Why destructor does not take parameters in C++. Many of you are having this question in your mind, .... Read More

Initialize an array with same values in Java – Multiple ways

By Shiksha Sinha

In this tutorial, we will learn how to initialize an array with the same values in Java. An array, in Java, is an object of a similar data type that will contain data elements in a.... Read More

Dataframe.memory_usage() in Pandas

By Soma Shrenika

In this tutorial, we will learn how much memory is used by a data frame in Pandas using the memory_usage() method. This method displays the memory used by each column of the data f.... Read More

Count the number of null elements in an array in C++

By Shubham Baniya

In this tutorial, we will learn how to count the null elements in the string array in C++. There is no predefined string data type in C because of which in order to create a string.... Read More

Check version of installed Python from cmd in Windows

By Shubham Baniya

Hello & welcome to this tutorial!!! This tutorial will help you to find out which version of Python is installed on your Windows OS computer using cmd (Command Prompt). Steps f.... Read More

Separate alphabets and numbers in a string using regular expressions in Python

By Soma Shrenika

In this tutorial, we will learn regular expressions to separate numbers and alphabets in Python in different ways. This is very useful in competitive programming. Using regular exp.... Read More

Dataframe.get() in Pandas with examples

By Soma Shrenika

In this tutorial, we will learn how to use the get() method in pandas. This method is used to retrieve an item for an object for a given key which is basically the column of a data.... Read More

Related Posts