I'm trying to develop a facial recognition software that holds a database of different images and uses the camera to identify each person and shows their name on screen. I'm more familiar with using C++ and I assume python might be the best language to get the job done but I want to know how I can go about it with C++. what algorithm do I have to use and a break down of how I can do it. thank you (:
Asked
Active
Viewed 108 times
0
-
Related: https://stackoverflow.com/questions/953714/face-recognition-library https://stackoverflow.com/questions/7949494/how-to-do-face-recognition-using-opencv https://stackoverflow.com/questions/7574623/c-face-detection-recognition-implementations https://stackoverflow.com/questions/905121/robust-face-detection-in-c-c – Jerry Jeremiah Feb 26 '21 at 08:49
1 Answers
0
- OpenCV must be installed on the local machine.
- Paths to the classifier XML files must be given before the execution of the program. These XML files can be found in the OpenCV directory “opencv/data/haarcascades”.
- Use 0 in capture.open(0) to play webcam feed.
- For detection in a local video provide the path to the video.(capture.open(“path_to_video”)).

iamdhavalparmar
- 1,090
- 6
- 23