【学习opencv】 视频载入与显示

用到的头文件:

#include "highgui.h"

显示时用到的函数:

//注意把视频文件放在工程的debug目录下,不是大的debug下

	const char *filePath="10.avi";	
	cvNamedWindow( "Example2", CV_WINDOW_AUTOSIZE );
	CvCapture* capture = cvCreateFileCapture(filePath);
 	IplImage* frame;	
	while(1) 	
	{			
		frame = cvQueryFrame( capture );		
		if( !frame ) 			
		break;
		cvShowImage( "Example2", frame );		
		char c = cvWaitKey(50);  //等待50 ms		
		if( c == 27 )            //显示前27帧			
		break;
	}
	

你可能感兴趣的:(C++,视频,opencv)