dzmu commited on
Commit
3921e07
·
verified ·
1 Parent(s): cdd0348

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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)