Home
last modified time | relevance | path

Searched refs:nfeatures (Results 1 – 12 of 12) sorted by relevance

/external/opencv3/modules/cudalegacy/src/cuda/
Dgmg.cu76 …or, const PtrStepi& colors, const PtrStepf& weights, const int x, const int y, const int nfeatures) in findFeature() argument
78 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) in findFeature()
88 …__device__ void normalizeHistogram(PtrStepf weights, const int x, const int y, const int nfeatures) in normalizeHistogram() argument
91 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) in normalizeHistogram()
96 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) in normalizeHistogram()
101 …r, const float weight, PtrStepi colors, PtrStepf weights, const int x, const int y, int& nfeatures) in insertFeature() argument
103 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) in insertFeature()
115 if (nfeatures == c_maxFeatures) in insertFeature()
121 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) in insertFeature()
137 colors(nfeatures * c_height + y, x) = color; in insertFeature()
[all …]
/external/opencv3/modules/features2d/src/
Dgftt.cpp53 : nfeatures(_nfeatures), qualityLevel(_qualityLevel), minDistance(_minDistance), in GFTTDetector_Impl()
58 void setMaxFeatures(int maxFeatures) { nfeatures = maxFeatures; } in setMaxFeatures()
59 int getMaxFeatures() const { return nfeatures; } in getMaxFeatures()
88 goodFeaturesToTrack( ugrayImage, corners, nfeatures, qualityLevel, minDistance, _mask, in detect()
97 goodFeaturesToTrack( grayImage, corners, nfeatures, qualityLevel, minDistance, _mask, in detect()
109 int nfeatures; member in cv::GFTTDetector_Impl
Dorb.cpp658 nfeatures(_nfeatures), scaleFactor(_scaleFactor), nlevels(_nlevels), in ORB_Impl()
663 void setMaxFeatures(int maxFeatures) { nfeatures = maxFeatures; } in setMaxFeatures()
664 int getMaxFeatures() const { return nfeatures; } in getMaxFeatures()
703 int nfeatures; member in cv::ORB_Impl
775 int nfeatures, double scaleFactor, in computeKeyPoints() argument
784 …float ndesiredFeaturesPerScale = nfeatures*(1 - factor)/(1 - (float)std::pow((double)factor, (doub… in computeKeyPoints()
793 nfeaturesPerLevel[nlevels-1] = std::max(nfeatures - sumFeatures, 0); in computeKeyPoints()
1085nfeatures, scaleFactor, edgeThreshold, patchSize, scoreType, useOCL, fastThreshold); in detectAndCompute()
1177 Ptr<ORB> ORB::create(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, in create() argument
1180 return makePtr<ORB_Impl>(nfeatures, scaleFactor, nlevels, edgeThreshold, in create()
/external/opencv3/modules/objdetect/src/
Dcascadedetect_convert.cpp201 int maxWeakCount = 0, nfeatures = (int)features.size(); in convert() local
244 for( i = 0; i < nfeatures; i++ ) in convert()
Dcascadedetect.cpp713 size_t fi, nfeatures = features->size(); in computeOptFeatures() local
715 optfeatures->resize(nfeatures); in computeOptFeatures()
717 for( fi = 0; fi < nfeatures; fi++ ) in computeOptFeatures()
719 optfeatures_lbuf->resize(nfeatures); in computeOptFeatures()
721 for( fi = 0; fi < nfeatures; fi++ ) in computeOptFeatures()
868 size_t fi, nfeatures = features->size(); in computeOptFeatures() local
870 optfeatures->resize(nfeatures); in computeOptFeatures()
872 for( fi = 0; fi < nfeatures; fi++ ) in computeOptFeatures()
/external/opencv3/modules/cudalegacy/src/
Dgmg.cpp61 …ate_gpu(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures,
172 …func_t)(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures, in apply()
/external/opencv3/modules/cudafeatures2d/src/
Dorb.cpp341 ORB_Impl(int nfeatures,
854 Ptr<cv::cuda::ORB> cv::cuda::ORB::create(int nfeatures, in create() argument
865 …return makePtr<ORB_Impl>(nfeatures, scaleFactor, nlevels, edgeThreshold, firstLevel, WTA_K, scoreT… in create()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp125 …OrbFeaturesFinder(Size _grid_size = Size(3,1), int nfeatures=1500, float scaleFactor=1.3f, int nle…
/external/opencv3/modules/cudafeatures2d/include/opencv2/
Dcudafeatures2d.hpp469 static Ptr<ORB> create(int nfeatures=500,
/external/opencv3/samples/python2/
Dplane_tracker.py64 self.detector = cv2.ORB_create( nfeatures = 1000 )
/external/opencv3/modules/ml/include/opencv2/
Dml.hpp1488 CV_EXPORTS void createConcentricSpheresTestSet( int nsamples, int nfeatures, int nclasses,
/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…