据我了解,在 openCV 2.4 中忽略了 cvSize 类型,可以改用 Python 元组。当我尝试使用 CreateVideoWriter 函数时:
import cv2 as cv
writer = cv.CreateVideoWriter('movie', cv.CV_FOURCC('M', 'J', 'P', 'G'), fps, (width, height))
我收到此错误:TypeError: CvSize argument 'frame_size' 需要两个整数。
有什么帮助吗?