📜  cv2 帧大小 - Python 代码示例

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

代码示例2
h, w, c = im.shape
print('width:  ', w)
print('height: ', h)
print('channel:', c)
# width:   400
# height:  225
# channel: 3