Lines Matching full:points
181 /* reorder output points */
201 Mat points = _points.getMat();
202 int i, j, k, count = points.checkVector(2);
203 int depth = points.depth();
215 const Point* ptsi = points.ptr<Point>();
216 const Point2f* ptsf = points.ptr<Point2f>();
371 Mat points = _points.getMat();
372 int i, n = points.checkVector(2);
373 int depth = points.depth();
379 CV_Error( CV_StsBadSize, "There should be at least 5 points to fit the ellipse" );
386 const Point* ptsi = points.ptr<Point>();
387 const Point2f* ptsf = points.ptr<Point2f>();
483 static Rect pointSetBoundingRect( const Mat& points )
485 int npoints = points.checkVector(2);
486 int depth = points.depth();
495 const Point* pts = points.ptr<Point>();
710 cv::Mat points = cv::cvarrToMat(array, false, false, 0, &abuf);
714 cv::minEnclosingCircle(points, center, radius);
756 CvPoint pt; /* pointer to points */
757 CvPoint pt_s, pt_e; /* first and last points */
758 CvSeqReader reader; /* points reader of contour */
936 cv::Mat points = cv::cvarrToMat(contour, false, false, 0, &abuf);
937 return cv::contourArea( points, oriented !=0 );
1040 cv::Mat points = cv::cvarrToMat(array, false, false, 0, &abuf);
1041 return cv::fitEllipse(points);