/external/opencv3/modules/cudafeatures2d/src/ |
D | fast.cpp | 68 FAST_Impl(int threshold, bool nonmaxSuppression, int max_npoints); 93 FAST_Impl::FAST_Impl(int threshold, bool nonmaxSuppression, int max_npoints) : in FAST_Impl() argument 94 threshold_(threshold), nonmaxSuppression_(nonmaxSuppression), max_npoints_(max_npoints) in FAST_Impl() 202 …Detector> cv::cuda::FastFeatureDetector::create(int threshold, bool nonmaxSuppression, int type, i… in create() argument 205 return makePtr<FAST_Impl>(threshold, nonmaxSuppression, max_npoints); in create()
|
/external/opencv3/modules/features2d/src/ |
D | fast.cpp | 368 : threshold(_threshold), nonmaxSuppression(_nonmaxSuppression), type((short)_type) in FastFeatureDetector_Impl() 382 FAST( gray, keypoints, threshold, nonmaxSuppression, type ); in detect() 391 nonmaxSuppression = value != 0; in set() 403 return nonmaxSuppression; in get() 413 void setNonmaxSuppression(bool f) { nonmaxSuppression = f; } in setNonmaxSuppression() 414 bool getNonmaxSuppression() const { return nonmaxSuppression; } in getNonmaxSuppression() 420 bool nonmaxSuppression; member in cv::FastFeatureDetector_Impl 424 Ptr<FastFeatureDetector> FastFeatureDetector::create( int threshold, bool nonmaxSuppression, int ty… in create() argument 426 return makePtr<FastFeatureDetector_Impl>(threshold, nonmaxSuppression, type); in create()
|
D | agast.cpp | 7455 : threshold(_threshold), nonmaxSuppression(_nonmaxSuppression), type((short)_type) in AgastFeatureDetector_Impl() 7469 AGAST( gray, keypoints, threshold, nonmaxSuppression, type ); in detect() 7478 nonmaxSuppression = value != 0; in set() 7488 return nonmaxSuppression; in get() 7496 void setNonmaxSuppression(bool f) { nonmaxSuppression = f; } in setNonmaxSuppression() 7497 bool getNonmaxSuppression() const { return nonmaxSuppression; } in getNonmaxSuppression() 7503 bool nonmaxSuppression; member in cv::AgastFeatureDetector_Impl 7507 Ptr<AgastFeatureDetector> AgastFeatureDetector::create( int threshold, bool nonmaxSuppression, int … in create() argument 7509 return makePtr<AgastFeatureDetector_Impl>(threshold, nonmaxSuppression, type); in create()
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_fast/ |
D | py_fast.markdown | 112 print "nonmaxSuppression: ", fast.getBool('nonmaxSuppression') 114 print "Total Keypoints with nonmaxSuppression: ", len(kp) 118 # Disable nonmaxSuppression 119 fast.setBool('nonmaxSuppression',0) 122 print "Total Keypoints without nonmaxSuppression: ", len(kp) 128 See the results. First image shows FAST with nonmaxSuppression and second one without 129 nonmaxSuppression:
|
/external/opencv3/modules/features2d/include/opencv2/ |
D | features2d.hpp | 358 int threshold, bool nonmaxSuppression=true ); 379 int threshold, bool nonmaxSuppression, int type ); 398 bool nonmaxSuppression=true, 413 int threshold, bool nonmaxSuppression=true ); 431 int threshold, bool nonmaxSuppression, int type ); 449 bool nonmaxSuppression=true,
|
/external/opencv3/modules/cudafeatures2d/src/cuda/ |
D | fast.cu | 323 …__global__ void nonmaxSuppression(const short2* kpLoc, int count, const PtrStepSzi scoreMat, short… in nonmaxSuppression() function 371 nonmaxSuppression<<<grid, block, 0, stream>>>(kpLoc, count, score, loc, response); in nonmaxSuppression_gpu()
|
/external/opencv3/modules/cudafeatures2d/test/ |
D | test_features2d.cpp | 62 bool nonmaxSuppression; in PARAM_TEST_CASE() local 68 nonmaxSuppression = GET_PARAM(2); in PARAM_TEST_CASE() 79 …a::FastFeatureDetector> fast = cv::cuda::FastFeatureDetector::create(threshold, nonmaxSuppression); in CUDA_TEST_P() 99 cv::FAST(image, keypoints_gold, threshold, nonmaxSuppression); in CUDA_TEST_P()
|
/external/opencv3/modules/cudafeatures2d/include/opencv2/ |
D | cudafeatures2d.hpp | 439 bool nonmaxSuppression=true,
|