FaceRecognizerTrain Method (IInputArray, IInputArray) |
http://www.emgu.com
Train the face recognizer with the specific images and labels
Namespace:
Emgu.CV.Face
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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