Enum Class DerivativeReduceType

java.lang.Object
java.lang.Enum<DerivativeReduceType>
boofcv.alg.filter.derivative.DerivativeReduceType
All Implemented Interfaces:
Serializable, Comparable<DerivativeReduceType>, java.lang.constant.Constable

public enum DerivativeReduceType extends Enum<DerivativeReduceType>
Different ways to reduce a gradient
  • Enum Constant Details

    • MAX_F

      public static final DerivativeReduceType MAX_F
      Reduce by selecting the band with the maximum Frobenius norm.
  • Method Details

    • values

      public static DerivativeReduceType[] 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 DerivativeReduceType 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