Opencv LBPHFaceRecognizer Train data in Python
I am working on face recognition with LBPH algorithm and i need to save train data to database.
recognizer = cv2.createLBPHFaceRecognizer()
recognizer.train(images, np.array(labels))
i need to see this train data for each image.
How can I make this ?