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.1.0.649 (2.1.0.649)

Syntax

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

Parameters

maxIteration
Int32
The maximum number of iteration allowed
eps
Double
The epsilon value

See Also