Jayant Verma

Jayant Verma

Read Images in Python OpenCV

OpenCV is the standard library for computer vision in Python. The cv2.imread() function loads an image from a file and returns a NumPy array. Every image processing pipeline starts here, because you cannot transform pixels you have not read into…

3d Plots

3-Dimensional Plots in Python Using Matplotlib

Just like 2-Dimenstional plots you can also create 3-Dimensional plots in Python using matplotlib. In this tutorial, we will learn how to plot 3-Dimensional plots using matplotlib. How to Plot 3-Dimensional Plots in Python? We will be using the mplot3d…

Npy Files

How to Save in .npy Format?

Ever come across a .npy file? In this article, we’ll go over the steps to save in npy format. NPY is Numpy’s binary data storage format. Numpy is an essential module for carrying out data science operations efficiently. Importing, saving…