Posts from Python

Extract image from video at given time using OpenCV in Python

By Muskan Bani

In this post, we will learn how to extract images from the video at a given time in Python using OpenCV. OpenCV is an open-source package that allows us to work on video, images, a.... Read More

Unix time to datetime in Python

By Kovid Bhatt

Epoch is the name of the day of 1st January 1970. Unix timestamp means the number of seconds that have passed since 1st January 1970(Epoch) till today and so on. This text will sho.... Read More

Convert string representation of list to a list in Python

By Prachi Pandey

This text is very helpful for you if you want to acquire skills in the methods of converting a string presentation of a list to a list in Python programming. In this blog, some of .... Read More

Count total number of rows and columns in a sheet using Openpyxl

By Amandeep Singh

In this tutorial, we will learn how to get or count the number of rows and columns of a sheet using openpyxl in Python. Count the total number of rows and columns of the excel shee.... Read More

Get random n rows from a 2D array in Python

By Aakanksha Thakar

In this tutorial, we are going to see how to get random n rows from a 2D array in Python. The 2D array is nothing but a matrix. This task can be done by using the Numpy library. We.... Read More

Remove minimum number of elements such that no common element exist in both array in Python

By Kunal Kamble

In this tutorial, we will write a Python program to remove minimum elements from the array so that no common elements exist in both arrays. Following is the approach we are going t.... Read More

Rotate an image in Python – Multiple ways

By Amandeep Singh

Let’s look at how to rotate an image using Python in this tutorial. By using image rotation, the picture is rotated by a predetermined number of degrees with respect to its c.... Read More

Crop Image using OpenCV in Python

By Amandeep Singh

One of the most fundamental picture processes we use in our projects is cropping an image. We’ll go through how to crop image in Python using OpenCV in this tutorial. Crop Im.... Read More

Related Posts