本文主要是介绍OpenCV4 显示视频,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
// OpenCVVideo.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"
#include <opencv2/opencv.hpp>using namespace cv;int main()
{VideoCapture capture;capture.open(0);while (1){Mat frame;capture >> frame;imshow("读取视频", frame);waitKey(30);}/* VideoCapture capture;capture.open(0);Mat edges;while (1){Mat frame;capture >> frame;cvtColor(frame, edges, COLOR_BGR2GRAY);blur(edges, edges, Size(7, 7));Canny(edges, edges, 0, 30, 3);imshow("被Canny后的视频", edges);if (waitKey(30) >= 0)break;}*/return 0;
}
这篇关于OpenCV4 显示视频的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!