Spaces:
Running
Running
File size: 389 Bytes
d7aea57 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from PIL import ImageDraw
def draw_boxes(image, boxes, probs, color):
draw = ImageDraw.Draw(image)
for box, proba in zip(boxes, probs):
draw.rectangle(box.tolist(), outline=color, width=6)
draw.text(
(box[0], box[1] - 15),
text=str(round(proba.item(), 2)),
fill=color,
stroke_width=1,
)
return image
|