public enum RecognitionStrategy extends Enum<RecognitionStrategy> implements CmdLineOptionsProvider
Enum Constant and Description |
---|
CLMFeature_KNN
Shape and/or pose features from a
CLMDetectedFace coupled with a
KNN classifier. |
CLMFeature_NaiveBayes
Shape and/or pose features from a
CLMDetectedFace coupled with a
Naive Bayes classifier. |
EigenFaces_KNN
EigenFaces with a KNN classifier
|
FacePatch_KNN
Pixel patches around facial keypoints
|
FisherFaces_KNN
FisherFaces with a KNN classifier
|
LBPHistograms_KNN
Local Binary Pattern histograms with KNN classifier
|
LBPHistograms_LinearSVM
Local Binary Pattern histograms with Linear SVM classifier
|
LBPHistograms_NaiveBayes
Local Binary Pattern histograms with Naive Bayes classifier
|
Modifier and Type | Method and Description |
---|---|
abstract RecognitionEngineProvider<?> |
getOptions() |
static RecognitionStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecognitionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecognitionStrategy EigenFaces_KNN
public static final RecognitionStrategy FisherFaces_KNN
public static final RecognitionStrategy FacePatch_KNN
public static final RecognitionStrategy LBPHistograms_KNN
public static final RecognitionStrategy LBPHistograms_NaiveBayes
public static final RecognitionStrategy LBPHistograms_LinearSVM
public static final RecognitionStrategy CLMFeature_KNN
CLMDetectedFace
coupled with a
KNN classifier.public static final RecognitionStrategy CLMFeature_NaiveBayes
CLMDetectedFace
coupled with a
Naive Bayes classifier.public static RecognitionStrategy[] values()
for (RecognitionStrategy c : RecognitionStrategy.values()) System.out.println(c);
public static RecognitionStrategy 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 RecognitionEngineProvider<?> getOptions()
getOptions
in interface CmdLineOptionsProvider