Searched refs:CV_DIST_L2 (Results 1 – 16 of 16) sorted by relevance
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
D | imageSegmentation.cpp | 84 distanceTransform(bw, dist, CV_DIST_L2, 3); in main()
|
/external/opencv/cv/include/ |
D | cvtypes.h | 207 #define CV_DIST_L2 2 /* the simple euclidean distance */ macro
|
D | cvcompat.h | 800 int dims, int dist_type CV_DEFAULT(CV_DIST_L2),
|
D | cv.h | 934 int distance_type CV_DEFAULT(CV_DIST_L2), in LOAD_CHDL()
|
/external/opencv3/modules/imgproc/src/ |
D | linefit.cpp | 332 case CV_DIST_L2: in fitLine2D() 470 case CV_DIST_L2: in fitLine3D()
|
D | distransform.cpp | 737 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()
|
D | emd.cpp | 238 case CV_DIST_L2: in cvCalcEMD2()
|
/external/opencv3/modules/imgproc/test/ |
D | test_imgwarp.cpp | 1400 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()
|
D | test_distancetransform.cpp | 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()
|
/external/opencv/cv/src/ |
D | cvlinefit.cpp | 358 case CV_DIST_L2: in icvFitLine2D() 507 case CV_DIST_L2: in icvFitLine3D()
|
D | cvdistransform.cpp | 741 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()
|
D | cvemd.cpp | 244 case CV_DIST_L2: in cvCalcEMD2()
|
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
D | types_c.h | 559 CV_DIST_L2 =2, /**< the simple euclidean distance */ enumerator
|
D | imgproc_c.h | 838 int distance_type CV_DEFAULT(CV_DIST_L2),
|
/external/opencv3/modules/imgproc/misc/java/test/ |
D | ImgprocTest.java | 639 Imgproc.distanceTransformWithLabels(gray128, dst, labels, Imgproc.CV_DIST_L2, 3); in testDistanceTransformWithLabels()
|
/external/opencv3/modules/java/src/ |
D | imgproc+Imgproc.java | 106 CV_DIST_L2 = 2, field in Imgproc
|