mirror of
https://github.com/opencv/opencv.git
synced 2024-12-01 14:59:54 +08:00
Added the signature cvMinEnclosingTriangle (C version) to the imgproc_c.h header
This commit is contained in:
parent
0117d77cd1
commit
7ac768651f
@ -377,6 +377,10 @@ CVAPI(double) cvContourArea( const CvArr* contour,
|
|||||||
CVAPI(CvBox2D) cvMinAreaRect2( const CvArr* points,
|
CVAPI(CvBox2D) cvMinAreaRect2( const CvArr* points,
|
||||||
CvMemStorage* storage CV_DEFAULT(NULL));
|
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 */
|
/* Finds minimum enclosing circle for a set of points */
|
||||||
CVAPI(int) cvMinEnclosingCircle( const CvArr* points,
|
CVAPI(int) cvMinEnclosingCircle( const CvArr* points,
|
||||||
CvPoint2D32f* center, float* radius );
|
CvPoint2D32f* center, float* radius );
|
||||||
|
Loading…
Reference in New Issue
Block a user