Click or drag to resize

Cv2MinEnclosingCircle Method (IEnumerablePoint2f, Point2f, Single)

Finds the minimum area circle enclosing a 2D point set.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void MinEnclosingCircle(
	IEnumerable<Point2f> points,
	out Point2f center,
	out float radius
)

Parameters

points
Type: System.Collections.GenericIEnumerablePoint2f
The input 2D point set, represented by CV_32SC2 or CV_32FC2 matrix.
center
Type: OpenCvSharpPoint2f
The output center of the circle
radius
Type: SystemSingle
The output radius of the circle
See Also