File size: 905 Bytes
75b9254
 
 
debf98e
 
276165d
305aeab
276165d
75b9254
 
 
 
 
 
 
 
 
 
 
 
 
 
e0f363d
 
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
import os
import gradio as gr

print(os.popen(f'cat /etc/debian_version').read())
print(os.popen(f'cat /etc/issue').read())
print(os.popen(f'apt search tesseract').read())
print(os.popen(f'tesseract --list-langs').read())

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)