FaceRecognizerTrain Method (IInputArray, IInputArray) |
http://www.emgu.com
Train the face recognizer with the specific images and labels
Namespace: Emgu.CV.FaceAssembly: Emgu.CV.Contrib (in Emgu.CV.Contrib.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void Train(
IInputArray images,
IInputArray labels
)
Public Sub Train (
images As IInputArray,
labels As IInputArray
)
public:
void Train(
IInputArray^ images,
IInputArray^ labels
)
member Train :
images : IInputArray *
labels : IInputArray -> unit
Parameters
- images
- Type: Emgu.CVIInputArray
The images used in the training. This can be a VectorOfMat - labels
- Type: Emgu.CVIInputArray
The labels of the images. This can be a VectorOfInt
See Also