public enum FeatureDetector extends java.lang.Enum<FeatureDetector>
Enum Constant and Description |
---|
AGAST |
AKAZE |
BRISK |
FAST |
GFTT |
KAZE |
MSER |
ORB |
SIFT |
Modifier and Type | Method and Description |
---|---|
static FeatureDetector |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeatureDetector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureDetector AKAZE
public static final FeatureDetector AGAST
public static final FeatureDetector BRISK
public static final FeatureDetector FAST
public static final FeatureDetector GFTT
public static final FeatureDetector KAZE
public static final FeatureDetector MSER
public static final FeatureDetector SIFT
public static final FeatureDetector ORB
public static FeatureDetector[] values()
for (FeatureDetector c : FeatureDetector.values()) System.out.println(c);
public static FeatureDetector valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null