C# 클래스 Emgu.CV.FaceRecognizer

Face Recognizer
상속: Emgu.Util.UnmanagedObject
파일 보기 프로젝트 열기: fajoy/RTSPExample 1 사용 예제들

공개 메소드들

메소드 설명
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

보호된 메소드들

메소드 설명
DisposeObject ( ) : void

Release the unmanaged memory associated with this FaceRecognizer

메소드 상세

DisposeObject() 보호된 메소드

Release the unmanaged memory associated with this FaceRecognizer
protected DisposeObject ( ) : void
리턴 void

Load() 공개 메소드

Load the FaceRecognizer from the file
public Load ( String fileName ) : void
fileName String The file where the FaceRecognizer will be loaded from
리턴 void

Predict() 공개 메소드

Predict the label of the image
public Predict ( IImage image ) : PredictionResult
image IImage The image where prediction will be based on
리턴 PredictionResult

Save() 공개 메소드

Save the FaceRecognizer to a file
public Save ( String fileName ) : void
fileName String The file name to be saved to
리턴 void

Train() 공개 메소드

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
리턴 void