https://github.com/balavenkatesh3322/face_recognition
We can train our face and verify our face using openCV.
https://github.com/balavenkatesh3322/face_recognition
face-recognition knn-classification numpy opencv python3 webcam
Last synced: 5 months ago
JSON representation
We can train our face and verify our face using openCV.
- Host: GitHub
- URL: https://github.com/balavenkatesh3322/face_recognition
- Owner: balavenkatesh3322
- Created: 2020-03-23T15:09:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T12:59:24.000Z (over 5 years ago)
- Last Synced: 2025-07-02T21:38:46.662Z (7 months ago)
- Topics: face-recognition, knn-classification, numpy, opencv, python3, webcam
- Language: Python
- Homepage:
- Size: 9.36 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Face Recognition
## Introduction
We can train our own face using this code. This will detect your face and show your name. For Instance, whenever my face detects in webcam it will show my name in that window.
## Dependencies
Install below the required library in your local machine.
1) python 3.7
2) opencv 4.1.0
3) numpy
4) face-recognition
## Quick Start
I have used below three python files to solve this issue.
1) **face_generate.py**
This python file will detect your face and save it in the dataset folder then the new folder will create with your name.
2) **face_Train.py**
This python file will open the dataset folder and take your image from that and train your face K-nearest neighbor algorithm and face_recognition library.
3) **test_face.py**
This python file will detect your face using the webcam and show your name in that window.