Is it possible to load the model for a FaceRecognizer from memory or a string rather than from a saved file. The API docs do not show a 'FromString or Buffer' version.
The current code loads from file:
model = cv2.createLBPHFaceRecognizer()
model.load('model.xml')
Some more background. The presisted models are stored in S3. I don't want to retrieve from S3 and then save to disk in order to use. I would rather load directly from s3 into the model or load the xml string/document into the model.