HomeSort by relevance Sort by last modified time
    Searched full:disttype (Results 1 - 19 of 19) sorted by null

  /external/opencv3/modules/features2d/test/ocl/
test_brute_force_matcher.cpp 61 int distType;
72 distType = GET_PARAM(0);
120 BFMatcher matcher(distType);
146 BFMatcher matcher(distType);
182 BFMatcher matcher(distType);
  /external/opencv3/modules/flann/src/
miniflann.cpp 342 distType = FLANN_DIST_L2;
350 distType = FLANN_DIST_L2;
367 distType = _distType;
371 distType = FLANN_DIST_HAMMING;
374 switch( distType )
427 switch( distType )
555 int dtype = distType == FLANN_DIST_HAMMING ? CV_32S : CV_32F;
559 switch( distType )
597 int dtype = distType == FLANN_DIST_HAMMING ? CV_32S : CV_32F;
604 switch( distType )
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
miniflann.hpp 132 CV_WRAP Index(InputArray features, const IndexParams& params, cvflann::flann_distance_t distType=cvflann::FLANN_DIST_L2);
135 CV_WRAP virtual void build(InputArray features, const IndexParams& params, cvflann::flann_distance_t distType=cvflann::FLANN_DIST_L2);
150 cvflann::flann_distance_t distType;
  /external/opencv3/samples/cpp/
distrans.cpp 36 int distType = voronoiType >= 0 ? DIST_L2 : distType0;
41 distanceTransform( edge, dist, distType, maskSize );
43 distanceTransform( edge, dist, labels, distType, maskSize, voronoiType );
  /external/opencv/cv/src/
cvdistransform.cpp 703 int distType, int maskSize,
728 (CV_MAT_TYPE(dst->type) != CV_8UC1 || distType != CV_DIST_L1 || labels)) )
739 if( distType == CV_DIST_C || distType == CV_DIST_L1 )
741 else if( distType == CV_DIST_L2 && labels )
764 if( distType == CV_DIST_C || distType == CV_DIST_L1 || distType == CV_DIST_L2 )
766 icvGetDistanceTransformMask( (distType == CV_DIST_C ? 0 :
767 distType == CV_DIST_L1 ? 1 : 2) + maskSize*10, _mask )
    [all...]
  /external/opencv3/modules/imgproc/src/
distransform.cpp 711 int distType, int maskSize, int labelType )
735 if( distType == CV_DIST_C || distType == CV_DIST_L1 )
737 else if( distType == CV_DIST_L2 && need_labels )
774 CV_Assert( distType == CV_DIST_C || distType == CV_DIST_L1 || distType == CV_DIST_L2 );
776 getDistanceTransformMask( (distType == CV_DIST_C ? 0 :
777 distType == CV_DIST_L1 ? 1 : 2) + maskSize*10, _mask );
860 int distType, int maskSize
    [all...]
linefit.cpp 594 void cv::fitLine( InputArray _points, OutputArray _line, int distType,
613 fitLine2D( points.ptr<Point2f>(), npoints2, distType,
616 fitLine3D( points.ptr<Point3f>(), npoints3, distType,
emd.cpp     [all...]
  /external/opencv3/modules/shape/src/
haus_dis.cpp 101 static float _apply(const Mat &set1, const Mat &set2, int distType, double propRank)
112 disMat.at<float>(r,c) = (float)norm(Mat(diff), distType);
  /external/opencv3/modules/core/src/
rand.cpp 481 void RNG::fill( InputOutputArray _mat, int disttype,
498 (_param2.rows == cn && _param2.cols == cn && disttype == NORMAL)));
510 if( disttype == UNIFORM )
619 else if( disttype == CV_RAND_NORMAL )
669 if( disttype == UNIFORM )
718 if( disttype == CV_RAND_UNI )
820 cvRandArr( CvRNG* _rng, CvArr* arr, int disttype, CvScalar param1, CvScalar param2 )
825 rng.fill(mat, disttype == CV_RAND_NORMAL ?
  /external/opencv/cv/include/
cvcompat.h 176 int disttype; /* distribution type */ member in struct:CvRandState
215 int disttype CV_DEFAULT(CV_RAND_UNI))
223 if( disttype != CV_RAND_UNI && disttype != CV_RAND_NORMAL )
230 state->disttype = disttype;
243 cvRandArr( &state->state, arr, state->disttype, state->param[0], state->param[1] );
    [all...]
  /external/opencv/cxcore/src/
cxrand.cpp 442 cvRandArr( CvRNG* rng, CvArr* arr, int disttype, CvScalar param1, CvScalar param2 )
509 if( disttype == CV_RAND_UNI )
554 else if( disttype == CV_RAND_NORMAL )
  /external/opencv3/modules/features2d/src/
matchers.cpp 64 UMat &trainIdx, UMat &distance, int distType)
95 ocl::typeToStr(depth), ocl::typeToStr(CV_MAKETYPE(depth, kercn)), kercn, depth == CV_32F ? "-D T_FLOAT" : "", distType, block_size, max_desc_len);
162 UMat &distance, int distType)
195 ocl::typeToStr(depth), ocl::typeToStr(CV_MAKETYPE(depth, kercn)), kercn, depth == CV_32F ? "-D T_FLOAT" : "", distType, block_size, max_desc_len);
274 UMat &trainIdx, UMat &distance, UMat &nMatches, float maxDistance, int distType)
304 ocl::typeToStr(depth), ocl::typeToStr(CV_MAKETYPE(depth, kercn)), kercn, depth == CV_32F ? "-D T_FLOAT" : "", distType, block_size);
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 331 enum DistType { Local, Exit, Backedge };
332 DistType Type;
336 Weight(DistType Type, BlockNode TargetNode, uint64_t Amount)
377 void add(const BlockNode &Node, uint64_t Amount, Weight::DistType Type);
    [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java     [all...]
imgproc.cpp     [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 102 Weight::DistType Type) {
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /external/opencv3/modules/core/include/opencv2/
core.hpp     [all...]

Completed in 760 milliseconds