Spaces:
Runtime error
Runtime error
Update app.py (#1)
Browse files- Update app.py (0f8a4adf86d36bf95e324c4d08eedace12588949)
Co-authored-by: K B <[email protected]>
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)
|