Spaces:
Runtime error
Runtime error
Commit
·
abc3ca5
1
Parent(s):
ad3d306
Update app.py
Browse files
app.py
CHANGED
@@ -30,6 +30,7 @@ file = st.file_uploader(label = "Upload Here", type=['png', 'jpg', 'jpeg'])
|
|
30 |
if file is not None:
|
31 |
image = Image.open(file) # read image with PIL library
|
32 |
st.image(image) #display
|
|
|
33 |
|
34 |
# it will only detect the English and Turkish part of the image as text
|
35 |
reader = easyocr.Reader(['tr','en'], gpu=False)
|
|
|
30 |
if file is not None:
|
31 |
image = Image.open(file) # read image with PIL library
|
32 |
st.image(image) #display
|
33 |
+
st.write('Your result will be here soon!')
|
34 |
|
35 |
# it will only detect the English and Turkish part of the image as text
|
36 |
reader = easyocr.Reader(['tr','en'], gpu=False)
|