programmnix-askui commited on
Commit
e593add
Β·
1 Parent(s): 86ce79d

test input

Browse files
Files changed (1) hide show
  1. app.py +1 -3
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