public static enum ImageStatistics.StatValue extends Enum<ImageStatistics.StatValue>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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.
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 nameNullPointerException
- if the argument is nullCopyright © 2010–2020 Martin Luther University Halle-Wittenberg, Institute of Computer Science, Pattern Recognition and Bioinformatics. All rights reserved.