Approximates one or more curves and returns the approximation result[s]. In case of multiple curves approximation the resultant tree will have the same structure as the input one (1:1 correspondence)

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Contour<T> ApproxPoly(
	double accuracy
)
Public Function ApproxPoly ( _
	accuracy As Double _
) As Contour(Of T)
public:
Contour<T>^ ApproxPoly(
	double accuracy
)

Parameters

accuracy
Double
The desired approximation accuracy

Return Value

The approximated contour

See Also