LBPHFaceRecognizerUpdate Method (IInputArray, IInputArray) |
http://www.emgu.com
Updates a FaceRecognizer with given data and associated labels.
Namespace: Emgu.CV.FaceAssembly: Emgu.CV.Contrib (in Emgu.CV.Contrib.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void Update(
IInputArray images,
IInputArray labels
)
Public Sub Update (
images As IInputArray,
labels As IInputArray
)
public:
void Update(
IInputArray^ images,
IInputArray^ labels
)
member Update :
images : IInputArray *
labels : IInputArray -> unit
Parameters
- images
- Type: Emgu.CVIInputArray
The training images, that means the faces you want to learn. The data has to be given as a VectorOfMat. - labels
- Type: Emgu.CVIInputArray
The labels corresponding to the images
See Also