python opencv 读取mov文件
import cv2raw = cv2.VideoCapture('/home/zhangym/a.MOV')while 1:ret,frame = raw.read()cv2.imshow('hsv',frame)cv2.waitKey(10)
·
import cv2
raw = cv2.VideoCapture('/home/zhangym/a.MOV')
while 1:
ret,frame = raw.read()
cv2.imshow('hsv',frame)
cv2.waitKey(10)
更多推荐
所有评论(0)