Spaces:
Running
on
Zero
Running
on
Zero
vertical view
Browse files
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.
|
61 |
-
|
62 |
-
rrb.
|
63 |
-
|
|
|
|
|
|
|
64 |
),
|
65 |
-
|
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 |
|