1. 程式人生 > >opencv (2)取得攝像頭或者視訊

opencv (2)取得攝像頭或者視訊

#include <opencv2\opencv.hpp>
using namespace cv;
using namespace std;

int main()
{
//讀取視訊或攝像頭
VideoCapture capture(0);
//讀取視訊或攝像頭
VideoCapture capture(“1.avi”);

while (true)
{
	Mat frame;
	capture >> frame;
	imshow("讀取視訊", frame);
	waitKey(30);	//延時30
}
return 0;

}