Class ConfigTrackerHybrid

java.lang.Object
boofcv.abst.tracker.ConfigTrackerHybrid
All Implemented Interfaces:
Configuration, Serializable

public class ConfigTrackerHybrid extends Object implements Configuration
Configuration for PointTrackerHybrid.
See Also:
  • Field Details

    • pruneCloseTracks

      public boolean pruneCloseTracks
      KLT tracks can drift to being on top of each other. This will prune a few if that happens
    • maxInactiveTracks

      public int maxInactiveTracks
      If there are more than this number of unused tracks they will be randomly discarded. This is intended to prevent unbounded growth of unused tracks even if tracks are not explicity pruned.
    • thresholdRespawn

      public ConfigLength thresholdRespawn
      It will attempt to respawn old dropped tracks when the number of active tracks drops below this value. The fractional part is relative to the number of tracks after the last spawn or most recent respawn.
    • seed

      public long seed
      Random seed
  • Constructor Details

    • ConfigTrackerHybrid

      public ConfigTrackerHybrid()
  • Method Details