Home
last modified time | relevance | path

Searched refs:CV_DIST_C (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/imgproc/test/
Dtest_distancetransform.cpp100 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()
Dtest_convhull.cpp1530 dist_type += dist_type == CV_DIST_C; in prepare_test_case()
/external/opencv/cv/include/
Dcvtypes.h208 #define CV_DIST_C 3 /* distance = max(|x1-x2|,|y1-y2|) */ macro
/external/opencv/cv/src/
Dcvdistransform.cpp739 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()
Dcvemd.cpp247 case CV_DIST_C: in cvCalcEMD2()
/external/opencv3/modules/imgproc/src/
Ddistransform.cpp735 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()
Demd.cpp241 case CV_DIST_C: in cvCalcEMD2()
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dtypes_c.h560 CV_DIST_C =3, /**< distance = max(|x1-x2|,|y1-y2|) */ enumerator
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java107 CV_DIST_C = 3, field in Imgproc