Searched defs:nonmaxSuppression (Results 1 - 3 of 3) sorted by relevance
/external/opencv3/modules/cudafeatures2d/test/ |
H A D | test_features2d.cpp | 62 bool nonmaxSuppression; local 68 nonmaxSuppression = GET_PARAM(2); 79 cv::Ptr<cv::cuda::FastFeatureDetector> fast = cv::cuda::FastFeatureDetector::create(threshold, nonmaxSuppression); 99 cv::FAST(image, keypoints_gold, threshold, nonmaxSuppression);
|
/external/opencv3/modules/features2d/src/ |
H A D | fast.cpp | 368 : threshold(_threshold), nonmaxSuppression(_nonmaxSuppression), type((short)_type) 382 FAST( gray, keypoints, threshold, nonmaxSuppression, type ); 391 nonmaxSuppression = value != 0; 403 return nonmaxSuppression; 413 void setNonmaxSuppression(bool f) { nonmaxSuppression = f; } 414 bool getNonmaxSuppression() const { return nonmaxSuppression; } 420 bool nonmaxSuppression; member in class:cv::FastFeatureDetector_Impl 424 Ptr<FastFeatureDetector> FastFeatureDetector::create( int threshold, bool nonmaxSuppression, int type ) argument 426 return makePtr<FastFeatureDetector_Impl>(threshold, nonmaxSuppression, type);
|
H A D | agast.cpp | 7455 : threshold(_threshold), nonmaxSuppression(_nonmaxSuppression), type((short)_type) 7469 AGAST( gray, keypoints, threshold, nonmaxSuppression, type ); 7478 nonmaxSuppression = value != 0; 7488 return nonmaxSuppression; 7496 void setNonmaxSuppression(bool f) { nonmaxSuppression = f; } 7497 bool getNonmaxSuppression() const { return nonmaxSuppression; } 7503 bool nonmaxSuppression; member in class:cv::AgastFeatureDetector_Impl 7507 Ptr<AgastFeatureDetector> AgastFeatureDetector::create( int threshold, bool nonmaxSuppression, int type ) argument 7509 return makePtr<AgastFeatureDetector_Impl>(threshold, nonmaxSuppression, type);
|
Completed in 107 milliseconds