1. 程式人生 > >OpenCV:使用VideoCapture類進行讀取視訊

OpenCV:使用VideoCapture類進行讀取視訊

// readvideo.cpp : 定義控制檯應用程式的入口點。

#include <cv.h>  
#include "stdafx.h"
#include <opencv2\opencv.hpp>
using namespace cv;

int _tmain(int argc, _TCHAR* argv[])
{
	VideoCapture capture;
	capture.open("E:\\Workspace\\OpenCV\\test\\video\\video.avi");
	while(true)
	{
		Mat frame;
		capture>>frame;
		imshow("readvideo",frame);
		waitKey(10);
	}
     return 0;   
}