opencv图像基础

像素:计算机屏幕所能显示的最小单位

RGB:三原色,三通道    opencv中顺序为bgr

坐标系:(height,width,channel)

基本操作:

(1)读取图片 imread

(2)图片形状   .shape

(3)img.size  输出像素个数 ,与np,torch一样

(4)显示图片 imshow(figure,img)            plt.imshow也行plt.imshow(img)

(5)waitkey(0)  等待几秒

(6)destoryallwindows( )关闭图片

(7)读取灰度图片   imread(路径,cv2.IMREAD_GRAYSCLAE)

你可能感兴趣的:(opencv,人工智能,计算机视觉)