Table of Contents

Struct MCvTermCriteria

Namespace
Emgu.CV.Structure
Assembly
Emgu.CV.dll

Managed structure equivalent to CvTermCriteria

public struct MCvTermCriteria
Inherited Members

Constructors

MCvTermCriteria(double)

Create the termination Criteria using only the constrain of epsilon

public MCvTermCriteria(double eps)

Parameters

eps double

The epsilon value

MCvTermCriteria(int)

Create the termination criteria using the constrain of maximum iteration

public MCvTermCriteria(int maxIteration)

Parameters

maxIteration int

The maximum number of iteration allowed

MCvTermCriteria(int, double)

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

public MCvTermCriteria(int maxIteration, double eps)

Parameters

maxIteration int

The maximum number of iteration allowed

eps double

The epsilon value

Fields

Epsilon

The desired accuracy of change in parameters at which the iterative algorithm stops.

public double Epsilon

Field Value

double

MaxCount

Maximum iteration

public int MaxCount

Field Value

int

Type

The type of termination criteria

public TermCritType Type

Field Value

TermCritType