如何在mexopencv中读取avi文件

时间:2013-12-30 15:13:30

标签: matlab opencv

正如标题所示,我想使用avi阅读mexopencv个文件。对于OpenCV,我已经远离here了。我想要mexopencv类似的东西。

CvCapture* capture = cvCaptureFromAVI("infile.avi");
Capturing a frame:

IplImage* img = 0; 
if(!cvGrabFrame(capture)){              // capture a frame 
    printf("Could not grab a frame\n\7");
    exit(0);
}
img=cvRetrieveFrame(capture);// retrieve the captured frame

1 个答案:

答案 0 :(得分:2)

在C ++ API中,cv::VideoCapture类可以从磁盘上保存的网络摄像头和视频文件中捕获视频:

cap = cv.VideoCapture('file.avi');
for i=1:cap.get('FrameCount')
    img = cap.read();
    if isempty(img), break; end
    imshow(img)
    drawnow
end