HomeSort by relevance Sort by last modified time
    Searched defs:TermCriteria (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/core/misc/java/src/java/
core+TermCriteria.java 3 //javadoc:TermCriteria
4 public class TermCriteria {
33 public TermCriteria(int type, int maxCount, double epsilon) {
42 public TermCriteria() {
46 public TermCriteria(double[] vals) {
62 public TermCriteria clone() {
63 return new TermCriteria(type, maxCount, epsilon);
83 if (!(obj instanceof TermCriteria)) return false;
84 TermCriteria it = (TermCriteria) obj
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types.hpp 764 ///////////////////////////// TermCriteria //////////////////////////////
771 class CV_EXPORTS TermCriteria
785 TermCriteria();
787 @param type The type of termination criteria, one of TermCriteria::Type
791 TermCriteria(int type, int maxCount, double epsilon);
    [all...]
base.hpp 601 class CV_EXPORTS TermCriteria;
types_c.h 833 /** @sa TermCriteria
845 CvTermCriteria(const cv::TermCriteria& t) : type(t.type), max_iter(t.maxCount), epsilon(t.epsilon) {}
846 operator cv::TermCriteria() const { return cv::TermCriteria(type, max_iter, epsilon); }
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 7545 milliseconds