Uses of Interface
boofcv.abst.feature.detect.extract.NonMaxSuppression
Package
Description
-
Uses of NonMaxSuppression in boofcv.abst.feature.detect.extract
Modifier and TypeClassDescriptionclass
Wrapper around theNonMaxCandidate
class.class
Wrapper around theNonMaxBlock
class.class
Wrapper around theNonMaxExtractorNaive
class.ModifierConstructorDescriptionNonMaxLimiter
(NonMaxSuppression nonmax, FeatureSelectLimitIntensity<NonMaxLimiter.LocalExtreme> selector, int maxTotalFeatures) Configures the limiter -
Uses of NonMaxSuppression in boofcv.alg.feature.detect.interest
Modifier and TypeFieldDescriptionprotected @Nullable NonMaxSuppression
GeneralFeatureDetector.extractorMax
protected @Nullable NonMaxSuppression
GeneralFeatureDetector.extractorMin
extracts corners from the intensity imageModifierConstructorDescriptionFastHessianFeatureDetector
(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
ModifierConstructorDescriptionHoughTransformBinary
(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
Modifier 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) Modifier 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.