Class FeatureSelectNBest<Point>
java.lang.Object
boofcv.alg.feature.detect.selector.FeatureSelectNBest<Point>
- All Implemented Interfaces:
FeatureSelectLimitIntensity<Point>
Selects and sorts up to the N best features based on their intensity.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
select
(@Nullable GrayF32 intensity, int width, int height, boolean positive, @Nullable FastAccess<Point> prior, FastAccess<Point> detected, int limit, FastArray<Point> selected) Selects features using a rule given the limit on detection objects.void
setSampler
(SampleIntensity<Point> sampler) Specifies how the intensity will be sampled.
-
Constructor Details
-
FeatureSelectNBest
-
FeatureSelectNBest
public FeatureSelectNBest()
-
-
Method Details
-
select
public void select(@Nullable @Nullable GrayF32 intensity, int width, int height, boolean positive, @Nullable @Nullable FastAccess<Point> prior, FastAccess<Point> detected, int limit, FastArray<Point> selected) Description copied from interface:FeatureSelectLimitIntensity
Selects features using a rule given the limit on detection objects. If the limit is higher than the number of detected features and prior is null then the detected features should be copied into selected. How prior features are used is dependent upon the implementation and their affect isn't specified in general.
NOTE: The reason a null input image is supported is for the situation where the intensity image is no longer available and intensity has been copied into points. See SIFT
- Specified by:
select
in interfaceFeatureSelectLimitIntensity<Point>
- Parameters:
intensity
- (Input) Intensity image. If null that means the point will provide intensity information. Nullable.width
- (Input) if image is null then this must be the image's widthheight
- (Input) if image is null then this must be the image's heightpositive
- (Input) true if better features have more positive values, false if it's more negative valuesprior
- (Input) Locations of previously detected features. Nullabledetected
- (Input) Locations of newly detected featureslimit
- (Input) The maximum number of new features detectedselected
- (Output) Selected features. Element count not exceed the limit. Reset on every call.
-
setSampler
Description copied from interface:FeatureSelectLimitIntensity
Specifies how the intensity will be sampled.- Specified by:
setSampler
in interfaceFeatureSelectLimitIntensity<Point>
-