/external/opencv3/modules/features2d/test/ocl/ |
D | test_brute_force_matcher.cpp | 61 int distType; in PARAM_TEST_CASE() local 72 distType = GET_PARAM(0); in PARAM_TEST_CASE() 120 BFMatcher matcher(distType); in OCL_TEST_P() 146 BFMatcher matcher(distType); in OCL_TEST_P() 182 BFMatcher matcher(distType); in OCL_TEST_P()
|
/external/opencv3/modules/flann/src/ |
D | miniflann.cpp | 342 distType = FLANN_DIST_L2; in Index() 350 distType = FLANN_DIST_L2; in Index() 367 distType = _distType; in build() 371 distType = FLANN_DIST_HAMMING; in build() 374 switch( distType ) in build() 427 switch( distType ) in release() 555 int dtype = distType == FLANN_DIST_HAMMING ? CV_32S : CV_32F; in knnSearch() 559 switch( distType ) in knnSearch() 597 int dtype = distType == FLANN_DIST_HAMMING ? CV_32S : CV_32F; in radiusSearch() 604 switch( distType ) in radiusSearch() [all …]
|
/external/opencv3/modules/flann/include/opencv2/flann/ |
D | miniflann.hpp | 132 …putArray features, const IndexParams& params, cvflann::flann_distance_t distType=cvflann::FLANN_DI… 135 …putArray features, const IndexParams& params, cvflann::flann_distance_t distType=cvflann::FLANN_DI… 150 cvflann::flann_distance_t distType; member in cv::flann::Index
|
/external/opencv/cv/src/ |
D | cvdistransform.cpp | 703 int distType, int maskSize, in cvDistTransform() argument 728 (CV_MAT_TYPE(dst->type) != CV_8UC1 || distType != CV_DIST_L1 || labels)) ) in cvDistTransform() 739 if( distType == CV_DIST_C || distType == CV_DIST_L1 ) in cvDistTransform() 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() 766 icvGetDistanceTransformMask( (distType == CV_DIST_C ? 0 : in cvDistTransform() 767 distType == CV_DIST_L1 ? 1 : 2) + maskSize*10, _mask ); in cvDistTransform() 769 else if( distType == CV_DIST_USER ) in cvDistTransform()
|
/external/opencv3/samples/cpp/ |
D | distrans.cpp | 36 int distType = voronoiType >= 0 ? DIST_L2 : distType0; in onTrackbar() local 41 distanceTransform( edge, dist, distType, maskSize ); in onTrackbar() 43 distanceTransform( edge, dist, labels, distType, maskSize, voronoiType ); in onTrackbar()
|
/external/opencv3/modules/imgproc/src/ |
D | distransform.cpp | 711 int distType, int maskSize, int labelType ) in distanceTransform() argument 735 if( distType == CV_DIST_C || distType == CV_DIST_L1 ) in distanceTransform() 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() 776 getDistanceTransformMask( (distType == CV_DIST_C ? 0 : in distanceTransform() 777 distType == CV_DIST_L1 ? 1 : 2) + maskSize*10, _mask ); in distanceTransform() 860 int distType, int maskSize, in cvDistTransform() argument 869 distType, maskSize, labelType); in cvDistTransform()
|
D | linefit.cpp | 594 void cv::fitLine( InputArray _points, OutputArray _line, int distType, in fitLine() argument 613 fitLine2D( points.ptr<Point2f>(), npoints2, distType, in fitLine() 616 fitLine3D( points.ptr<Point3f>(), npoints3, distType, in fitLine()
|
D | emd.cpp | 1142 int distType, InputArray _cost, in EMD() argument 1159 return cvCalcEMD2( &_csignature1, &_csignature2, distType, 0, cost.empty() ? 0 : &_ccost, in EMD()
|
/external/opencv3/modules/shape/src/ |
D | haus_dis.cpp | 101 static float _apply(const Mat &set1, const Mat &set2, int distType, double propRank) in _apply() argument 112 disMat.at<float>(r,c) = (float)norm(Mat(diff), distType); in _apply()
|
/external/opencv3/modules/features2d/src/ |
D | matchers.cpp | 64 UMat &trainIdx, UMat &distance, int distType) in ocl_matchSingle() argument 95 …CV_MAKETYPE(depth, kercn)), kercn, depth == CV_32F ? "-D T_FLOAT" : "", distType, block_size, max_… in ocl_matchSingle() 162 UMat &distance, int distType) in ocl_knnMatchSingle() argument 195 …CV_MAKETYPE(depth, kercn)), kercn, depth == CV_32F ? "-D T_FLOAT" : "", distType, block_size, max_… in ocl_knnMatchSingle() 274 UMat &trainIdx, UMat &distance, UMat &nMatches, float maxDistance, int distType) in ocl_radiusMatchSingle() argument 304 …oStr(CV_MAKETYPE(depth, kercn)), kercn, depth == CV_32F ? "-D T_FLOAT" : "", distType, block_size); in ocl_radiusMatchSingle()
|
/external/opencv3/modules/imgproc/include/opencv2/ |
D | imgproc.hpp | 2948 int distType, InputArray cost=noArray(), 3674 CV_EXPORTS_W void fitLine( InputArray points, OutputArray line, int distType,
|
/external/opencv3/modules/core/include/opencv2/ |
D | core.hpp | 2736 …void fill( InputOutputArray mat, int distType, InputArray a, InputArray b, bool saturateRange = fa…
|
/external/opencv3/modules/java/src/ |
D | imgproc+Imgproc.java | 2421 …public static void fitLine(Mat points, Mat line, int distType, double param, double reps, double a… in fitLine() argument 2424 fitLine_0(points.nativeObj, line.nativeObj, distType, param, reps, aeps); in fitLine() 3216 …private static native void fitLine_0(long points_nativeObj, long line_nativeObj, int distType, dou… in fitLine_0() argument
|
D | imgproc.cpp | 5041 …(JNIEnv* env, jclass , jlong points_nativeObj, jlong line_nativeObj, jint distType, jdouble param,… in Java_org_opencv_imgproc_Imgproc_fitLine_10() argument 5048 cv::fitLine( points, line, (int)distType, (double)param, (double)reps, (double)aeps ); in Java_org_opencv_imgproc_Imgproc_fitLine_10()
|