Package boofcv.factory.geo
Enum Class ConfigTrifocalError.Model
- All Implemented Interfaces:
Serializable
,Comparable<ConfigTrifocalError.Model>
,java.lang.constant.Constable
- Enclosing class:
- ConfigTrifocalError
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPoint transfer from view 0 into 2 and 0 into 3.Computes camera matrices and triangulates a point in 3D space.Computes camera matrices and triangulates a point in 3D space. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConfigTrifocalError.Model
Returns the enum constant of this class with the specified name.static ConfigTrifocalError.Model[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REPROJECTION
Computes camera matrices and triangulates a point in 3D space. Reprojects the points and returns the error. Triangulation is done using a linear algorithm only. inlier units: Pixels- See Also:
-
REPROJECTION_REFINE
Computes camera matrices and triangulates a point in 3D space. Reprojects the points and returns the error. Additional non-linear refinement is done on triangulated points. inlier units: Pixels- See Also:
-
POINT_TRANSFER
Point transfer from view 0 into 2 and 0 into 3. inlier units: Pixels- See Also:
-
-
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
-