Tesseract-OCR / app.py
tomofi's picture
Update app.py
305aeab
raw
history blame
No virus
905 Bytes
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)