Searched defs:CvTermCriteria (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cxcore/include/
H A Dcxtypes.h879 /*********************************** CvTermCriteria *************************************/
885 typedef struct CvTermCriteria struct
893 CvTermCriteria; typedef in typeref:struct:CvTermCriteria
895 CV_INLINE CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon )
897 CvTermCriteria t;
/external/opencv3/modules/core/include/opencv2/core/
H A Dtypes_c.h827 /*********************************** CvTermCriteria *************************************/
835 typedef struct CvTermCriteria struct
844 CvTermCriteria(int _type = 0, int _iter = 0, double _eps = 0) : type(_type), max_iter(_iter), epsilon(_eps) {} function in struct:CvTermCriteria
845 CvTermCriteria(const cv::TermCriteria& t) : type(t.type), max_iter(t.maxCount), epsilon(t.epsilon) {} function in struct:CvTermCriteria
850 CvTermCriteria; typedef in typeref:struct:CvTermCriteria
852 CV_INLINE CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon )
854 CvTermCriteria t;

Completed in 991 milliseconds