An open API service indexing awesome lists of open source software.

https://github.com/blesson-tomy/ai_face_recognition

Personal Project: This is a project I did with reference from YouTube that recognises the faces that the model is trained on. Used as a part of Asthra.
https://github.com/blesson-tomy/ai_face_recognition

facial-recognition opencv project python

Last synced: about 1 month ago
JSON representation

Personal Project: This is a project I did with reference from YouTube that recognises the faces that the model is trained on. Used as a part of Asthra.

Awesome Lists containing this project

README

          

# AI Facial Recognition

### Libraries Used: OpenCV and face_recognition
### Programming Language Used: Python
Trained Using: Images added into the folder 'faces'

This project works by identifing faces from images and then searching for them using the local camera.
If the faces match, the name of the person is indicated on the screen!

### Instructions

1) Clone the repository onto your personal computer

2) Ensure that Python is installed

--Check the version:
```bash
python3 -V
```

3) Install OpenCV and face_recognition modules of Python

```bash
pip install opencv-python
```

```bash
pip install face_recognition
```

4) Into the directory 'faces', upload png images of faces that you would like to train the model with

5) Set the camera device to '0' if using PC camera and '1' if using an external camera source

6) Run the program using a python interpreter

> [!IMPORTANT]
> It might take some time to load if there are a large number of images uploaded.