ajitrajasekharan commited on
Commit
b3481c4
·
1 Parent(s): 6e62668

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -31,10 +31,12 @@ def main():
31
  file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type,"FileSize":uploaded_file.size}
32
  st.write(file_details)
33
  image = load_image(uploaded_file)
34
- st.image(image,width=250)
35
  #st.session_state['disp'].text("Detecting text....")
 
36
  reader = easyocr.Reader(['en'],gpu=True)
37
  bound = reader.readtext(image)
 
38
  st.write(str(bound))
39
  #st.session_state['disp'].text("Detection complete")
40
 
 
31
  file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type,"FileSize":uploaded_file.size}
32
  st.write(file_details)
33
  image = load_image(uploaded_file)
34
+ st.image(image,width=500)
35
  #st.session_state['disp'].text("Detecting text....")
36
+ st.write("Detecting text...")
37
  reader = easyocr.Reader(['en'],gpu=True)
38
  bound = reader.readtext(image)
39
+ st.write("Detection complete")
40
  st.write(str(bound))
41
  #st.session_state['disp'].text("Detection complete")
42