Lines Matching full:points
197 virtual void generate_point_set( void* points );
208 void* points;
221 points = 0;
247 points = 0;
355 points = points1;
364 points = points2;
380 generate_point_set( points );
505 hull1 = cvConvexHull2( points, hull_storage, orientation, return_points );
508 cv::Mat _points = cv::cvarrToMat(points);
573 // extract convex hull points
630 // check that all the points are inside the hull or on the hull edge
631 // and at least hull_point points are at the hull vertices
692 box = cvMinAreaRect2( points, storage );
697 cv::RotatedRect r = cv::minAreaRect(cv::cvarrToMat(points));
699 r.points((cv::Point2f*)box_pt);
714 // 2. they must intersect in their middle points
751 // check that the box includes all the points
829 cv::cvarrToMat(points).convertTo(pointsAsVector, CV_32F);
864 // Check if all points are enclosed by the triangle
871 // Check if triangle edges middle points touch the polygon
905 "All points should be enclosed by the triangle.\n" );
911 "All triangle edges middle points should touch the convex hull of the points.\n" );
955 cvMinEnclosingCircle( points, ¢er, &radius );
959 cv::minEnclosingCircle(cv::cvarrToMat(points), tmpcenter, radius);
989 // check that the circle contains all the points inside and
990 // remember at most 3 points that are close to the boundary
1008 "There should be at at least 3 points near the circle boundary or 2 points on the diameter\n" );
1081 result = cvArcLength( points, slice, points1 ? -1 : is_closed );
1083 result = cv::arcLength(cv::cvarrToMat(points),
1140 void generate_point_set( void* points );
1150 min_log_size = 5; // for robust ellipse fitting a dozen of points is needed at least
1237 box = cvFitEllipse2( points );
1239 box = (CvBox2D)cv::fitEllipse(cv::cvarrToMat(points));
1365 void generate_point_set( void* points );
1425 void generate_point_set( void* points );
1437 min_log_size = 5; // for robust line fitting a dozen of points is needed at least
1539 cvFitLine( points, dist_type, 0, reps, aeps, line );
1541 cv::fitLine(cv::cvarrToMat(points), (cv::Vec4f&)line[0], dist_type, 0, reps, aeps);
1543 cv::fitLine(cv::cvarrToMat(points), (cv::Vec6f&)line[0], dist_type, 0, reps, aeps);
1640 double max_r_scale, double angle, CvArr* points, RNG& rng )
1647 if( CV_IS_SEQ(points) )
1649 CvSeq* ptseq = (CvSeq*)points;
1656 CvMat* ptm = (CvMat*)points;
1706 void generate_point_set( void* points );
1770 cvMoments( points, &moments );
1771 area = cvContourArea( points );
1775 moments = (CvMoments)cv::moments(cv::cvarrToMat(points));
1776 area = cv::contourArea(cv::cvarrToMat(points));