|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ImageStatistics.StatValue>
de.unihalle.informatik.MiToBo.math.images.ImageStatistics.StatValue
public static enum ImageStatistics.StatValue
Statistical values that could be calculated.
Enum Constant Summary | |
---|---|
HISTO_SKEWNESS
Histogram skewness as given by third image moment. |
|
HISTO_UNIFORMITY
Uniformity of intensity. |
|
INTENSITY_ENTROPY
Image entropy. |
|
INTENSITY_MAX
Maximal image intensity. |
|
INTENSITY_MEAN
Average image intensity. |
|
INTENSITY_MIN
Minimal image intensity. |
|
INTENSITY_STDDEV
Image intensity standard deviation. |
|
INTENSITY_VARIANCE
Image intensity variance. |
Method Summary | |
---|---|
static ImageStatistics.StatValue |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ImageStatistics.StatValue[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageStatistics.StatValue INTENSITY_MEAN
public static final ImageStatistics.StatValue INTENSITY_MAX
public static final ImageStatistics.StatValue INTENSITY_MIN
public static final ImageStatistics.StatValue INTENSITY_VARIANCE
public static final ImageStatistics.StatValue INTENSITY_STDDEV
public static final ImageStatistics.StatValue INTENSITY_ENTROPY
public static final ImageStatistics.StatValue HISTO_UNIFORMITY
Measure is maximal, if histogram is equally distributed.
public static final ImageStatistics.StatValue HISTO_SKEWNESS
Measure is 0 for symmetric histograms, positive for histograms skewed to the right, and negative for histograms skewed to the left.
Method Detail |
---|
public static ImageStatistics.StatValue[] values()
for (ImageStatistics.StatValue c : ImageStatistics.StatValue.values()) System.out.println(c);
public static ImageStatistics.StatValue valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |