Enum Class FundamentalMatrixEstimatorMethod
java.lang.Object
java.lang.Enum<FundamentalMatrixEstimatorMethod>
com.irurueta.ar.epipolar.estimators.FundamentalMatrixEstimatorMethod
- All Implemented Interfaces:
Serializable
,Comparable<FundamentalMatrixEstimatorMethod>
,Constable
Indicates method of non-robust fundamental matrix estimator.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAlgorithm used for Affine geometry.Fundamental matrix estimation method based on 8 matched 2D points.Fundamental matrix estimation method based on 7 matched 2D points. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static FundamentalMatrixEstimatorMethod[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SEVEN_POINTS_ALGORITHM
Fundamental matrix estimation method based on 7 matched 2D points. -
EIGHT_POINTS_ALGORITHM
Fundamental matrix estimation method based on 8 matched 2D points. -
AFFINE_ALGORITHM
Algorithm used for Affine geometry. This method should only be used on specific cases where cameras ore geometry are known to be affine.
-
-
Constructor Details
-
FundamentalMatrixEstimatorMethod
private FundamentalMatrixEstimatorMethod()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-