oxkitsune commited on
Commit
afc0455
1 Parent(s): ab53a86

vertical view

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -57,13 +57,15 @@ def run_ml_depth_pro(frame):
57
  assert frames is not None, "Frames is None"
58
 
59
  blueprint = rrb.Blueprint(
60
- rrb.Spatial3DView(origin="/"),
61
- rrb.Horizontal(
62
- rrb.Spatial2DView(
63
- origin="/world/camera/depth",
 
 
 
64
  ),
65
- rrb.Spatial2DView(origin="/world/camera/image"),
66
- ),
67
  collapse_panels=True,
68
  )
69
 
 
57
  assert frames is not None, "Frames is None"
58
 
59
  blueprint = rrb.Blueprint(
60
+ rrb.Vertical(
61
+ rrb.Spatial3DView(origin="/"),
62
+ rrb.Horizontal(
63
+ rrb.Spatial2DView(
64
+ origin="/world/camera/depth",
65
+ ),
66
+ rrb.Spatial2DView(origin="/world/camera/image"),
67
  ),
68
+ )
 
69
  collapse_panels=True,
70
  )
71