Approximates one curves and returns the approximation result

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,
	MemStorage storage
)
Public Function ApproxPoly ( _
	accuracy As Double, _
	storage As MemStorage _
) As Seq(Of T)
public:
Seq<T>^ ApproxPoly(
	double accuracy, 
	MemStorage^ storage
)

Parameters

accuracy
Double
The desired approximation accuracy
storage
MemStorage
The storage used by the resulting sequence. If null, the storage of this sequence is used.

Return Value

The approximated contour

See Also