public static enum ChessboardCornerFinder.Options extends Enum<ChessboardCornerFinder.Options>
Enum Constant and Description |
---|
ADAPTIVE_THRESHOLD
Perform adaptive (mean local) thresholding, rather than global
|
FAST_CHECK
Perform the fast check to detect a pattern and bail early
|
FILTER_QUADS
Apply filtering to remove unlikely quads from detection
|
HISTOGRAM_EQUALISE
Pre-process the image by performing histogram equalisation
|
Modifier and Type | Method and Description |
---|---|
static ChessboardCornerFinder.Options |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChessboardCornerFinder.Options[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChessboardCornerFinder.Options FILTER_QUADS
public static final ChessboardCornerFinder.Options HISTOGRAM_EQUALISE
public static final ChessboardCornerFinder.Options ADAPTIVE_THRESHOLD
public static final ChessboardCornerFinder.Options FAST_CHECK
public static ChessboardCornerFinder.Options[] values()
for (ChessboardCornerFinder.Options c : ChessboardCornerFinder.Options.values()) System.out.println(c);
public static ChessboardCornerFinder.Options valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null