Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from ocrFuncs import imgOCR_img2text
|
| 3 |
-
|
| 4 |
|
| 5 |
st.write("Upload an image and this app will scan it for text")
|
| 6 |
user_image_object = st.file_uploader("upload your image", type=['png', 'jpg'], accept_multiple_files=False)
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from ocrFuncs import imgOCR_img2text
|
| 3 |
+
from PIL import Image
|
| 4 |
|
| 5 |
st.write("Upload an image and this app will scan it for text")
|
| 6 |
user_image_object = st.file_uploader("upload your image", type=['png', 'jpg'], accept_multiple_files=False)
|