| 
 | OpenCV 2.4.3 (RC) | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectorg.opencv.core.TermCriteria
public class TermCriteria
Template class defining termination criteria for iterative algorithms.
| Field Summary | |
|---|---|
| static int | COUNTThe maximum number of iterations or elements to compute | 
| static int | EPSThe desired accuracy threshold or change in parameters at which the iterative algorithm is terminated. | 
|  double | epsilon | 
| static int | MAX_ITERThe maximum number of iterations or elements to compute | 
|  int | maxCount | 
|  int | type | 
| Constructor Summary | |
|---|---|
| TermCriteria()Termination criteria for iterative algorithms. | |
| TermCriteria(double[] vals) | |
| TermCriteria(int type,
             int maxCount,
             double epsilon)Termination criteria for iterative algorithms. | |
| Method Summary | |
|---|---|
|  TermCriteria | clone() | 
|  boolean | equals(java.lang.Object obj) | 
|  int | hashCode() | 
|  void | set(double[] vals) | 
|  java.lang.String | toString() | 
| Methods inherited from class java.lang.Object | 
|---|
| finalize, getClass, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
|---|
public static final int COUNT
public static final int EPS
public double epsilon
public static final int MAX_ITER
public int maxCount
public int type
| Constructor Detail | 
|---|
public TermCriteria()
public TermCriteria(double[] vals)
public TermCriteria(int type,
                    int maxCount,
                    double epsilon)
type - the type of termination criteria: COUNT, EPS or COUNT + EPS.maxCount - the maximum number of iterations/elements.epsilon - the desired accuracy.| Method Detail | 
|---|
public TermCriteria clone()
clone in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic void set(double[] vals)
public java.lang.String toString()
toString in class java.lang.Object| 
 | Official OpenCV 2.4 Documentation | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||