OpenCV3.4调用摄像头+CANNY算子提取轮廓

这份代码算上网上的代码,修改后可以跑通。注意,如果窗口命名为中文的可能会造成问题,建议用英文的、


#include <opencv2/highgui/highgui.hpp>

#include <opencv2/imgproc/imgproc.hpp>

#include <opencv2/core/core.hpp>



using namespace cv;





int main()

{

	VideoCapture cap(0);

	if (!cap.isOpened())

	{

		return -1;

	}

	Mat frame;

	Mat edges;



	bool stop = false;

	while (!stop)

	{

		cap >> frame;

		cvtColor(frame, edges, CV_BGR2GRAY);

		GaussianBlur(edges, edges, Size(7, 7), 1.5, 1.5);

		Canny(edges, edges, 0, 30, 3);

		imshow("1", edges);

		if (waitKey(30) >= 0)

			stop = true;

	}

	return 0;

}

效果图:

猜你喜欢

转载自blog.csdn.net/m0_37756557/article/details/81543316