Enum Class HessianBlobIntensity.Type

java.lang.Object
java.lang.Enum<HessianBlobIntensity.Type>
boofcv.alg.feature.detect.intensity.HessianBlobIntensity.Type
All Implemented Interfaces:
Serializable, Comparable<HessianBlobIntensity.Type>, java.lang.constant.Constable
Enclosing class:
HessianBlobIntensity

public static enum HessianBlobIntensity.Type extends Enum<HessianBlobIntensity.Type>
Different types of Hessian blob detectors
  • Enum Constant Details

    • DETERMINANT

      public static final HessianBlobIntensity.Type DETERMINANT
      Compute the determinant. Maximum are features.
    • TRACE

      public static final HessianBlobIntensity.Type TRACE
      Compute the trace (aka Laplacian). Maximum and Minimums are features.
  • Method Details

    • values

      public static HessianBlobIntensity.Type[] 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 HessianBlobIntensity.Type 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