public static enum ImageDimensionReducer.ReducerMethod extends Enum<ImageDimensionReducer.ReducerMethod>
Enum Constant and Description |
---|
MAX
Finds the maximum value along the specified dimension(s).
|
MEAN
Computes the mean value along the specified dimension(s).
|
MIN
Finds the minimum value along the specified dimension(s).
|
NORM_SUM
Computes the normalized sum along the specified dimension(s).
|
SUM
Computes the sum along the specified dimension(s).
|
Modifier and Type | Method and Description |
---|---|
static ImageDimensionReducer.ReducerMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageDimensionReducer.ReducerMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageDimensionReducer.ReducerMethod MEAN
public static final ImageDimensionReducer.ReducerMethod MIN
public static final ImageDimensionReducer.ReducerMethod MAX
public static final ImageDimensionReducer.ReducerMethod SUM
public static final ImageDimensionReducer.ReducerMethod NORM_SUM
The resulting image values sum up to 1, i.e. refer to a discrete probability density function.
public static ImageDimensionReducer.ReducerMethod[] values()
for (ImageDimensionReducer.ReducerMethod c : ImageDimensionReducer.ReducerMethod.values()) System.out.println(c);
public static ImageDimensionReducer.ReducerMethod 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.