de.unihalle.informatik.MiToBo.math.images
Enum ImageStatistics.StatValue

java.lang.Object
  extended by java.lang.Enum<ImageStatistics.StatValue>
      extended by de.unihalle.informatik.MiToBo.math.images.ImageStatistics.StatValue
All Implemented Interfaces:
Serializable, Comparable<ImageStatistics.StatValue>
Enclosing class:
ImageStatistics

public static enum ImageStatistics.StatValue
extends 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

INTENSITY_MEAN

public static final ImageStatistics.StatValue INTENSITY_MEAN
Average image intensity.


INTENSITY_MAX

public static final ImageStatistics.StatValue INTENSITY_MAX
Maximal image intensity.


INTENSITY_MIN

public static final ImageStatistics.StatValue INTENSITY_MIN
Minimal image intensity.


INTENSITY_VARIANCE

public static final ImageStatistics.StatValue INTENSITY_VARIANCE
Image intensity variance.


INTENSITY_STDDEV

public static final ImageStatistics.StatValue INTENSITY_STDDEV
Image intensity standard deviation.


INTENSITY_ENTROPY

public static final ImageStatistics.StatValue INTENSITY_ENTROPY
Image entropy.


HISTO_UNIFORMITY

public static final ImageStatistics.StatValue HISTO_UNIFORMITY
Uniformity of intensity.

Measure is maximal, if histogram is equally distributed.


HISTO_SKEWNESS

public static final ImageStatistics.StatValue HISTO_SKEWNESS
Histogram skewness as given by third image moment.

Measure is 0 for symmetric histograms, positive for histograms skewed to the right, and negative for histograms skewed to the left.

Method Detail

values

public static ImageStatistics.StatValue[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ImageStatistics.StatValue c : ImageStatistics.StatValue.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ImageStatistics.StatValue valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2010–2015 Martin Luther University Halle-Wittenberg. All rights reserved.