File size: 668 Bytes
ca7fcaf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import streamlit as st

def app():
    st.image('ocr.png')

    st.write("")

    st.markdown('''#### OCR, or Optical Character Recognition, is a computer vision task, \
    which includes the detection of text areas, and the recognition of characters.''')
    st.write("")
    st.write("")

    st.markdown("#####  This app allows you to compare, from a given image, the results of different solutions:")
    st.markdown("##### *EasyOcr, PaddleOCR, MMOCR, Tesseract*")
    st.write("")
    st.write("")
    st.markdown("πŸ‘ˆ Select the **About** page from the sidebar for information on how the app works")

    st.markdown("πŸ‘ˆ or directly select the **App** page")