opencv

cv2.resize() – Resizing Image using OpenCV Python 1

cv2.resize() – Resizing Image using OpenCV Python

In this tutorial, we will learn to resize an image using OpenCV in the Python programming language. For this, we are using the cv2.resize() function. OpenCV refers to Open Source Computer Vision library aimed at computer vision and machine learning. Image resizing refers to the process of changing the dimensions...

cv2.imread() – Read Image using OpenCV Python 0

cv2.imread() – Read Image using OpenCV Python

In this tutorial, we are going to focus on reading an image using the Python programming language. For this, we are going to use the OpenCV library. OpenCV refers to Open Source Computer Vision library aimed at computer vision and machine learning. To use OpenCV in Python install the following...

Extract and Saving Frame from Videos in Python 0

Extract and Saving Frame from Videos in Python

In this post, we are going to learn and build a python program where we are going to extract and save frames from videos using the OpenCV library. OpenCV is one of the most commonly used libraries for computer vision tasks, such as reading and saving images, face recognition, segmentation,...

What is UNET? 0

What is UNET?

UNET is an architecture developed by Olaf Ronneberger and his team at the University of Freiburg in 2015 for biomedical image segmentation. It is a highly popular approach for semantic segmentation tasks. It is a fully convolutional neural network that is designed to learn from fewer training samples. This architecture...