Approximates one curve and returns the approximation result, the result use the same storage as the current sequence

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

Syntax

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

Parameters

accuracy
Double
The desired approximation accuracy

Return Value

The approximated contour

See Also