https://github.com/mgobeaalcoba/face_assistance_validator
Face Verification & Access Control App: UtiliFacial recognition for access permissions, records entries in a database. Technologies: Python, OpenCV, Face-recognition.
https://github.com/mgobeaalcoba/face_assistance_validator
cmake cv2 dlib face-recognition-python python3
Last synced: 27 days ago
JSON representation
Face Verification & Access Control App: UtiliFacial recognition for access permissions, records entries in a database. Technologies: Python, OpenCV, Face-recognition.
- Host: GitHub
- URL: https://github.com/mgobeaalcoba/face_assistance_validator
- Owner: Mgobeaalcoba
- Created: 2023-09-26T15:35:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-26T15:50:27.000Z (over 2 years ago)
- Last Synced: 2025-03-13T11:23:59.558Z (about 1 year ago)
- Topics: cmake, cv2, dlib, face-recognition-python, python3
- Language: Python
- Homepage:
- Size: 1.1 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Face Verification & Access Control App
This repository contains an application that leverages facial recognition technology to grant or deny access to individuals based on their permission status. It also keeps a record of entries in a database for security and auditing purposes.
## Features
- **Facial Verification:** The app uses facial recognition to identify individuals.
- **Access Control:** Individuals are granted or denied access based on their permission status.
- **Database Recording:** All access attempts are logged in a database for security and auditing.
- **User-friendly Interface:** An intuitive interface makes it easy to use and manage access permissions.
## Technologies Used
- **Python:** The core programming language for the application.
- **OpenCV:** Used for facial recognition and image processing.
- **SQLite:** A lightweight database management system for storing access records.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/your-username/face-verification-access-control.git
cd face-verification-access-control
```
2. Create a virtual environment (recommended):
```bash
python -m venv venv
```
3. Activate the virtual environment:
En Windows:
```bash
.\venv\Scripts\activate
```
En Linux/Mac:
```bash
source venv/bin/activate
```
4. Install the required dependencies:
```bash
pip install -r requirements.txt
```
5. Run the application:
```bash
python main.py
```