C# Class Emgu.CV.FaceRecognizer

Face Recognizer
Inheritance: Emgu.Util.UnmanagedObject
Afficher le fichier Open project: fajoy/RTSPExample Class Usage Examples

Méthodes publiques

Méthode Description
Load ( String fileName ) : void

Load the FaceRecognizer from the file

Predict ( IImage image ) : PredictionResult

Predict the label of the image

Save ( String fileName ) : void

Save the FaceRecognizer to a file

Train ( IImage images, int labels ) : void

Train the face recognizer with the specific images and labels

Méthodes protégées

Méthode Description
DisposeObject ( ) : void

Release the unmanaged memory associated with this FaceRecognizer

Method Details

DisposeObject() protected méthode

Release the unmanaged memory associated with this FaceRecognizer
protected DisposeObject ( ) : void
Résultat void

Load() public méthode

Load the FaceRecognizer from the file
public Load ( String fileName ) : void
fileName String The file where the FaceRecognizer will be loaded from
Résultat void

Predict() public méthode

Predict the label of the image
public Predict ( IImage image ) : PredictionResult
image IImage The image where prediction will be based on
Résultat PredictionResult

Save() public méthode

Save the FaceRecognizer to a file
public Save ( String fileName ) : void
fileName String The file name to be saved to
Résultat void

Train() public méthode

Train the face recognizer with the specific images and labels
public Train ( IImage images, int labels ) : void
images IImage The images used in the training
labels int The labels of the images
Résultat void