Update README.md
Browse files
README.md
CHANGED
|
@@ -34,7 +34,12 @@ It was trained on a small custom dataset of foot annotations and is intended as
|
|
| 34 |
|
| 35 |
---
|
| 36 |
|
|
|
|
|
|
|
| 37 |
## 📦 Usage
|
|
|
|
|
|
|
|
|
|
| 38 |
|
| 39 |
```python
|
| 40 |
import os
|
|
@@ -114,4 +119,4 @@ detections = foot_detection(image, threshold=0.3)
|
|
| 114 |
# ==== Draw results ====
|
| 115 |
result_image = draw_bounding_box(image, detections)
|
| 116 |
result_image.show() # or result_image.save("output.jpg")
|
| 117 |
-
|
|
|
|
| 34 |
|
| 35 |
---
|
| 36 |
|
| 37 |
+
|
| 38 |
+
|
| 39 |
## 📦 Usage
|
| 40 |
+
```bash
|
| 41 |
+
pip install torch torchvision pillow huggingface_hub
|
| 42 |
+
```
|
| 43 |
|
| 44 |
```python
|
| 45 |
import os
|
|
|
|
| 119 |
# ==== Draw results ====
|
| 120 |
result_image = draw_bounding_box(image, detections)
|
| 121 |
result_image.show() # or result_image.save("output.jpg")
|
| 122 |
+
```
|