bmay commited on
Commit
6669d02
·
verified ·
1 Parent(s): 0d4e389

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -40,10 +40,10 @@ def run_theia(image):
40
  device='cuda',
41
  )
42
 
43
- vis = np.vstack([theia_decode_results[0], gt_decode_results[0]])
44
- vis = (255.0 * vis).astype(np.uint8)
45
 
46
- return vis
47
 
48
- demo = gr.Interface(fn=run_theia, inputs=gr.Image(type="pil"), outputs=gr.Image(type="numpy"))
49
  demo.launch()
 
40
  device='cuda',
41
  )
42
 
43
+ theia_decode_results = (255.0 * theia_decode_results[0]).astype(np.uint8)
44
+ gt_decode_results = (255.0 * gt_decode_results[0]).astype(np.uint8)
45
 
46
+ return [(theia_decode_results, "Theia Results"), (gt_decode_results, "Ground Truth")]
47
 
48
+ demo = gr.Interface(fn=run_theia, inputs=gr.Image(type="pil"), outputs=gr.Gallery(label="Input, DINOv2, SAM, Depth Anything", type="numpy"))
49
  demo.launch()