📜  cv2 读取 rgb 图像 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:39.657000             🧑  作者: Mango

代码示例1
import cv2
#read image
img = cv2.imread('D:/image-1.png')
#print its shape
print('Image Dimensions :', img.shape)