如标题所示,我想使用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
最佳答案
在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
关于matlab - 如何在mexopencv中读取avi文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20842221/