Package boofcv.abst.fiducial.calib
Enum CalibrationPatterns
- All Implemented Interfaces:
Serializable
,Comparable<CalibrationPatterns>
,java.lang.constant.Constable
public enum CalibrationPatterns extends Enum<CalibrationPatterns>
List of all the supported types of calibration fiducial patterns
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description CHESSBOARD
CIRCLE_GRID
CIRCLE_HEXAGONAL
ECOCHECK
HAMMING_CHESSBOARD
HAMMING_GRID
SQUARE_GRID
-
Method Summary
Modifier and Type Method Description static CalibrationPatterns
valueOf(String name)
Returns the enum constant of this type with the specified name.static CalibrationPatterns[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CHESSBOARD
-
ECOCHECK
-
SQUARE_GRID
-
CIRCLE_HEXAGONAL
-
CIRCLE_GRID
-
HAMMING_CHESSBOARD
-
HAMMING_GRID
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-