cv2 read rgb image

Solutions on MaxInterview for cv2 read rgb image by the best coders in the world

showing results for - "cv2 read rgb image"
Sean
20 Jun 2018
1import cv2
2#read image
3img = cv2.imread('D:/image-1.png')
4#print its shape
5print('Image Dimensions :', img.shape)