Package com.irurueta.ar.sfm
Enum Class Point3DTriangulatorType
- All Implemented Interfaces:
Serializable
,Comparable<Point3DTriangulatorType>
,Constable
Type of 3D point triangulator.
Homogeneous methods are suitable for any case
Inhomogeneous ones are suitable only for cases where finite points and
cameras are being used. If points or cameras are located very far or at
infinity, triangulation will fail when using inhomogeneous methods.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTriangulator using homogeneous method and an LMSE (the Least Mean Square Error) solution.Triangulator using inhomogeneous method and an LMSE (the Least Mean Square Error) solution.Triangulator using homogeneous method and a weighted solution.Triangulator using inhomogeneous method and a weighted solution. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Point3DTriangulatorType
Returns the enum constant of this class with the specified name.static Point3DTriangulatorType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LMSE_HOMOGENEOUS_TRIANGULATOR
Triangulator using homogeneous method and an LMSE (the Least Mean Square Error) solution. -
LMSE_INHOMOGENEOUS_TRIANGULATOR
Triangulator using inhomogeneous method and an LMSE (the Least Mean Square Error) solution. -
WEIGHTED_HOMOGENEOUS_TRIANGULATOR
Triangulator using homogeneous method and a weighted solution. -
WEIGHTED_INHOMOGENEOUS_TRIANGULATOR
Triangulator using inhomogeneous method and a weighted solution.
-
-
Constructor Details
-
Point3DTriangulatorType
private Point3DTriangulatorType()
-
-
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
-