File tree Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ It automates the process of marking attendance by recognizing faces in real-time
2424
2525``` mermaid
2626flowchart TD
27- A[User Face] --> B[Camera Capture]
28- B --> C[OpenCV Haarcascade Detection]
29- C --> D[Feature Extraction & Encoding]
30- D --> E[Compare with Stored Database]
31- E -->|Match| F[Attendance Marked ✅]
32- E -->|No Match| G[Reject/Registration ❌]
33- F --> H[Attendance Stored in DB & CSV]
34- H --> I[Reports for Admin/Teacher]
27+ A[User Face] --> B[Camera Capture]
28+ B --> C[OpenCV Haarcascade Detection]
29+ C --> D[Feature Extraction & Encoding]
30+ D --> E[Compare with Stored Database]
31+ E -->|Match| F[Attendance Marked ✅]
32+ E -->|No Match| G[Reject/Registration ❌]
33+ F --> H[Attendance Stored in DB & CSV]
34+ H --> I[Reports for Admin/Teacher]
3535```
3636
3737---
Original file line number Diff line number Diff line change 1+ Flask >= 2.0
2+ opencv-contrib-python >= 4.5
3+ numpy >= 1.21
4+ bcrypt >= 3.2
5+ pandas >= 1.3
6+ gunicorn >= 20.1
7+ cryptography >= 3.4.7
8+
9+ # Optional (for advanced face recognition with deep learning)
10+ face-recognition >= 1.3.0
11+ dlib >= 19.22
You can’t perform that action at this time.
0 commit comments