Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
-
title: Hand Gesture Recognition
|
| 3 |
-
emoji: 🏃
|
| 4 |
-
colorFrom: pink
|
| 5 |
-
colorTo: purple
|
| 6 |
-
sdk: gradio
|
| 7 |
-
sdk_version: 5.49.1
|
| 8 |
-
app_file: app.py
|
| 9 |
-
pinned: false
|
| 10 |
-
---
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ✋ Sign Language Recognition – Gradio + MediaPipe
|
| 2 |
+
|
| 3 |
+
This Hugging Face Space uses:
|
| 4 |
+
|
| 5 |
+
- **MediaPipe Hands**
|
| 6 |
+
- **OpenCV**
|
| 7 |
+
- **Gradio webcam streaming**
|
| 8 |
+
|
| 9 |
+
It detects a hand and performs a **simple gesture classification** (“A” for thumb-up).
|
| 10 |
+
|
| 11 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
+
## 🚀 How to Run Locally
|
| 14 |
+
|
| 15 |
+
```bash
|
| 16 |
+
pip install -r requirements.txt
|
| 17 |
+
python app.py
|