我有一些关于为什么img像文档中的以下代码一样初始化的问题
import numpy as np
import cv2
# Create a black image
img = np.zeros((512,512,3), np.uint8)
# Draw a diagonal blue line with thickness of 5 px
cv2.line(img,(0,0),(511,511),(255,0,0),5)
它创建了一个 3d 数组img,我知道 512,512 表示图像大小,但是为什么我们需要在第三维中使用“3”?
BIG阳
相关分类