我正在尝试制作一个小程序,用于显示文件中的视频,并在按住键时将帧保存为单独的图像。
除了视频在保存帧时冻结,这似乎工作正常,这使得确定何时停止保存帧非常困难。我想知道是否有人知道如何避免这个问题。
这是程序:
#include "stdafx.h"
#include <cv.h>
#include <highgui.h>
#include <iostream>
int main( int argc, char** argv[] ) {
int cnt = 1;
char c;
cvNamedWindow( "Video", CV_WINDOW_AUTOSIZE );
CvCapture* capture = cvCreateFileCapture( "D:\\AVI Video\\SGVideo.mp4" );
IplImage* frame;
while(1) {
char num[40]="D:\\Bilder\\SGVSamples\\";
char str[10];
char pmp[10]=".jpg";
_itoa(cnt, str, 10);
strcat(num,str);
strcat(num,pmp);
frame = cvQueryFrame( capture );
if( !frame ) {
cout << "End of video!\n";
break;
}
cvShowImage( "Video", frame );
c = cvWaitKey(34);
// 'Space' -> Save frame :: 'Esc' -> Exit
if( c == 32 ) {
try {
cvSaveImage( num, frame );
cout << "Saved image: " << num <<" - Frame count: " << cnt << "\n";
} catch(...) {
cout << "Failed to save image!\n";
}
} else if( c == 27 ) {
cout << "Shutting down...";
break;
}
cnt = cnt+1;
}
cvReleaseCapture( &capture );
cvDestroyWindow( "Video" );
}
我对OpenCV和cpp一般都很新,所以任何提示都会非常感激!
答案 0 :(得分:0)
您应该运行另一个线程来保存图像。
try {
cvSaveImage( num, frame );
cout << "Saved image: " << num <<" - Frame count: " << cnt << "\n";
} catch(...) {
cout << "Failed to save image!\n";
}
该块正在冻结。如果你有另一个只处理这个块的线程(需要时),视频就不会冻结。