
OpenCV Image Operations
The cv2.imread() function is used to read an image file and takes two arguments.
Tag
61 posts

The cv2.imread() function is used to read an image file and takes two arguments.

Hello, in this tutorial series, the aim is to explain everything step by step from the very beginning to the end, following the OpenCV documentation.

We will learn different morphological operations like Erosion, Dilation, Opening, Closing. We will see different functions like: cv2.erode(), cv2.dilate(), cv2.morphologyEx()

We will understand what contours are. We will learn to find and draw contours. We will learn these functions: cv2.findContours(), cv2.drawContours()

( Histograms 1: Find, Plot, Analyze ) ### Goals

Blurring images with various low-pass filters. Applying custom filters to images (2D convolution)

We will learn how to apply different geometric transformations to images such as translation, rotation and affine transformation. We will learn this function: cv2.getPerspectiveTransform

Accessing and modifying pixel values, Accessing image properties, Setting the Image Region (area) (ROI), Splitting and Merging Images

First let us recall which data types exist in Python, then learn how to convert between them using type conversion functions.