Uses of Interface
boofcv.abst.feature.detect.extract.NonMaxSuppression
Packages that use NonMaxSuppression
Package
Description
-
Uses of NonMaxSuppression in boofcv.abst.feature.detect.extract
Classes in boofcv.abst.feature.detect.extract that implement NonMaxSuppressionModifier and TypeClassDescriptionclass
Wrapper around theNonMaxCandidate
class.class
Wrapper around theNonMaxBlock
class.class
Wrapper around theNonMaxExtractorNaive
class.Constructors in boofcv.abst.feature.detect.extract with parameters of type NonMaxSuppressionModifierConstructorDescriptionNonMaxLimiter
(NonMaxSuppression nonmax, FeatureSelectLimitIntensity<NonMaxLimiter.LocalExtreme> selector, int maxTotalFeatures) Configures the limiter -
Uses of NonMaxSuppression in boofcv.alg.feature.detect.interest
Fields in boofcv.alg.feature.detect.interest declared as NonMaxSuppressionModifier and TypeFieldDescriptionprotected @Nullable NonMaxSuppression
GeneralFeatureDetector.extractorMax
protected @Nullable NonMaxSuppression
GeneralFeatureDetector.extractorMin
extracts corners from the intensity imageConstructors in boofcv.alg.feature.detect.interest with parameters of type NonMaxSuppressionModifierConstructorDescriptionFastHessianFeatureDetector
(NonMaxSuppression extractor, FeatureSelectLimitIntensity<Point2D_I16> selectFeaturesInScale, FeatureSelectLimitIntensity<ScalePoint> selectFeaturesAll, int initialSampleRate, int initialSize, int numberScalesPerOctave, int numberOfOctaves, int scaleStepSize) Defines the feature detector by specifying the size of features.GeneralFeatureDetector
(GeneralFeatureIntensity<I, D> intensity, @Nullable NonMaxSuppression extractorMin, @Nullable NonMaxSuppression extractorMax, FeatureSelectLimitIntensity<Point2D_I16> selectMax) Specifies which algorithms to use and configures the detector. -
Uses of NonMaxSuppression in boofcv.alg.feature.detect.line
Methods in boofcv.alg.feature.detect.line that return NonMaxSuppressionConstructors in boofcv.alg.feature.detect.line with parameters of type NonMaxSuppressionModifierConstructorDescriptionHoughTransformBinary
(NonMaxSuppression extractor, HoughTransformParameters parameters) Specifies parameters of transform.HoughTransformBinary_MT
(NonMaxSuppression extractor, HoughTransformParameters parameters) Specifies parameters of transform.HoughTransformGradient
(NonMaxSuppression extractor, HoughTransformParameters parameters, Class<D> derivType) Specifies parameters of transform.HoughTransformGradient_MT
(NonMaxSuppression extractor, HoughTransformParameters parameters, Class<D> derivType) Specifies parameters of transform. -
Uses of NonMaxSuppression in boofcv.factory.feature.detect.extract
Methods in boofcv.factory.feature.detect.extract that return NonMaxSuppressionModifier and TypeMethodDescriptionstatic NonMaxSuppression
FactoryFeatureExtractor.nonmax
(@Nullable ConfigExtract config) Standard non-max feature extractor.static NonMaxSuppression
FactoryFeatureExtractor.nonmaxCandidate
(@Nullable ConfigExtract config) Non-max feature extractor which saves a candidate list of all the found local maximums..BOverrideFactoryFeatureExtractor.NonMax.process
(ConfigExtract config) BOverrideFactoryFeatureExtractor.NonMaxCandidate.process
(ConfigExtract config) Methods in boofcv.factory.feature.detect.extract with parameters of type NonMaxSuppressionModifier and TypeMethodDescriptionstatic <I extends ImageGray<I>,
D extends ImageGray<D>>
GeneralFeatureDetector<I,D> FactoryFeatureExtractor.general
(GeneralFeatureIntensity<I, D> intensity, @Nullable NonMaxSuppression extractorMin, @Nullable NonMaxSuppression extractorMax, FeatureSelectLimitIntensity<Point2D_I16> selector, int maxFeatures) Creates a generalized feature detector/extractor that adds n-best capability toNonMaxSuppression
and performs other house keeping tasks.