Loren's picture
Use streamlit_option_menu
ca7fcaf
raw
history blame contribute delete
No virus
668 Bytes
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")