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 TypeClassDescriptionclassWrapper around theNonMaxCandidateclass.classWrapper around theNonMaxBlockclass.classWrapper around theNonMaxExtractorNaiveclass.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 NonMaxSuppressionGeneralFeatureDetector.extractorMaxprotected @Nullable NonMaxSuppressionGeneralFeatureDetector.extractorMinextracts 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 NonMaxSuppressionFactoryFeatureExtractor.nonmax(@Nullable ConfigExtract config) Standard non-max feature extractor.static NonMaxSuppressionFactoryFeatureExtractor.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 toNonMaxSuppressionand performs other house keeping tasks.