Enum Class KltTrackFault

java.lang.Object
java.lang.Enum<KltTrackFault>
boofcv.alg.tracker.klt.KltTrackFault
All Implemented Interfaces:
Serializable, Comparable<KltTrackFault>, java.lang.constant.Constable

public enum KltTrackFault extends Enum<KltTrackFault>
Different types of faults that can cause a KLT track to be dropped.
  • Enum Constant Details

    • SUCCESS

      public static final KltTrackFault SUCCESS
      The feature was successfully tracked
    • DRIFTED

      public static final KltTrackFault DRIFTED
      The feature has moved farther than it could possibly be tracked
    • OUT_OF_BOUNDS

      public static final KltTrackFault OUT_OF_BOUNDS
      The tracked move out of the image bounds.
    • FAILED

      public static final KltTrackFault FAILED
      Miscellaneous track failure
    • LARGE_ERROR

      public static final KltTrackFault LARGE_ERROR
      The feature's error was too large
  • Method Details

    • values

      public static KltTrackFault[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static KltTrackFault valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null