2

我有可以工作并返回良好属性的 C 代码:

int main(int argc, char** argv) {

    CvCapture *capture = NULL; 
    const char* filename = "foo.mov";

    capture = cvCreateFileCapture(filename);
    int w = (int)cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH);
    int h = (int)cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT);

    std::cout << "Width:  " << w << std::endl;
    std::cout << "Height: " << h << std::endl;

但 Python 等价物只为所有内容返回 0:

import cv2

capture = cv2.VideoCapture('foo.mov')

print capture.get(cv2.cv.CV_CAP_PROP_FRAME_WIDTH)

这返回0.0

有任何想法吗?

4

1 回答 1

0
  1. 在pythonc中检查打开的 cv 版本:

    from cv2 导入版本 版本

    并使用CV_VERSION宏。

  2. 输出是什么 capture.get(cv2.cv.CV_CAP_PROP_FRAME_HEIGHT)

  3. python 和 foo.mov 是否位于同一目录中?

于 2013-03-27T22:10:47.967 回答