Spaces:
Running
on
Zero
Running
on
Zero
Martin Tomov
commited on
Update app.py
Browse files
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
|
61 |
-
cv2.rectangle(image_cv2, (box.xmin, box.ymin), (box.xmax, box.ymax), color,
|
|
|
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()
|