Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -64,12 +64,14 @@ with gr.Blocks() as demo:
|
|
64 |
|
65 |
with gr.Column():
|
66 |
with gr.Row():
|
67 |
-
gr.
|
68 |
-
|
|
|
69 |
|
70 |
with gr.Row():
|
71 |
-
gr.
|
72 |
-
|
|
|
73 |
|
74 |
submit_button.click(run_theia, inputs=input_image, outputs=[theia_output, gt_output])
|
75 |
|
|
|
64 |
|
65 |
with gr.Column():
|
66 |
with gr.Row():
|
67 |
+
with gr.Column():
|
68 |
+
gr.Markdown("### Theia Results")
|
69 |
+
theia_output = gr.Image(label="DINOv2, SAM, Depth Anything", type="numpy")
|
70 |
|
71 |
with gr.Row():
|
72 |
+
with gr.Column():
|
73 |
+
gr.Markdown("### Ground Truth")
|
74 |
+
gt_output = gr.Image(label="DINOv2, SAM, Depth Anything", type="numpy")
|
75 |
|
76 |
submit_button.click(run_theia, inputs=input_image, outputs=[theia_output, gt_output])
|
77 |
|