Skip to content

Commit 33747c9

Browse files
author
j4tfwm6z
committed
fix: reversed topic condition
Signed-off-by: j4tfwm6z <j4tfwm6z@tier4.jp>
1 parent e7b452b commit 33747c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

perception/probabilistic_occupancy_grid_map/launch/pointcloud_based_occupancy_grid_map.launch.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ def launch_setup(context, *args, **kwargs):
102102
(
103103
"~/input/obstacle_pointcloud",
104104
LaunchConfiguration("input/obstacle_pointcloud")
105-
if downsample_input_pointcloud
105+
if not downsample_input_pointcloud
106106
else "/perception/obstacle_segmentation/downsample/pointcloud",
107107
),
108108
(
109109
"~/input/raw_pointcloud",
110110
LaunchConfiguration("input/raw_pointcloud")
111-
if downsample_input_pointcloud
111+
if not downsample_input_pointcloud
112112
else "/sensing/lidar/concatenated/downsample/pointcloud",
113113
),
114114
("~/output/occupancy_grid_map", LaunchConfiguration("output")),

0 commit comments

Comments
 (0)