public enum CorrelationMeasure extends java.lang.Enum<CorrelationMeasure>
Enum Constant and Description |
---|
BHATTACHARYA
Another distance measure, with an impressive sounding name...
|
CITY_BLOCK
Is a distance measure using city block distances.
|
CROSSCORRELATION
Another correlation measure, seems to work also, TODO Write better
description.
|
EUCLIDEAN
A direct euclidean distance.
|
INTERSECTION
The intersection computes the matching areas under the curve.
|
Modifier and Type | Method and Description |
---|---|
HistogramCorrelation |
getHistogramCorrelation() |
static CorrelationMeasure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CorrelationMeasure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CorrelationMeasure CITY_BLOCK
public static final CorrelationMeasure EUCLIDEAN
public static final CorrelationMeasure INTERSECTION
public static final CorrelationMeasure BHATTACHARYA
public static final CorrelationMeasure CROSSCORRELATION
public static CorrelationMeasure[] values()
for (CorrelationMeasure c : CorrelationMeasure.values()) System.out.println(c);
public static CorrelationMeasure valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic HistogramCorrelation getHistogramCorrelation()