Create the termination criteria using the constrain of maximum iteration as well as epsilon

Namespace:  Emgu.CV.Structure
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public MCvTermCriteria(
	int maxIteration,
	double eps
)
Visual Basic (Declaration)
Public Sub New ( _
	maxIteration As Integer, _
	eps As Double _
)
Visual C++
public:
MCvTermCriteria(
	int maxIteration, 
	double eps
)

Parameters

maxIteration
Type: System..::.Int32
The maximum number of iteration allowed
eps
Type: System..::.Double
The epsilon value

See Also