bmay commited on
Commit
b1b22c2
·
verified ·
1 Parent(s): 8ea329f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -64,12 +64,14 @@ with gr.Blocks() as demo:
64
 
65
  with gr.Column():
66
  with gr.Row():
67
- gr.Markdown("### Theia Results")
68
- theia_output = gr.Image(label="DINOv2, SAM, Depth Anything", type="numpy")
 
69
 
70
  with gr.Row():
71
- gr.Markdown("### Ground Truth")
72
- gt_output = gr.Image(label="DINOv2, SAM, Depth Anything", type="numpy")
 
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