-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocr.py
48 lines (28 loc) · 964 Bytes
/
ocr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import easyocr as ocr #OCR
import streamlit as st #Web App
from PIL import Image #Image Processing
import numpy as np #Image Processing
import os
os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE"
#title
st.title("Easy OCR - Extract Text from Images")
#image uploader
image = st.file_uploader(label = "Upload your image here",type=['png','jpg','jpeg'])
@st.cache
def load_model():
reader = ocr.Reader(['en'],model_storage_directory='.')
return reader
reader = load_model() #load model
if image is not None:
input_image = Image.open(image) #read image
st.image(input_image) #display image
with st.spinner("🤖 AI is at Work! "):
result = reader.readtext(np.array(input_image))
result_text = [] #empty list for results
for text in result:
result_text.append(text[1])
st.write(result_text)
#st.success("Here you go!")
st.balloons()
else:
st.write("Upload an Image")