public static enum FieldOperations2D.FieldOperation extends Enum<FieldOperations2D.FieldOperation>
Enum Constant and Description |
---|
COLOR_PLOT
Calculate a RGB colored image of the vector field to visualize the field.
|
DIFF_X_IMAGE
Calculate the difference image in x-direction from the given vector
field.
|
DIFF_Y_IMAGE
Calculate the difference image in y-direction from the given vector
field.
|
MAGNITUDE_IMAGE
Calculate the magnitude image of the vector field.
|
NORMEDMAG_IMAGE
Calculate the normalized magnitude image of the vector field in a range
[0,1].
|
Modifier and Type | Method and Description |
---|---|
static FieldOperations2D.FieldOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldOperations2D.FieldOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldOperations2D.FieldOperation MAGNITUDE_IMAGE
public static final FieldOperations2D.FieldOperation NORMEDMAG_IMAGE
public static final FieldOperations2D.FieldOperation DIFF_X_IMAGE
public static final FieldOperations2D.FieldOperation DIFF_Y_IMAGE
public static final FieldOperations2D.FieldOperation COLOR_PLOT
public static FieldOperations2D.FieldOperation[] values()
for (FieldOperations2D.FieldOperation c : FieldOperations2D.FieldOperation.values()) System.out.println(c);
public static FieldOperations2D.FieldOperation 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.