Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tier4_perception_launch): add input/pointcloud to ground-segmentation #1833

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(tier4_perception_launch): add input/pointcloud to ground-segmenta…
…tion

Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp>
  • Loading branch information
yukke42 committed Sep 11, 2022
commit 62eaf0d3686faeb876f5510e0317598387f5d8d1
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def launch_setup(context, *args, **kwargs):
components = []
components.extend(
pipeline.create_single_frame_obstacle_segmentation_components(
input_topic="/sensing/lidar/concatenated/pointcloud",
input_topic=LaunchConfiguration("input/pointcloud"),
output_topic=pipeline.single_frame_obstacle_seg_output,
)
)
Expand Down Expand Up @@ -521,6 +521,7 @@ def add_launch_arg(name: str, default_value=None):
add_launch_arg("use_pointcloud_container", "False")
add_launch_arg("container_name", "perception_pipeline_container")
add_launch_arg("tier4_perception_launch_param_path", "tier4_perception_launch parameter path")
add_launch_arg("input/pointcloud", "/sensing/lidar/concatenated/pointcloud")

set_container_executable = SetLaunchConfiguration(
"container_executable",
Expand Down