Answers for "read the image in opencv in rgb format"

0

cv2 read rgb image

import cv2
#read image
img = cv2.imread('D:/image-1.png')
#print its shape
print('Image Dimensions :', img.shape)
Posted by: Guest on June-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language