SakuraD commited on
Commit
ad1c4e6
1 Parent(s): 8547b73
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ def set_example_image(example: list) -> dict:
25
 
26
  def inference(img):
27
  result = inference_detector(model, img)
28
- res_img = show_result_pyplot(model, img, result).numpy()
29
  return res_img
30
 
31
 
 
25
 
26
  def inference(img):
27
  result = inference_detector(model, img)
28
+ res_img = show_result_pyplot(model, img, result)
29
  return res_img
30
 
31