HomeSort by relevance Sort by last modified time
    Searched full:nonmaxsuppression (Results 1 - 9 of 9) sorted by null

  /external/opencv3/modules/features2d/misc/java/test/
FASTFeatureDetectorTest.java 106 "<?xml version=\"1.0\"?>\n<opencv_storage>\n<threshold>130</threshold>\n<nonmaxSuppression>1</nonmaxSuppression>\n</opencv_storage>\n");
114 "<?xml version=\"1.0\"?>\n<opencv_storage>\n<threshold>150</threshold>\n<nonmaxSuppression>1</nonmaxSuppression>\n</opencv_storage>\n");
129 String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n<name>Feature2D.FAST</name>\n<nonmaxSuppression>1</nonmaxSuppression>\n<threshold>10</threshold>\n<type>2</type>\n</opencv_storage>\n";
  /external/opencv3/doc/py_tutorials/py_feature2d/py_fast/
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/cudafeatures2d/src/
fast.cpp 68 FAST_Impl(int threshold, bool nonmaxSuppression, int max_npoints);
93 FAST_Impl::FAST_Impl(int threshold, bool nonmaxSuppression, int max_npoints) :
94 threshold_(threshold), nonmaxSuppression_(nonmaxSuppression), max_npoints_(max_npoints)
202 Ptr<cv::cuda::FastFeatureDetector> cv::cuda::FastFeatureDetector::create(int threshold, bool nonmaxSuppression, int type, int max_npoints)
205 return makePtr<FAST_Impl>(threshold, nonmaxSuppression, max_npoints);
  /external/opencv3/modules/features2d/src/
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;
424 Ptr<FastFeatureDetector> FastFeatureDetector::create( int threshold, bool nonmaxSuppression, int type )
426 return makePtr<FastFeatureDetector_Impl>(threshold, nonmaxSuppression, type);
agast.cpp     [all...]
  /external/opencv3/modules/cudafeatures2d/test/
test_features2d.cpp 62 bool nonmaxSuppression;
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/include/opencv2/
features2d.hpp 358 int threshold, bool nonmaxSuppression=true );
366 @param nonmaxSuppression if true, non-maximum suppression is applied to detected corners
379 int threshold, bool nonmaxSuppression, int type );
398 bool nonmaxSuppression=true,
413 int threshold, bool nonmaxSuppression=true );
421 @param nonmaxSuppression if true, non-maximum suppression is applied to detected corners
431 int threshold, bool nonmaxSuppression, int type );
449 bool nonmaxSuppression=true,
    [all...]
  /external/opencv3/modules/cudafeatures2d/include/opencv2/
cudafeatures2d.hpp 439 bool nonmaxSuppression=true,
  /external/opencv3/modules/cudafeatures2d/src/cuda/
fast.cu     [all...]

Completed in 2259 milliseconds