Spaces:
Build error
Build error
init
Browse files
app.py
CHANGED
|
@@ -13,7 +13,6 @@ def inference(image):
|
|
| 13 |
for face in lst2d_res:
|
| 14 |
bbox = [int(i) for i in face["bbox"]]
|
| 15 |
score = face['score']
|
| 16 |
-
|
| 17 |
point_color = (0, int(255 * score), 0) # BGR
|
| 18 |
x1, y1 = bbox[:2]
|
| 19 |
x2, y2 = bbox[2:]
|
|
|
|
| 13 |
for face in lst2d_res:
|
| 14 |
bbox = [int(i) for i in face["bbox"]]
|
| 15 |
score = face['score']
|
|
|
|
| 16 |
point_color = (0, int(255 * score), 0) # BGR
|
| 17 |
x1, y1 = bbox[:2]
|
| 18 |
x2, y2 = bbox[2:]
|