Home | History | Annotate | Download | only in include

Lines Matching full:points

382 CV_INLINE void cvConvexHull( CvPoint* points, int num_points,
386 CvMat points1 = cvMat( 1, num_points, CV_32SC2, points );
398 #define cvConvexHullApprox( points, num_points, bound_rect, bandwidth, \
400 cvConvexHull( points, num_points, bound_rect, orientation, hull, hullsize )
407 CV_INLINE void cvMinAreaRect( CvPoint* points, int n,
414 CvMat mat = cvMat( 1, n, CV_32SC2, points );
432 CV_INLINE void cvFitLine3D( CvPoint3D32f* points, int count, int dist,
435 CvMat mat = cvMat( 1, count, CV_32FC3, points );
441 /* Fits a line into set of 2d points in a robust way (M-estimator technique) */
442 CV_INLINE void cvFitLine2D( CvPoint2D32f* points, int count, int dist,
445 CvMat mat = cvMat( 1, count, CV_32FC2, points );
452 CV_INLINE void cvFitEllipse( const CvPoint2D32f* points, int count, CvBox2D* box )
454 CvMat mat = cvMat( 1, count, CV_32FC2, (void*)points );
458 /* Projects 2d points to one of standard coordinate planes
701 /* Does reprojection of 3d object points to the view plane */