Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -162,6 +162,7 @@ def analyze_outfit(image_path):
|
|
| 162 |
)
|
| 163 |
|
| 164 |
img = Image.open(image_path).convert("RGB").copy()
|
|
|
|
| 165 |
|
| 166 |
# 1) YOLO Person Detection
|
| 167 |
person_results = yolo_person_model(img, verbose=False, conf=YOLO_PERSON_CONF_THRESHOLD)
|
|
|
|
| 162 |
)
|
| 163 |
|
| 164 |
img = Image.open(image_path).convert("RGB").copy()
|
| 165 |
+
print(f"[DEBUG] image_path type: {type(image_path)} | value: {image_path}")
|
| 166 |
|
| 167 |
# 1) YOLO Person Detection
|
| 168 |
person_results = yolo_person_model(img, verbose=False, conf=YOLO_PERSON_CONF_THRESHOLD)
|