Class ConfigGeneralDetector

java.lang.Object
boofcv.abst.feature.detect.extract.ConfigExtract
boofcv.abst.feature.detect.interest.ConfigGeneralDetector
All Implemented Interfaces:
Configuration, Serializable

public class ConfigGeneralDetector extends ConfigExtract
Configuration for GeneralFeatureDetector.
See Also:
  • Field Details

    • maxFeatures

      public int maxFeatures
      Specifies the maximum number of features it will detect. If a value is specified then the 'maxFeatures' most intense features are returned. Set to a value ≤ 0 to return all selected features. Default is -1.
    • selector

      public ConfigSelectLimit selector
      Specifies how the features are selected if more than maxFeatures have been detected
  • Constructor Details

    • ConfigGeneralDetector

      public ConfigGeneralDetector(int maxFeatures, int radius, float threshold, int ignoreBorder, boolean useStrictRule, boolean detectMinimums, boolean detectMaximums)
    • ConfigGeneralDetector

      public ConfigGeneralDetector(int maxFeatures, int radius, float threshold, int ignoreBorder, boolean useStrictRule)
    • ConfigGeneralDetector

      public ConfigGeneralDetector(int maxFeatures, int radius, float threshold)
    • ConfigGeneralDetector

      public ConfigGeneralDetector(int maxFeatures, ConfigExtract config)
    • ConfigGeneralDetector

      public ConfigGeneralDetector(ConfigGeneralDetector original)
    • ConfigGeneralDetector

      public ConfigGeneralDetector()
  • Method Details