File size: 921 Bytes
227e655
6b41768
 
 
 
 
 
 
 
 
 
 
 
 
f688899
383333f
6b41768
 
9ff3b4a
383333f
6b41768
 
 
9ff3b4a
6b41768
9ff3b4a
01dc683
6b41768
 
 
 
 
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
27
28
29
30
31
32
import numpy as np
import gradio as gr

# Palindromes, mirror processing, etc.

def flip_text(x):
    return x[::-1]


def flip_image(x):
    return np.fliplr(x)


with gr.Blocks() as demo:
    gr.Markdown("回文とかミラー加工とか...")
    with gr.Tab("Textを入力"):
        text_input = gr.Textbox()
        text_output = gr.Textbox()
        text_button = gr.Button("回文作成!")
    with gr.Tab("ImageをUpload"):
        with gr.Row():
            image_input = gr.Image()
            image_output = gr.Image()
        image_button = gr.Button("ミラー加工します")

    with gr.Accordion("説明"):
        gr.Markdown("Textboxを入力してください。  ImageをUploadでは画像のミラー加工ができますよ。")

    text_button.click(flip_text, inputs=text_input, outputs=text_output)
    image_button.click(flip_image, inputs=image_input, outputs=image_output)

demo.launch()