Enum Class FundamentalMatrixEstimatorMethod

java.lang.Object
java.lang.Enum<FundamentalMatrixEstimatorMethod>
com.irurueta.ar.epipolar.estimators.FundamentalMatrixEstimatorMethod
All Implemented Interfaces:
Serializable, Comparable<FundamentalMatrixEstimatorMethod>, Constable

public enum FundamentalMatrixEstimatorMethod extends Enum<FundamentalMatrixEstimatorMethod>
Indicates method of non-robust fundamental matrix estimator.
  • Enum Constant Details

    • SEVEN_POINTS_ALGORITHM

      public static final FundamentalMatrixEstimatorMethod SEVEN_POINTS_ALGORITHM
      Fundamental matrix estimation method based on 7 matched 2D points.
    • EIGHT_POINTS_ALGORITHM

      public static final FundamentalMatrixEstimatorMethod EIGHT_POINTS_ALGORITHM
      Fundamental matrix estimation method based on 8 matched 2D points.
    • AFFINE_ALGORITHM

      public static final FundamentalMatrixEstimatorMethod 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

      public static FundamentalMatrixEstimatorMethod[] 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 FundamentalMatrixEstimatorMethod 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