public enum LocalFeatureMode extends Enum<LocalFeatureMode> implements CmdLineOptionsProvider
Modifier and Type | Class and Description |
---|---|
static class |
LocalFeatureMode.AbstractDoGSIFTModeOp
Associated options for things built on a
DoGSIFTEngine . |
static class |
LocalFeatureMode.LocalFeatureModeOp
Associated options for each
LocalFeatureMode . |
Enum Constant and Description |
---|
ASIFT
Affine simulated Difference-of-Gaussian SIFT (ASIFT).
|
ASIFTENRICHED
Enhanced output affine simulated Difference-of-Gaussian SIFT (ASIFT).
|
COLOUR_DENSE_SIFT
Colour Dense SIFT
|
DENSE_SIFT
Dense SIFT
|
MIN_MAX_SIFT
Min/Max Difference-of-Gaussian SIFT
|
PYRAMID_COLOUR_DENSE_SIFT
Dense colour SIFT in a pyramid
|
PYRAMID_DENSE_SIFT
Dense SIFT in a pyramid
|
SIFT
Difference-of-Gaussian SIFT
|
Modifier and Type | Method and Description |
---|---|
abstract LocalFeatureMode.LocalFeatureModeOp |
getOptions() |
static LocalFeatureMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalFeatureMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalFeatureMode SIFT
public static final LocalFeatureMode MIN_MAX_SIFT
public static final LocalFeatureMode ASIFT
public static final LocalFeatureMode ASIFTENRICHED
public static final LocalFeatureMode DENSE_SIFT
public static final LocalFeatureMode COLOUR_DENSE_SIFT
public static final LocalFeatureMode PYRAMID_DENSE_SIFT
public static final LocalFeatureMode PYRAMID_COLOUR_DENSE_SIFT
public static LocalFeatureMode[] values()
for (LocalFeatureMode c : LocalFeatureMode.values()) System.out.println(c);
public static LocalFeatureMode 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 nullpublic abstract LocalFeatureMode.LocalFeatureModeOp getOptions()
getOptions
in interface CmdLineOptionsProvider