File size: 711 Bytes
75b9254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 = "<p style='text-align: center'><a href='https://tesseract-ocr.github.io/' target='_blank'>Tesseract documentation</a> | <a href='https://github.com/tesseract-ocr/tesseract' target='_blank'>Github Repo</a></p>"
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)