为了账号安全,请及时绑定邮箱和手机立即绑定

如何从视频调整帧大小,然后检索最终大小?

如何从视频调整帧大小,然后检索最终大小?

大话西游666 2021-10-10 16:12:16
我想读取一个视频文件,将其分成单独的帧,将每个帧的大小调整为最大宽度,然后检索最终图像的宽度和高度。我试过这个:为真:vs = cv2.VideoCapture(args["video"])# grab the frame from the threaded video stream and resize it# to have a maximum width of 400 pixelsframe = vs.read()frame = imutils.resize(frame, width=400)# grab the frame dimensions and convert it to a blobw, h = cv.GetSize(frame)但我得到:Traceback (most recent call last):  File "real_time_object_detection.py", line 52, in <module>    frame = imutils.resize(frame, width=400)  File "/home/pi/.virtualenvs/cv/lib/python3.5/site-packages/imutils/convenience.py", line 69, in resize    (h, w) = image.shape[:2]AttributeError: 'tuple' object has no attribute 'shape'为什么它会抱怨一行imutils/?我该怎么做?
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 217 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信