Skip to content

Commit 24bb669

Browse files
authored
Merge pull request #712 from dimensionalOS/remove-depth-go2-blueprint
Remove depth module from base unitree go2 blueprints Former-commit-id: 390dce4 [formerly 7fe3a4d] Former-commit-id: 604185d
2 parents 6a00c31 + d6787f5 commit 24bb669

File tree

1 file changed

+6
-19
lines changed

1 file changed

+6
-19
lines changed

dimos/robot/unitree_webrtc/unitree_go2_blueprints.py

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -66,37 +66,24 @@
6666
)
6767
)
6868

69-
standard = (
70-
autoconnect(
71-
basic,
72-
spatial_memory(),
73-
object_tracking(frame_id="camera_link"),
74-
depth_module(),
75-
utilization(),
76-
)
77-
.global_config(n_dask_workers=8)
78-
.transports(
79-
{
80-
("depth_image", Image): LCMTransport("/go2/depth_image", Image),
81-
}
82-
)
83-
)
69+
standard = autoconnect(
70+
basic,
71+
spatial_memory(),
72+
object_tracking(frame_id="camera_link"),
73+
utilization(),
74+
).global_config(n_dask_workers=8)
8475

8576
standard_with_shm = autoconnect(
8677
standard.transports(
8778
{
8879
("color_image", Image): pSHMTransport(
8980
"/go2/color_image", default_capacity=DEFAULT_CAPACITY_COLOR_IMAGE
9081
),
91-
("depth_image", Image): pSHMTransport(
92-
"/go2/depth_image", default_capacity=DEFAULT_CAPACITY_DEPTH_IMAGE
93-
),
9482
}
9583
),
9684
foxglove_bridge(
9785
shm_channels=[
9886
"/go2/color_image#sensor_msgs.Image",
99-
"/go2/depth_image#sensor_msgs.Image",
10087
]
10188
),
10289
)

0 commit comments

Comments
 (0)