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