forked from lukas-blecher/LaTeX-OCR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamlit.py
32 lines (28 loc) · 1.27 KB
/
streamlit.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
import requests
from PIL import Image
import streamlit
if __name__ == '__main__':
streamlit.set_page_config(page_title='LaTeX-OCR')
streamlit.title('LaTeX OCR')
streamlit.markdown('Convert images of equations to corresponding LaTeX code.\n\nThis is based on the `pix2tex` module. Check it out [![github](https://img.shields.io/badge/LaTeX--OCR-visit-a?style=social&logo=github)](https://github.com/lukas-blecher/LaTeX-OCR)')
uploaded_file = streamlit.file_uploader(
'Upload an image an equation',
type=['png', 'jpg'],
)
if uploaded_file is not None:
image = Image.open(uploaded_file)
streamlit.image(image)
else:
streamlit.text('\n')
if streamlit.button('Convert'):
if uploaded_file is not None and image is not None:
with streamlit.spinner('Computing'):
response = requests.post('http://127.0.0.1:8502/predict/', files={'file': uploaded_file.getvalue()})
if response.ok:
latex_code = response.json()
streamlit.code(latex_code, language='latex')
streamlit.markdown(f'$\\displaystyle {latex_code}$')
else:
streamlit.error(response.text)
else:
streamlit.error('Please upload an image.')