Home | History | Annotate | Download | only in src

Lines Matching refs:criteria

113                             float focalLength, CvTermCriteria criteria,
119 float diff = (float)criteria.epsilon;
139 if( (criteria.type == 0) || (criteria.type > (CV_TERMCRIT_ITER | CV_TERMCRIT_EPS)))
141 if( (criteria.type & CV_TERMCRIT_EPS) && criteria.epsilon < 0 )
143 if( (criteria.type & CV_TERMCRIT_ITER) && criteria.max_iter <= 0 )
233 converged = ((criteria.type & CV_TERMCRIT_EPS) && (diff < criteria.epsilon));
234 converged |= ((criteria.type & CV_TERMCRIT_ITER) && (count == criteria.max_iter));
353 double focalLength, CvTermCriteria criteria,
360 IPPI_CALL( icvPOSIT( pObject, imagePoints,(float) focalLength, criteria,