Skip to content

Commit a0b7c29

Browse files
Add files via upload
1 parent 02db3e7 commit a0b7c29

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ It automates the process of marking attendance by recognizing faces in real-time
2424

2525
```mermaid
2626
flowchart 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
---

requirements.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

0 commit comments

Comments
 (0)