Spaces:
Running
Running
File size: 535 Bytes
409fff7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import easyocr as ocr #OCR
import streamlit as st #Web App
from PIL import Image #Image Processing
import numpy as np #Image Processing
#title
st.title("Easy OCR - Extract Text from Images")
#subtitle
st.markdown("## Optical Character Recognition - Using `easyocr`, `streamlit` - hosted on π€ Spaces")
st.markdown("Link to the app - [image-to-text-app on π€ Spaces](https://huggingface.co/spaces/Amrrs/image-to-text-app)")
#image uploader
image = st.file_uploader(label = "Upload your image here",type=['png','jpg','jpeg']) |