Class NonMaxLimiter

java.lang.Object
boofcv.abst.feature.detect.extract.NonMaxLimiter

public class NonMaxLimiter extends Object
Adds the ability to specify the maximum number of points that you wish to return. The selected points will be sorted by feature intensity. If maximums and minimums are found then the total number refers to the total combined number of features. The intensity that it sorts by is the absolute value.
  • Constructor Details

  • Method Details

    • process

      public void process(GrayF32 intensity)
      Extracts local max and/or min from the intensity image. If more than the maximum features are found then only the most intense ones will be returned
      Parameters:
      intensity - Feature image intensity
    • getFeatures

      public FastAccess<NonMaxLimiter.LocalExtreme> getFeatures()