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