使用OpenCV从.avi视频获取帧

时间:2012-02-12 05:01:41

标签: video opencv frame avi

#include "cv.h"
#include "highgui.h"
int main(int argc, char** argv)
{
CvCapture* capture=0;
IplImage* frame=0;

capture = cvCaptureFromAVI("C:\\boy walking back.avi"); // read AVI video
if( !capture )
    throw "Error when reading steam_avi";

cvNamedWindow( "w", 1);

for( ; ; )
{
/*  int cvGrabFrame (CvCapture* capture);
    IplImage* cvRetrieveFrame (CvCapture* capture)*/
    frame = cvQueryFrame( capture );
if(!frame)
        break;
    cvShowImage("w", frame);

}
cvWaitKey(0); // key press to close window
cvDestroyWindow("w");
cvReleaseImage(&frame);
}

我在VS2008上使用openCV。我已经在视频文件中读取并使用CV_CAP_PROP_FRAME_COUNT来获得对于4秒长视频剪辑大约为130的帧数。我正在对行走进行运动识别,因此我需要在5帧之间获得每隔5帧,身体的运动几乎没有变化。到目前为止我有一个程序,它允许我获得一帧视频剪辑。但是,我无法获得不同的帧,而且,我不知道如何获得每隔5帧。以上是用于获取视频的一帧的代码。

1 个答案:

答案 0 :(得分:6)

你应该能够跳过4帧,然后保持第5帧。下面是我写的一个小例子来证明这一点:

IplImage* skipNFrames(CvCapture* capture, int n)
{
    for(int i = 0; i < n; ++i)
    {
        if(cvQueryFrame(capture) == NULL)
        {
            return NULL;
        }
    }

    return cvQueryFrame(capture);
}


int main(int argc, char* argv[])
{
    CvCapture* capture = cvCaptureFromFile("../opencv-root/samples/c/tree.avi");

    IplImage* frame = NULL;
    do
    {
        frame = skipNFrames(capture, 4);
        cvNamedWindow("frame", CV_WINDOW_AUTOSIZE);
        cvShowImage("frame", frame);
        cvWaitKey(100);
    } while( frame != NULL );

    cvReleaseCapture(&capture);
    cvDestroyWindow("frame");
    cvReleaseImage(&frame);

    return 0;
}

希望有所帮助:)