new layout
Browse files
app.py
CHANGED
@@ -31,8 +31,11 @@ with gr.Blocks(title="DELF") as app:
|
|
31 |
"descriptors.</h3></center>")
|
32 |
with gr.Row(equal_height=False):
|
33 |
with gr.Column():
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
36 |
run_btn = gr.Button(variant="primary")
|
37 |
with gr.Column():
|
38 |
output_img = gr.Image(type="pil", label="Output image")
|
|
|
31 |
"descriptors.</h3></center>")
|
32 |
with gr.Row(equal_height=False):
|
33 |
with gr.Column():
|
34 |
+
with gr.Row(equal_height=True):
|
35 |
+
with gr.Column():
|
36 |
+
input_img_a = gr.Image(type="pil", label="Input image A")
|
37 |
+
with gr.Column():
|
38 |
+
input_img_b = gr.Image(type="pil", label="Input image B")
|
39 |
run_btn = gr.Button(variant="primary")
|
40 |
with gr.Column():
|
41 |
output_img = gr.Image(type="pil", label="Output image")
|