SWHL commited on
Commit
1aa38b6
1 Parent(s): d7642ea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -191,7 +191,7 @@ if __name__ == "__main__":
191
  st.session_state["img"] = img
192
 
193
  if st.session_state["img"] is not None:
194
- out_img, out_json, elapse, only_txts = inference(select_det, select_rec)
195
  if all(v is not None for v in [out_img, out_json, elapse]):
196
  st.markdown("#### Visualize:")
197
  st.image(out_img)
 
191
  st.session_state["img"] = img
192
 
193
  if st.session_state["img"] is not None:
194
+ out_img, out_json, elapse = inference(select_det, select_rec)
195
  if all(v is not None for v in [out_img, out_json, elapse]):
196
  st.markdown("#### Visualize:")
197
  st.image(out_img)