Spaces:
Runtime error
Runtime error
Commit
·
6e62668
1
Parent(s):
0cecbda
Update app.py
Browse files
app.py
CHANGED
@@ -32,11 +32,11 @@ def main():
|
|
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 |
|
41 |
|
42 |
|
|
|
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 |
|
41 |
|
42 |
|