毛星云opencv8.2.3之凸包检测及其基础程序

#include 
#include
#include"opencv2/highgui/highgui.hpp"
#include
#include
#include
#include
using namespace std;
using namespace cv;



int main()
{
	Mat image(600, 600, CV_8UC3);
	RNG& rng = theRNG();

	while (1)
	{
		char key;
		int count = (unsigned)rng % 100 + 3;
		vectorpoints;

		for (int i = 0; i < count; i++)
		{
			Point point;
			point.x = rng.uniform(image.cols / 4, image.cols * 3 / 4);
			point.y = rng.uniform(image.rows / 4, image.rows * 3 / 4);

			points.push_back(point);
		}
		vectorhull;
		convexHull(Mat(points), hull, true);

		image = Scalar::all(0);
		for (int i = 0; i < count; i++)
			circle(image, points[i], 3, Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255)), FILLED,LINE_AA);
		
		int hullcount = (int)hull.size();
		Point point0 = points[hull[hullcount - 1]];

		for (int i = 0; i < hullcount; i++)
		{
			Point point = points[hull[i]];
			line(image, point0, point, Scalar(255, 255, 255), 2, LINE_AA);
			point0 = point;
		}

		imshow("凸包检测示例", image);

		key = (char)waitKey();
		if (key == 27 || key == 'q' || key == 'Q')
			break;

	}


	return 0;
}




运行结果如图:
毛星云opencv8.2.3之凸包检测及其基础程序_第1张图片

 原版介绍:
毛星云opencv8.2.3之凸包检测及其基础程序_第2张图片

 毛星云opencv8.2.3之凸包检测及其基础程序_第3张图片

 毛星云opencv8.2.3之凸包检测及其基础程序_第4张图片

 毛星云opencv8.2.3之凸包检测及其基础程序_第5张图片

 毛星云opencv8.2.3之凸包检测及其基础程序_第6张图片

 

你可能感兴趣的:(opencv,人工智能,计算机视觉)