Home | History | Annotate | Download | only in src

Lines Matching refs:nonmaxSuppression

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;
7507 Ptr<AgastFeatureDetector> AgastFeatureDetector::create( int threshold, bool nonmaxSuppression, int type )
7509 return makePtr<AgastFeatureDetector_Impl>(threshold, nonmaxSuppression, type);