Home | History | Annotate | Download | only in include

Lines Matching refs:num_points

382 CV_INLINE void cvConvexHull( CvPoint* points, int num_points,
386 CvMat points1 = cvMat( 1, num_points, CV_32SC2, points );
387 CvMat hull1 = cvMat( 1, num_points, CV_32SC1, hull );
398 #define cvConvexHullApprox( points, num_points, bound_rect, bandwidth, \
400 cvConvexHull( points, num_points, bound_rect, orientation, hull, hullsize )