OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nonmaxSuppression
(Results
1 - 7
of
7
) sorted by null
/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/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/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/cudafeatures2d/src/cuda/
fast.cu
[
all
...]
Completed in 111 milliseconds