Updating EigenFaceRecognizer with more faces
Hello All,
I am trying to develop a small application for FaceRecognition in the lines of Android's FaceUnlock. There are two parts of the application.
(1). A model_creator would read the faces to create a model and train it.The model would be saved to a file (say Faces.db).
(2). A predictor would load the same file (Faces.db) and try to make prediction from incoming face captures.
The mode_creator and predictor can be invoked when needed but they both do not run at the same time.
For EigenFaceRecognizer, I would like to add more faces for an existing person or a new person to the model. I understand from the documentation that EigenFaceRecognizer and FisherFaceRecognizer do not support update() method.
How could the model be provided more faces?
Thanks,
Soaptechie