Face Recogniton based Attendance Automation
- Python 3.6+
- Linux: Ubuntu 18.04 LTS, requires CMake
- Windows: Windows 10 20H2, requires CMake, Microsoft Visual Studio 2015 (or newer) with C/C++ Compiler
git clone https://github.com/ragazenta/faretto.git
cd faretto
Create a venv folder:
python3 -m venv venv
On Windows:
py -3 -m venv venv
Before you work on your project, activate the corresponding environment:
. venv/bin/activate
On Windows:
venv\Scripts\activate
Your shell prompt will change to show the name of the activated environment.
Within the activated environment, use the following command to install requirements:
python -m pip install --upgrade pip
pip install wheel
pip install -r requirements.txt
python main.py
- face_recognition: The world's simplest facial recognition api for Python
- eel: A little Python library for making simple Electron-like HTML/JS GUI apps
- opencv-python-headless
- imutils
This repo is for learning purpose only, based on original repo.