Divide an Image Into Equal Parts Using OpenCV in Python

By Muskan Bani

We’ll walk over how to divide a picture into equal halves using Python and OpenCV in this post. The Python package known as OpenCV enables us to utilize a variety of image-pr.... Read More

How to pass a list as an argument in Python

By Prachi Pandey

Using Python to pass a list as an argument should be easy to understand after reading this tutorial. A function can receive arguments in the form of information to be passed to it..... Read More

Extract Video Metadata in Python

By Kovid Bhatt

So, in this blog, you will learn how to extract video metadata using Python programming. There are several ways of extracting the metadata of different media files and in this text.... Read More

Pick a random element from an array in JavaScript

By HETVI JAIN

 In this tutorial, we will learn how to pick a random element from an array in JavaScript. It is essential to know because this is a very common type of operation you will do with.... Read More

Remove whitespace from the start and end of a string in Python

By Amandeep Singh

In Python, there are several methods for eliminating spaces from a string. The goal of this lesson is to give a brief illustration of each technique we might use to eliminate white.... Read More

How to get the current date and time in C++ in various formats

By HARI HARAN B

Obtaining the current date and time is crucial in many programs. The C++ STL provides the <chrono> library which can be used with <ctime> from c to get the current time.... Read More

Read an image with scipy.misc in Python

By Prachi Pandey

The following tutorial will guide you through reading an image from the path of the image file and returning the NumPy array of the image using scipy.misc. A package scipy.misc is .... Read More

Resize image in Python

By Khushi Aswani

As the title says, resizing images in Python sounds interesting right? We have already been fascinated by the title itself, it will be fun implementing it. We are going to learn ab.... Read More

Related Posts