[This is preliminary documentation and is subject to change.]

Fit an ellipse to the points collection

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Ellipse EllipseLeastSquareFitting(
	PointF[] points
)
Public Shared Function EllipseLeastSquareFitting ( _
	points As PointF() _
) As Ellipse
public:
static Ellipse EllipseLeastSquareFitting(
	array<PointF>^ points
)

Parameters

points
array< PointF >[]()[]
The points to be fitted

Return Value

An ellipse

See Also