import os import gradio as gr def inference(filepath): return os.popen(f'tesseract {filepath} -').read().strip() title = "Tesseract OCR" description = "Gradio demo for Tesseract. Tesseract is an open source text recognition (OCR) Engine." article = "

Tesseract documentation | Github Repo

" gr.Interface( inference, [gr.inputs.Image(type="filepath", label="Input")], 'text', title=title, description=description, article=article, examples=['eurotext.png'] ).launch(enable_queue=True,cache_examples=True)