Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -25,11 +25,13 @@ def detect_objects(image):
|
|
25 |
color = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
|
26 |
draw.rectangle(box, outline=color, width=3)
|
27 |
label_text = f"{model.config.id2label[label.item()]}: {round(score.item(), 2)}"
|
28 |
-
|
|
|
29 |
|
30 |
return image
|
31 |
|
32 |
|
|
|
33 |
def upload_image(file):
|
34 |
image = Image.open(file.name)
|
35 |
image_with_boxes = detect_objects(image)
|
|
|
25 |
color = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
|
26 |
draw.rectangle(box, outline=color, width=3)
|
27 |
label_text = f"{model.config.id2label[label.item()]}: {round(score.item(), 2)}"
|
28 |
+
# Larger and bolder font
|
29 |
+
draw.text((box[0], box[1]), label_text, fill=color, font=ImageFont.truetype("arial.ttf", size=20, weight="bold"))
|
30 |
|
31 |
return image
|
32 |
|
33 |
|
34 |
+
|
35 |
def upload_image(file):
|
36 |
image = Image.open(file.name)
|
37 |
image_with_boxes = detect_objects(image)
|