Searched refs:CV_DIST_C (Results 1 – 9 of 9) sorted by relevance
100 dist_type = dist_type == 0 ? CV_DIST_C : dist_type == 1 ? CV_DIST_L1 : CV_DIST_L2; in get_test_array_types_and_sizes()113 return dist_type == CV_DIST_C || dist_type == CV_DIST_L1 ? 0 : 0.01*MAX(sz.width, sz.height); in get_success_error_level()169 else if( dist_type == CV_DIST_C ) in cvTsDistTransform()
1530 dist_type += dist_type == CV_DIST_C; in prepare_test_case()
208 #define CV_DIST_C 3 /* distance = max(|x1-x2|,|y1-y2|) */ macro
739 if( distType == CV_DIST_C || distType == CV_DIST_L1 ) in cvDistTransform()764 if( distType == CV_DIST_C || distType == CV_DIST_L1 || distType == CV_DIST_L2 ) in cvDistTransform()766 icvGetDistanceTransformMask( (distType == CV_DIST_C ? 0 : in cvDistTransform()
247 case CV_DIST_C: in cvCalcEMD2()
735 if( distType == CV_DIST_C || distType == CV_DIST_L1 ) in distanceTransform()774 CV_Assert( distType == CV_DIST_C || distType == CV_DIST_L1 || distType == CV_DIST_L2 ); in distanceTransform()776 getDistanceTransformMask( (distType == CV_DIST_C ? 0 : in distanceTransform()
241 case CV_DIST_C: in cvCalcEMD2()
560 CV_DIST_C =3, /**< distance = max(|x1-x2|,|y1-y2|) */ enumerator
107 CV_DIST_C = 3, field in Imgproc