forked from tier4/autoware_launch-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(distortion_corrector): change input pointcloud from outside of l…
…aunch file (tier4#257) (tier4#242) * feat: change input pointcloud from outside of launch file (tier4#257) * change localization util input topic * add arg to input arbitrary lidar topic to perception module * remove default value except autoware and logging launch * add default value in localization and perception launch * remove default value from root launch file * change input_sensor_points_topic to input/pointcloud * cosmetic change * feat: use pointcloud container * feat: move into util * ci(pre-commit): autofix * feat: make final output topic arg * fix: typo * fix: some lack things * fix: revert use pointcloud container * change to work tutorial Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com> * change to work tutorial Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com> Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com> Co-authored-by: h-ohta <hiroki.ota@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Signed-off-by: tanaka3 <ttatcoder@outlook.jp> * fix : to outlier_filtered/pointcloud Signed-off-by: tanaka3 <ttatcoder@outlook.jp> * fix: add missing arg * fix : topic arg Signed-off-by: tanaka3 <ttatcoder@outlook.jp> Co-authored-by: Taichi Higashide <azumade.30@gmail.com> Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com> Co-authored-by: h-ohta <hiroki.ota@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
b849f2b
commit 519977a
Showing
8 changed files
with
40 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
|
||
<!-- Topics --> | ||
<arg name="input_sensor_points_topic" default="/sensing/lidar/top/rectified/pointcloud" description="input topic name for raw pointcloud"/> | ||
<arg name="output_measurement_range_sensor_points_topic" default="measurement_range/pointcloud" description="output topic name for crop box filter"/> | ||
<arg name="output_voxel_grid_downsample_sensor_points_topic" default="voxel_grid_downsample/pointcloud" description="output topic name for voxel grid downsample filter"/> | ||
<arg name="output_downsample_sensor_points_topic" default="downsample/pointcloud" description="output topic name for downsample filter. this is final output"/> | ||
|
||
<!-- container --> | ||
<arg name="container" default="/sensing/lidar/top/pointcloud_preprocessor/velodyne_node_container" description="container name"/> | ||
|
||
<!-- option --> | ||
<arg name="input/pointcloud" description="input topic name"/> | ||
<arg name="output/pointcloud" default="downsample/pointcloud" description="final output topic name"/> | ||
<arg name="container" description="container name which input topic belongs"/> | ||
<arg name="use_intra_process" default="true" description="use ROS2 component container communication"/> | ||
|
||
<!-- pose_initializer --> | ||
<include file="$(find-pkg-share pose_initializer)/launch/pose_initializer.launch.xml" /> | ||
|
||
<!-- util --> | ||
<include file="$(find-pkg-share localization_launch)/launch/util/util.launch.py" /> | ||
|
||
<include file="$(find-pkg-share localization_launch)/launch/util/util.launch.py"> | ||
<arg name="input_sensor_points_topic" value="$(var input/pointcloud)"/> | ||
<arg name="output_downsample_sensor_points_topic" value="$(var output/pointcloud)"/> | ||
<arg name="container" value="$(var container)"/> | ||
<arg name="use_intra_process" value="$(var use_intra_process)"/> | ||
</include> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters