Property | Type | Description | |
---|---|---|---|
epsilon | double | ||
max_iter | int | ||
type | CvEnum.TERMCRIT |
Method | Description | |
---|---|---|
MCvTermCriteria ( double eps ) : System |
Create the termination Criteria using only the constrain of epsilon
|
|
MCvTermCriteria ( int maxIteration ) : System |
Create the termination criteria using the constrain of maximum iteration
|
|
MCvTermCriteria ( int maxIteration, double eps ) : System |
Create the termination criteria using the constrain of maximum iteration as well as epsilon
|
public MCvTermCriteria ( double eps ) : System | ||
eps | double | The epsilon value |
return | System |
public MCvTermCriteria ( int maxIteration ) : System | ||
maxIteration | int | The maximum number of iteration allowed |
return | System |
public MCvTermCriteria ( int maxIteration, double eps ) : System | ||
maxIteration | int | The maximum number of iteration allowed |
eps | double | The epsilon value |
return | System |