kinsung commited on
Commit
7374afb
·
1 Parent(s): 2c191c1
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -29,9 +29,10 @@ def extract_image(image, text, prob, custom_width, custom_height):
29
  object_to_detect = text.lower()
30
  for score, label, box in zip(results["scores"], results["labels"], results["boxes"]):
31
  label_name = dmodel.config.id2label[label.item()].lower()
 
32
  if object_to_detect in label_name:
33
  key_object_coordinates = box.tolist()
34
- pout = label_name
35
  break
36
 
37
  # Ensure that the key object is in the cropped image
 
29
  object_to_detect = text.lower()
30
  for score, label, box in zip(results["scores"], results["labels"], results["boxes"]):
31
  label_name = dmodel.config.id2label[label.item()].lower()
32
+ pout =pout+" "+ label_name
33
  if object_to_detect in label_name:
34
  key_object_coordinates = box.tolist()
35
+
36
  break
37
 
38
  # Ensure that the key object is in the cropped image