public static enum FixedHOGStrategy.BlockNormalisation extends Enum<FixedHOGStrategy.BlockNormalisation>
Enum Constant and Description |
---|
L1
L1 normalisation
|
L1sqrt
L1 normalisation followed by element-wise sqrt
|
L2
L2 normalisation
|
L2clip
L2 normalisation; clipping values above 0.2; L2 normalisation
|
Modifier and Type | Method and Description |
---|---|
static FixedHOGStrategy.BlockNormalisation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FixedHOGStrategy.BlockNormalisation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FixedHOGStrategy.BlockNormalisation L1
public static final FixedHOGStrategy.BlockNormalisation L2
public static final FixedHOGStrategy.BlockNormalisation L1sqrt
public static final FixedHOGStrategy.BlockNormalisation L2clip
public static FixedHOGStrategy.BlockNormalisation[] values()
for (FixedHOGStrategy.BlockNormalisation c : FixedHOGStrategy.BlockNormalisation.values()) System.out.println(c);
public static FixedHOGStrategy.BlockNormalisation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null