Enum Class ConfigTrifocalError.Model

java.lang.Object
java.lang.Enum<ConfigTrifocalError.Model>
boofcv.factory.geo.ConfigTrifocalError.Model
All Implemented Interfaces:
Serializable, Comparable<ConfigTrifocalError.Model>, java.lang.constant.Constable
Enclosing class:
ConfigTrifocalError

public static enum ConfigTrifocalError.Model extends Enum<ConfigTrifocalError.Model>
  • Enum Constant Details

    • REPROJECTION

      public static final ConfigTrifocalError.Model 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

      public static final ConfigTrifocalError.Model 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

      public static final ConfigTrifocalError.Model POINT_TRANSFER
      Point transfer from view 0 into 2 and 0 into 3. inlier units: Pixels
      See Also:
  • Method Details

    • values

      public static ConfigTrifocalError.Model[] 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

      public static ConfigTrifocalError.Model valueOf(String name)
      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 name
      NullPointerException - if the argument is null