Class ConfigAssociateGreedy

java.lang.Object
boofcv.factory.feature.associate.ConfigAssociateGreedy
All Implemented Interfaces:
Configuration, Serializable

public class ConfigAssociateGreedy extends Object implements Configuration
Configuration for AssociateGreedyDesc.
See Also:
  • Field Details

    • forwardsBackwards

      public boolean forwardsBackwards
      If true then for a match to be accepted the two features must be each others mutually best match when associating in the forwards and backwards direction.
    • scoreRatioThreshold

      public double scoreRatioThreshold
      An association is only accepted if the ratio between the second best and best score is less than this value. Closer to zero is more strict and closer to 1.0 is less strict. Set to a value ≥ 1.0 to disable.
    • maxErrorThreshold

      public double maxErrorThreshold
      If more than zero then this is the maximum allowed error/distance between two features for a match to be accepted
  • Constructor Details

    • ConfigAssociateGreedy

      public ConfigAssociateGreedy(boolean forwardsBackwards, double maxErrorThreshold)
    • ConfigAssociateGreedy

      public ConfigAssociateGreedy(boolean forwardsBackwards, double scoreRatioThreshold, double maxErrorThreshold)
    • ConfigAssociateGreedy

      public ConfigAssociateGreedy(boolean forwardsBackwards)
    • ConfigAssociateGreedy

      public ConfigAssociateGreedy()
  • Method Details