2.Image reading and display

2.1. Reading of images:

img = cv2.imread('yahboom.jpg', 0) The first parameter is the path of the image, and the second parameter is how to read the image.

cv2.IMREAD_UNCHANGED:Keep the original format unchanged,-1;

cv2.IMREAD_GRAYSCALE:Read the image in grayscale mode, which can be represented by 0;

cv2.IMREAD_COLOR:,read a color picture, which can be represented by 1; default value

cv2.IMREAD_UNCHANGED:Read in an image and include its alpha channel, which can be represented by 2.

2.2. Image display

cv.imshow('frame', frame):Open a window named frame and display frame data (image/video data)

Parameter meaning:

The first parameter represents the name of the window that is created and opened.

The second parameter represents the image to be displayed

2.2.1.Code and actual effect display

Code path:

Main code:

After running the code block, you can see the following interface, and the image has been read out.