0

这个问题是error-in-opencv-code-for-motion-detection 的延续。编辑后的代码没有任何错误,但没有创建输出视频,它是零字节!这有什么问题?另外,为运动检测创建的​​边界框从未真正捕捉到运动,也就是说,它没有做它做的事情最初声称这样做。我是否误解了代码的目标?所以,这是我的问题:

  1. 如何纠正创作并保存视频?
  2. 需要修改什么来检测运动并跟踪它?
  3. 如何将视频转换为每帧中的一系列编号 jpg 图像,反之亦然。
4

1 回答 1

0

这是您可以使用的代码,用于将视频构图为一组图像。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "cv.h"
#include <highgui.h>
#include "cxcore.h" 

int main( int argc, char** argv )
{    
     CvCapture *capture = cvCaptureFromAVI("E:\\Myvideo.avi");
             if(!capture) 
    {
        printf("!!! cvCaptureFromAVI failed (file not found?)\n");
        return -1; 
    }

    int fps = (int) cvGetCaptureProperty(capture, CV_CAP_PROP_FPS);

    printf("* FPS: %d\n", fps);

    IplImage* frame = NULL;
    int frame_number = 0;
    char key = 0;   

    while (key != 'q') 
    {
        // get frame 
        frame = cvQueryFrame(capture);       
        if (!frame) 
        {
            printf("!!! cvQueryFrame failed: no frame\n");
            break;
        }       




        // quit when user press 'q'
        key = cvWaitKey(1000 / fps);
    }

    // free resources
    cvReleaseCapture(&capture);

    return 0;
}
于 2013-01-28T06:05:06.780 回答