public enum EnumEssential extends java.lang.Enum<EnumEssential>
| Enum Constant and Description |
|---|
LINEAR_7
Exactly 7 points
Multiple solutions
Calibrated camera
|
LINEAR_8
8 or more points
Single solution
Calibrated camera
|
NISTER_5
Exactly 5 points (minimal solution)
Multiple solutions
Calibrated camera
|
| Modifier and Type | Method and Description |
|---|---|
static EnumEssential |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumEssential[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumEssential LINEAR_8
FundamentalLinear8public static final EnumEssential LINEAR_7
FundamentalLinear7public static final EnumEssential NISTER_5
EssentialNister5public static EnumEssential[] values()
for (EnumEssential c : EnumEssential.values()) System.out.println(c);
public static EnumEssential 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