Face recognization using Open cv python with SQLite Database
Hey whats up guys ;) I know that you are very exited for deep learning :D
Details about Face recognization and SQLite Database
Thanks to OpenCV, coding facial recognition is now easier than ever. There are three easy steps to computer coding facial recognition, which are similar to the steps that our brains use for recognizing faces.
These steps are:
01:Data Gathering: Gather face data (face images in this case) of the persons you want to identify.
02:Train the Recognizer: Feed that face data and respective names of each face to the recognizer so that it can learn.
03:Recognition: Feed new faces of that people and see if the face recognizer you just trained recognizes them.
2. Sqlite
3. OpenCV2
4. Haarcascade file(usually comes with openCV)
1. To check if all the dependencies are installed and the project will run, run `IntroPy.py`
2. If `IntroPy.py` runs, then create the data set by running datasetCreator.py
3. Now to train the recognizer run `trainner.py`
4. After training the code, its time to test it out so run `detector.py`