Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import imageio
|
3 |
+
|
4 |
+
def dummy(img):
|
5 |
+
imageio.imwrite("output_image.png", img["mask"])
|
6 |
+
return img["image"], img["mask"]
|
7 |
+
|
8 |
+
with gr.Blocks() as demo:
|
9 |
+
with gr.Row():
|
10 |
+
img = gr.Image(tool="sketch", label="base image", show_label=True)
|
11 |
+
img1 = gr.Image()
|
12 |
+
img2 = gr.Image(label="mask image", show_label=True)
|
13 |
+
btn = gr.Button()
|
14 |
+
btn.click(dummy, img, [img1, img2])
|
15 |
+
|
16 |
+
demo.launch(debug=True)
|