Martin Tomov commited on
Commit
e73f653
Β·
verified Β·
1 Parent(s): 1f08afb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -57,8 +57,9 @@ def annotate(image: Union[Image.Image, np.ndarray], detection_results: List[Dete
57
  mask = detection.mask
58
  color = (255, 255, 255) # White color for bounding boxes and text
59
 
60
- # Draw the bounding box with a white border and filling
61
- cv2.rectangle(image_cv2, (box.xmin, box.ymin), (box.xmax, box.ymax), color, -1) # Filled white rectangle
 
62
  cv2.rectangle(image_cv2, (box.xmin, box.ymin), (box.xmax, box.ymax), color, 2) # Border
63
 
64
  cv2.putText(image_cv2, f'{label}: {score:.2f}', (box.xmin, box.ymin - 10),
@@ -219,4 +220,4 @@ gr.Interface(
219
  outputs=[gr.Image(type="numpy"), gr.Textbox()],
220
  title="InsectSAM 🐞",
221
  examples=examples
222
- ).launch()
 
57
  mask = detection.mask
58
  color = (255, 255, 255) # White color for bounding boxes and text
59
 
60
+ # Draw the filled rectangle (white filling)
61
+ cv2.rectangle(image_cv2, (box.xmin, box.ymin), (box.xmax, box.ymax), color, cv2.FILLED) # Filled white rectangle
62
+ # Draw the border
63
  cv2.rectangle(image_cv2, (box.xmin, box.ymin), (box.xmax, box.ymax), color, 2) # Border
64
 
65
  cv2.putText(image_cv2, f'{label}: {score:.2f}', (box.xmin, box.ymin - 10),
 
220
  outputs=[gr.Image(type="numpy"), gr.Textbox()],
221
  title="InsectSAM 🐞",
222
  examples=examples
223
+ ).launch()