/external/opencv3/modules/cudalegacy/src/cuda/ |
gmg.cu | 76 __device__ float findFeature(const int color, const PtrStepi& colors, const PtrStepf& weights, const int x, const int y, const int nfeatures) 78 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) 88 __device__ void normalizeHistogram(PtrStepf weights, const int x, const int y, const int nfeatures) 91 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) 96 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) 101 __device__ bool insertFeature(const int color, const float weight, PtrStepi colors, PtrStepf weights, const int x, const int y, int& nfeatures) 103 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) 115 if (nfeatures == c_maxFeatures) 121 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height) 137 colors(nfeatures * c_height + y, x) = color [all...] |
/external/opencv3/modules/features2d/src/ |
gftt.cpp | 53 : nfeatures(_nfeatures), qualityLevel(_qualityLevel), minDistance(_minDistance), 58 void setMaxFeatures(int maxFeatures) { nfeatures = maxFeatures; } 59 int getMaxFeatures() const { return nfeatures; } 88 goodFeaturesToTrack( ugrayImage, corners, nfeatures, qualityLevel, minDistance, _mask, 97 goodFeaturesToTrack( grayImage, corners, nfeatures, qualityLevel, minDistance, _mask, 109 int nfeatures; member in class:cv::GFTTDetector_Impl
|
orb.cpp | 658 nfeatures(_nfeatures), scaleFactor(_scaleFactor), nlevels(_nlevels), 663 void setMaxFeatures(int maxFeatures) { nfeatures = maxFeatures; } 664 int getMaxFeatures() const { return nfeatures; } 703 int nfeatures; [all...] |
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
matchers.hpp | 125 OrbFeaturesFinder(Size _grid_size = Size(3,1), int nfeatures=1500, float scaleFactor=1.3f, int nlevels=5);
|
/external/opencv3/modules/cudalegacy/src/ |
gmg.cpp | 61 void update_gpu(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures, 172 typedef void (*func_t)(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures,
|
/external/opencv3/modules/objdetect/src/ |
cascadedetect_convert.cpp | 201 int maxWeakCount = 0, nfeatures = (int)features.size(); local 244 for( i = 0; i < nfeatures; i++ )
|
cascadedetect.cpp | 713 size_t fi, nfeatures = features->size(); local 715 optfeatures->resize(nfeatures); 717 for( fi = 0; fi < nfeatures; fi++ ) 719 optfeatures_lbuf->resize(nfeatures); 721 for( fi = 0; fi < nfeatures; fi++ ) 868 size_t fi, nfeatures = features->size(); local 870 optfeatures->resize(nfeatures); 872 for( fi = 0; fi < nfeatures; fi++ ) [all...] |
/external/opencv3/modules/cudafeatures2d/src/ |
orb.cpp | 341 ORB_Impl(int nfeatures, 479 ORB_Impl::ORB_Impl(int nFeatures, 489 nFeatures_(nFeatures), 517 n_features_per_level_[nLevels_ - 1] = nFeatures - sum_n_features; [all...] |
/external/opencv3/modules/cudafeatures2d/include/opencv2/ |
cudafeatures2d.hpp | 469 static Ptr<ORB> create(int nfeatures=500,
|
/external/opencv3/samples/python2/ |
plane_tracker.py | 64 self.detector = cv2.ORB_create( nfeatures = 1000 )
|
/external/opencv3/modules/ml/include/opencv2/ |
ml.hpp | [all...] |
/external/opencv3/modules/features2d/include/opencv2/ |
features2d.hpp | 261 @param nfeatures The maximum number of features to retain. 282 (the score is written to KeyPoint::score and is used to retain best nfeatures features); 289 CV_WRAP static Ptr<ORB> create(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeThreshold=31, [all...] |