Skip to content

Commit

Permalink
fix: reversed topic condition
Browse files Browse the repository at this point in the history
Signed-off-by: j4tfwm6z <[email protected]>
  • Loading branch information
j4tfwm6z committed Apr 9, 2024
1 parent e7b452b commit 33747c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ def launch_setup(context, *args, **kwargs):
(
"~/input/obstacle_pointcloud",
LaunchConfiguration("input/obstacle_pointcloud")
if downsample_input_pointcloud
if not downsample_input_pointcloud
else "/perception/obstacle_segmentation/downsample/pointcloud",
),
(
"~/input/raw_pointcloud",
LaunchConfiguration("input/raw_pointcloud")
if downsample_input_pointcloud
if not downsample_input_pointcloud
else "/sensing/lidar/concatenated/downsample/pointcloud",
),
("~/output/occupancy_grid_map", LaunchConfiguration("output")),
Expand Down

0 comments on commit 33747c9

Please sign in to comment.