Spaces:
Runtime error
Runtime error
Commit
Β·
e593add
1
Parent(s):
86ce79d
test input
Browse files
app.py
CHANGED
@@ -112,9 +112,7 @@ def deepseek(image, text_input):
|
|
112 |
w, h = image.size()
|
113 |
bbox = [bbox[0] * w, bbox[1] * h, bbox[2] * w, bbox[3] * h]
|
114 |
|
115 |
-
|
116 |
-
|
117 |
-
scaled_boxes = rescale_bounding_boxes(bbox, image.width, image.height)
|
118 |
return text_input, scaled_boxes, draw_bounding_boxes(image, scaled_boxes)
|
119 |
|
120 |
|
|
|
112 |
w, h = image.size()
|
113 |
bbox = [bbox[0] * w, bbox[1] * h, bbox[2] * w, bbox[3] * h]
|
114 |
|
115 |
+
scaled_boxes = rescale_bounding_boxes([bbox], image.width, image.height)
|
|
|
|
|
116 |
return text_input, scaled_boxes, draw_bounding_boxes(image, scaled_boxes)
|
117 |
|
118 |
|