
Basic Operations on Images
Accessing and modifying pixel values, Accessing image properties, Setting the Image Region (area) (ROI), Splitting and Merging Images
Tag
60 posts

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

We will learn several arithmetic operations on images, such as addition, subtraction, and bitwise operations. You will learn these functions: cv2.add(), cv2.addWeighted(), etc.

We will learn about image pyramids. We will use image pyramids to create a new fruit, 'Orapple', and we will see these functions: cv2.pyrUp(), cv2.pyrDown()

Image gradients and edge finding with these functions: cv2.Sobel(), cv2.Scharr(), cv2.Laplacian(), etc.

The concept of Canny edge detection. OpenCV function for this operation: cv2.Canny()

We will learn how to handle mouse events in OpenCV. We will learn this function: cv2.setMouseCallback()