Class NonMaxExtractorNaive

java.lang.Object
boofcv.alg.feature.detect.extract.NonMaxExtractorNaive

public class NonMaxExtractorNaive extends Object

Extracts corners at local maximums that are above a threshold. Basic unoptimized implementation.

  • Field Details

    • radius

      protected int radius
    • thresh

      protected float thresh
    • border

      protected int border
    • useStrictRule

      protected boolean useStrictRule
  • Constructor Details

    • NonMaxExtractorNaive

      public NonMaxExtractorNaive(boolean useStrictRule)
  • Method Details

    • setSearchRadius

      public void setSearchRadius(int radius)
    • getThreshold

      public float getThreshold()
    • setThreshold

      public void setThreshold(float thresh)
    • setBorder

      public void setBorder(int border)
    • getBorder

      public int getBorder()
    • isStrict

      public boolean isStrict()
    • process

      public void process(GrayF32 intensityImage, QueueCorner peaks)
    • getSearchRadius

      public int getSearchRadius()