Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neeraj-x0/attendance-system
An advanced Face Recognition Attendance System implemented in Python, leveraging Object-Oriented Programming (OOP) principles. This project utilizes popular libraries such as face_recognition for face detection, tkinter for GUI, and OpenCV for webcam integration.
https://github.com/neeraj-x0/attendance-system
Last synced: 4 days ago
JSON representation
An advanced Face Recognition Attendance System implemented in Python, leveraging Object-Oriented Programming (OOP) principles. This project utilizes popular libraries such as face_recognition for face detection, tkinter for GUI, and OpenCV for webcam integration.
- Host: GitHub
- URL: https://github.com/neeraj-x0/attendance-system
- Owner: Neeraj-x0
- Created: 2024-03-25T07:34:23.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-25T07:40:38.000Z (8 months ago)
- Last Synced: 2024-04-23T14:13:02.732Z (7 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Face Recognition Attendance System
## Description:
This project is a Face Recognition Attendance System developed using Python, emphasizing Object-Oriented Programming (OOP) concepts. It integrates face_recognition library for face detection and recognition, tkinter for GUI components, and OpenCV for capturing video frames. The system operates by scanning faces in real-time using the webcam, matching them with known faces, and marking attendance based on recognized faces.
## Files:
1. FaceScan.py - Contains the main program code for face scanning and attendance marking, implemented with OOP principles.
2. Register.py - Module for registering new faces by capturing photos using the webcam, designed with OOP concepts.
3. Face_rec.py - Module for face recognition functionalities, organized with OOP methodology.
4. images/ - Directory containing images of known faces for recognition.
5. face_data.json - JSON file for storing attendance data.## Usage:
To run the Face Recognition Attendance System:
1. Execute the FaceScan.py file using Python.
2. Ensure that the 'images' folder contains images of known faces for recognition.
3. The system will begin scanning for faces using the connected webcam.
4. Recognized faces will be marked for attendance, and the details will be stored in the 'face_data.json' file.
5. Press 'q' on the keyboard to quit the application.## Dependencies:
1. Python 3.x
2. face_recognition library
3. tkinter library
4. OpenCV (cv2) library
5. PIL (Pillow) library## Notes:
- Ensure that the webcam is connected and properly configured.
- Adequate lighting is essential for accurate face recognition.
- You can improve recognition accuracy by adding more images of known faces to the 'images' folder.
- Handle any exceptions that may occur during face recognition or file operations for robust performance.
- Emphasizing the usage of OOP concepts, the project is structured with modular components, promoting code reusability, encapsulation, and maintainability.