PaddleOCRv4 / app.py
onursavas's picture
Update app.py
d12524b
raw
history blame
447 Bytes
import gradio as gr
def flip_text(x):
return x[::-1]
demo = gr.Blocks()
with demo:
gr.HTML("<h1>PaddleOCR v4")
with gr.Row():
with gr.Column():
input_image = gr.Image()
input_checkbox = gr.CheckboxGroup(["English", "Chinese (Simplified)", "Russian", "Arabic"], label="Languages"),
input_button = gr.Button()
with gr.Column():
output_image = gr.Image()
demo.launch()