OpenCV:读取视频流
2020-03-20 本文已影响0人
AI秘籍
#include <iostream>
#include <opencv2/opencv.hpp>
using namespace cv;
using namespace std;
int main()
{
cv::VideoCapture cap;
cap.open("xxx.MP4");
cv::Mat frame;
while(1)
{
cap>>frame;
if(frame.empty())
{
break;
}
cv::imshow("frame",frame);
cv::waitKey(0);
}
return 0;
}