Spaces:
Runtime error
Runtime error
File size: 707 Bytes
f2e2f27 |
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 26 |
from PIL import Image
import pytesseract
import gradio as gr
blocks = gr.Blocks()
def run_khm_eng(image):
result = pytesseract.image_to_string(
image, lang="khm+eng")
return result
with gr.Blocks() as demo:
gr.Markdown("## English+Khmer OCR")
with gr.Row():
with gr.Column():
image_in = gr.Image(type="pil")
btn = gr.Button("Run")
with gr.Column():
text_out = gr.TextArea()
examples = gr.Examples([["./demo.png", None]], fn=run_khm_eng, inputs=[
image_in], outputs=[text_out], cache_examples=False)
btn.click(fn=run_khm_eng, inputs=[image_in], outputs=[text_out])
demo.launch()
|