hantech commited on
Commit
8bc8be5
Β·
1 Parent(s): d0777ea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -46,7 +46,8 @@ def inference(filepath, lang):
46
  min_y = min(tl[1], tr[1], br[1], bl[1])
47
  max_y = max(tl[1], tr[1], br[1], bl[1])
48
  # crop the region of interest (ROI)
49
- cropped_image = Image.fromarray(img.crop([min_y:max_y,min_x:max_x])) # crop the image
 
50
  out = recognitor.predict(cropped_image)
51
  print(out)
52
  new_bounds.append((bbox,text, out, prob))
 
46
  min_y = min(tl[1], tr[1], br[1], bl[1])
47
  max_y = max(tl[1], tr[1], br[1], bl[1])
48
  # crop the region of interest (ROI)
49
+ (left, top, right, bottom)
50
+ cropped_image = Image.fromarray(img.crop((min_x, min_y, max_x, max_y)) # crop the image
51
  out = recognitor.predict(cropped_image)
52
  print(out)
53
  new_bounds.append((bbox,text, out, prob))