读取并播放视频
VideoCapture capture("test.avi");
while(1)
{
Mat frame;
capture>>frame;
imshow("Video",frame);
waitKey(30);
}
定义的Mat变量,用于存储每一帧的图像。
用摄像头采集视频图像
VideoCapture capture(0);
VideoCapture capture("test.avi");
while(1)
{
Mat frame;
capture>>frame;
imshow("Video",frame);
waitKey(30);
}
定义的Mat变量,用于存储每一帧的图像。
VideoCapture capture(0);
本文标题:视频操作
本文链接:https://www.haomeiwen.com/subject/pokcnqtx.html
网友评论