正如标题所示,我想使用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
答案 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