public enum DisparityAlgorithms extends java.lang.Enum<DisparityAlgorithms>
| Enum Constant and Description |
|---|
RECT
Rectangular region.
|
RECT_FIVE
Dynamically selects the best regions out of five local sub-regions
|
| Modifier and Type | Method and Description |
|---|---|
static DisparityAlgorithms |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisparityAlgorithms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisparityAlgorithms RECT
DisparityScoreSadRectpublic static final DisparityAlgorithms RECT_FIVE
DisparityScoreWindowFivepublic static DisparityAlgorithms[] values()
for (DisparityAlgorithms c : DisparityAlgorithms.values()) System.out.println(c);
public static DisparityAlgorithms valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null