Vishaltiwari2019 commited on
Commit
ffc2154
·
verified ·
1 Parent(s): cdb9eff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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
- draw.text((box[0], box[1]), label_text, fill=color)
 
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)