public static enum ImageContrastReducer.ResultValueMode extends Enum<ImageContrastReducer.ResultValueMode>
| Enum Constant and Description |
|---|
INTERVAL_CENTER
Result values are given by center values of quantization intervals.
|
INTERVAL_MAX
Result values are given by max values of quantization intervals.
|
INTERVAL_MIN
Result values are given by min values of quantization intervals.
|
ZERO_TO_N
Result values are given values from 0 to number of gray values.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageContrastReducer.ResultValueMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageContrastReducer.ResultValueMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageContrastReducer.ResultValueMode INTERVAL_CENTER
public static final ImageContrastReducer.ResultValueMode INTERVAL_MAX
public static final ImageContrastReducer.ResultValueMode INTERVAL_MIN
public static final ImageContrastReducer.ResultValueMode ZERO_TO_N
public static ImageContrastReducer.ResultValueMode[] values()
for (ImageContrastReducer.ResultValueMode c : ImageContrastReducer.ResultValueMode.values()) System.out.println(c);
public static ImageContrastReducer.ResultValueMode 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.