|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SnakeOptimizerSingle.IntensityNormalizationMode>
de.unihalle.informatik.MiToBo.segmentation.snakes.optimize.SnakeOptimizerSingle.IntensityNormalizationMode
public static enum SnakeOptimizerSingle.IntensityNormalizationMode
Image intensity normalization mode.
For parameter tuning it is of advantage to use normalized image intensities in snake segmentation. As such a normalization can be accomplished in various ways, different modes can be chosen. The image intensities are always scaled to a range of [-1,1], but the base of normalization differs in the different modes.
Enum Constant Summary | |
---|---|
INTENSITY_NORM_NONE
No normalization of image intensities. |
|
INTENSITY_NORM_THEORETIC_RANGE
Normalization is done according to the dynamic range of the input image, i.e. based on the extreme values that can be represented in the image. |
|
INTENSITY_NORM_TRUE_RANGE
Normalization is done according to the real intensity range of the input image, i.e. based on the extreme values found in the image. |
Method Summary | |
---|---|
static SnakeOptimizerSingle.IntensityNormalizationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SnakeOptimizerSingle.IntensityNormalizationMode[] |
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 SnakeOptimizerSingle.IntensityNormalizationMode INTENSITY_NORM_NONE
public static final SnakeOptimizerSingle.IntensityNormalizationMode INTENSITY_NORM_TRUE_RANGE
public static final SnakeOptimizerSingle.IntensityNormalizationMode INTENSITY_NORM_THEORETIC_RANGE
Method Detail |
---|
public static SnakeOptimizerSingle.IntensityNormalizationMode[] values()
for (SnakeOptimizerSingle.IntensityNormalizationMode c : SnakeOptimizerSingle.IntensityNormalizationMode.values()) System.out.println(c);
public static SnakeOptimizerSingle.IntensityNormalizationMode 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 |