Lines Matching full:points
12 << "of points using functions: minAreaRect() minEnclosingTriangle() minEnclosingCircle().\n"
13 << "Random points are generated and then enclosed.\n\n"
14 << "Press ESC, 'q' or 'Q' to exit and any other key to regenerate the set of points.\n\n"
30 vector<Point> points;
32 // Generate a random set of points
39 points.push_back(pt);
43 RotatedRect box = minAreaRect(Mat(points));
48 minEnclosingTriangle(points, triangle);
53 minEnclosingCircle(Mat(points), center, radius);
54 box.points(vtx);
58 // Draw the points
60 circle( img, points[i], 3, Scalar(0, 0, 255), FILLED, LINE_AA );