diff --git a/modules/imgproc/include/opencv2/imgproc/imgproc_c.h b/modules/imgproc/include/opencv2/imgproc/imgproc_c.h index 4e2dc7142a..f691e3eeb9 100644 --- a/modules/imgproc/include/opencv2/imgproc/imgproc_c.h +++ b/modules/imgproc/include/opencv2/imgproc/imgproc_c.h @@ -377,6 +377,10 @@ CVAPI(double) cvContourArea( const CvArr* contour, CVAPI(CvBox2D) cvMinAreaRect2( const CvArr* points, CvMemStorage* storage CV_DEFAULT(NULL)); +/* Finds minimum enclosing triangle for a set of points */ +CVAPI(int) cvMinEnclosingTriangle( const CvArr* points, + CvArr* triangle, double* area ); + /* Finds minimum enclosing circle for a set of points */ CVAPI(int) cvMinEnclosingCircle( const CvArr* points, CvPoint2D32f* center, float* radius );