Home
last modified time | relevance | path

Searched refs:CV_DIST_L2 (Results 1 – 16 of 16) sorted by relevance

/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DimageSegmentation.cpp84 distanceTransform(bw, dist, CV_DIST_L2, 3); in main()
/external/opencv/cv/include/
Dcvtypes.h207 #define CV_DIST_L2 2 /* the simple euclidean distance */ macro
Dcvcompat.h800 int dims, int dist_type CV_DEFAULT(CV_DIST_L2),
Dcv.h934 int distance_type CV_DEFAULT(CV_DIST_L2), in LOAD_CHDL()
/external/opencv3/modules/imgproc/src/
Dlinefit.cpp332 case CV_DIST_L2: in fitLine2D()
470 case CV_DIST_L2: in fitLine3D()
Ddistransform.cpp737 else if( distType == CV_DIST_L2 && need_labels ) in distanceTransform()
774 CV_Assert( distType == CV_DIST_C || distType == CV_DIST_L1 || distType == CV_DIST_L2 ); in distanceTransform()
Demd.cpp238 case CV_DIST_L2: in cvCalcEMD2()
/external/opencv3/modules/imgproc/test/
Dtest_imgwarp.cpp1400 cv::fitLine(points_vector, line, CV_DIST_L2, 0 ,0 ,0); in TEST()
1420 cv::fitLine(points_vector, line, CV_DIST_L2, 0 ,0 ,0); in TEST()
1430 cv::fitLine(mat1, line1, CV_DIST_L2, 0 ,0 ,0); in TEST()
1440 cv::fitLine(mat2, line2, CV_DIST_L2, 0 ,0 ,0); in TEST()
1450 cv::fitLine(mat1, line1, CV_DIST_L2, 0 ,0 ,0); in TEST()
1460 cv::fitLine(mat2, line2, CV_DIST_L2, 0 ,0 ,0); in 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()
/external/opencv/cv/src/
Dcvlinefit.cpp358 case CV_DIST_L2: in icvFitLine2D()
507 case CV_DIST_L2: in icvFitLine3D()
Dcvdistransform.cpp741 else if( distType == CV_DIST_L2 && labels ) in cvDistTransform()
764 if( distType == CV_DIST_C || distType == CV_DIST_L1 || distType == CV_DIST_L2 ) in cvDistTransform()
Dcvemd.cpp244 case CV_DIST_L2: in cvCalcEMD2()
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dtypes_c.h559 CV_DIST_L2 =2, /**< the simple euclidean distance */ enumerator
Dimgproc_c.h838 int distance_type CV_DEFAULT(CV_DIST_L2),
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java639 Imgproc.distanceTransformWithLabels(gray128, dst, labels, Imgproc.CV_DIST_L2, 3); in testDistanceTransformWithLabels()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java106 CV_DIST_L2 = 2, field in Imgproc