Home
last modified time | relevance | path

Searched refs:nlevels (Results 1 – 18 of 18) sorted by relevance

/external/opencv3/samples/gpu/
Dhog.cpp39 int nlevels; member in Args
80 int nlevels; member in App
157 nlevels = 13; in Args()
185 else if (string(argv[i]) == "--nlevels") args.nlevels = atoi(argv[++i]); in read()
223 nlevels = args.nlevels; in App()
238 cout << "Levels number: " << nlevels << endl; in App()
319 gpu_hog->setNumLevels(nlevels); in run()
328 cpu_hog.nlevels = nlevels; in run()
402 nlevels++; in handleKey()
403 cout << "Levels number: " << nlevels << endl; in handleKey()
[all …]
/external/opencv3/samples/tapi/
Dhog.cpp52 int nlevels; member in App
131 nlevels = 13; in App()
138 cout << "Levels number: " << nlevels << endl; in App()
210 hog.nlevels = nlevels; in run()
292 nlevels++; in handleKey()
293 cout << "Levels number: " << nlevels << endl; in handleKey()
297 nlevels = max(nlevels - 1, 1); in handleKey()
298 cout << "Levels number: " << nlevels << endl; in handleKey()
/external/jemalloc/src/
Dbitmap.c33 binfo->nlevels = i; in bitmap_info_init()
41 return (binfo->levels[binfo->nlevels].group_offset); in bitmap_info_ngroups()
62 for (i = 1; i < binfo->nlevels; i++) { in bitmap_init()
/external/jemalloc/include/jemalloc/internal/
Dbitmap.h100 unsigned nlevels; member
138 size_t rgoff = binfo->levels[binfo->nlevels].group_offset - 1; in bitmap_full()
185 for (i = 1; i < binfo->nlevels; i++) { in bitmap_set()
211 i = binfo->nlevels - 1; in bitmap_sfu()
254 for (i = 1; i < binfo->nlevels; i++) { in bitmap_unset()
/external/opencv3/modules/features2d/src/
Dorb.cpp658 nfeatures(_nfeatures), scaleFactor(_scaleFactor), nlevels(_nlevels), in ORB_Impl()
669 void setNLevels(int nlevels_) { nlevels = nlevels_; } in setNLevels()
670 int getNLevels() const { return nlevels; } in getNLevels()
705 int nlevels; member in cv::ORB_Impl
779 int i, nkeypoints, level, nlevels = (int)layerInfo.size(); in computeKeyPoints() local
780 std::vector<int> nfeaturesPerLevel(nlevels); in computeKeyPoints()
784 …edFeaturesPerScale = nfeatures*(1 - factor)/(1 - (float)std::pow((double)factor, (double)nlevels)); in computeKeyPoints()
787 for( level = 0; level < nlevels-1; level++ ) in computeKeyPoints()
793 nfeaturesPerLevel[nlevels-1] = std::max(nfeatures - sumFeatures, 0); in computeKeyPoints()
818 std::vector<int> counters(nlevels); in computeKeyPoints()
[all …]
/external/opencv3/modules/cudafeatures2d/src/
Dorb.cpp343 int nlevels,
367 virtual void setNLevels(int nlevels) { nLevels_ = nlevels; } in setNLevels() argument
856 int nlevels, in create() argument
865 …return makePtr<ORB_Impl>(nfeatures, scaleFactor, nlevels, edgeThreshold, firstLevel, WTA_K, scoreT… in create()
/external/opencv3/modules/objdetect/include/opencv2/
Dobjdetect.hpp348 free_coef(-1.f), nlevels(HOGDescriptor::DEFAULT_NLEVELS), signedGradient(false) in HOGDescriptor()
359 …gammaCorrection(_gammaCorrection), free_coef(-1.f), nlevels(_nlevels), signedGradient(_signedGradi… in HOGDescriptor()
434 CV_PROP int nlevels; member
/external/opencv3/modules/cudalegacy/src/
Dgmg.cpp88 void setQuantizationLevels(int nlevels) { quantizationLevels_ = nlevels; } in setQuantizationLevels() argument
/external/opencv3/modules/cudaobjdetect/include/opencv2/
Dcudaobjdetect.hpp114 virtual void setNumLevels(int nlevels) = 0;
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp125 …uresFinder(Size _grid_size = Size(3,1), int nfeatures=1500, float scaleFactor=1.3f, int nlevels=5);
/external/opencv3/modules/cudalegacy/include/opencv2/
Dcudalegacy.hpp104 virtual void setQuantizationLevels(int nlevels) = 0;
/external/opencv3/modules/cudafeatures2d/include/opencv2/
Dcudafeatures2d.hpp471 int nlevels=8,
/external/libvpx/libvpx/vpx_dsp/
Dfastssim.c40 int nlevels; member
69 _ctx->nlevels = _nlevels; in fs_ctx_init()
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp289 …CV_WRAP static Ptr<ORB> create(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeT…
298 CV_WRAP virtual void setNLevels(int nlevels) = 0;
/external/opencv3/modules/cudaobjdetect/src/
Dhog.cpp116 virtual void setNumLevels(int nlevels) { nlevels_ = nlevels; } in setNumLevels() argument
/external/opencv3/modules/stitching/src/
Dmatchers.cpp386 …bFeaturesFinder::OrbFeaturesFinder(Size _grid_size, int n_features, float scaleFactor, int nlevels) in OrbFeaturesFinder() argument
389 …orb = ORB::create(n_features * (99 + grid_size.area())/100/grid_size.area(), scaleFactor, nlevels); in OrbFeaturesFinder()
/external/opencv3/modules/objdetect/src/
Dhog.cpp157 obj["nlevels"] >> nlevels; in read()
188 << "nlevels" << nlevels in write()
221 c.nlevels = nlevels; in copyTo()
1844 for( levels = 0; levels < nlevels; levels++ ) in detectMultiScale()
/external/opencv3/modules/java/src/
Dobjdetect.cpp1340 int _retval_ = me->nlevels;//( ); in Java_org_opencv_objdetect_HOGDescriptor_get_1nlevels_10()