Skip to content

Commit d048e14

Browse files
authoredJul 22, 2024
refactor: pointcloud_preprocessor prefix package and namespace with autoware (#15)
Signed-off-by: Amadeusz Szymko <amadeusz.szymko.2@tier4.jp>
1 parent c698f24 commit d048e14

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
 

‎awsim_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def launch_setup(context, *args, **kwargs):
2929

3030
# set concat filter as a component
3131
concat_component = ComposableNode(
32-
package="pointcloud_preprocessor",
33-
plugin="pointcloud_preprocessor::PointCloudConcatenateDataSynchronizerComponent",
32+
package="autoware_pointcloud_preprocessor",
33+
plugin="autoware::pointcloud_preprocessor::PointCloudConcatenateDataSynchronizerComponent",
3434
name="concatenate_data",
3535
remappings=[
3636
("~/input/twist", "/sensing/vehicle_velocity_converter/twist_with_covariance"),

‎awsim_sensor_kit_launch/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
<buildtool_depend>ament_cmake_auto</buildtool_depend>
1111

12+
<exec_depend>autoware_pointcloud_preprocessor</exec_depend>
1213
<exec_depend>common_sensor_launch</exec_depend>
1314
<exec_depend>gnss_poser</exec_depend>
14-
<exec_depend>pointcloud_preprocessor</exec_depend>
1515
<exec_depend>tamagawa_imu_driver</exec_depend>
1616
<exec_depend>topic_tools</exec_depend>
1717
<exec_depend>ublox_gps</exec_depend>

‎common_awsim_sensor_launch/launch/velodyne_node_container.launch.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ def create_parameter_dict(*args):
7272

7373
nodes.append(
7474
ComposableNode(
75-
package="pointcloud_preprocessor",
76-
plugin="pointcloud_preprocessor::CropBoxFilterComponent",
75+
package="autoware_pointcloud_preprocessor",
76+
plugin="autoware::pointcloud_preprocessor::CropBoxFilterComponent",
7777
name="crop_box_filter_self",
7878
remappings=[
7979
("input", "pointcloud_raw_ex"),
@@ -94,8 +94,8 @@ def create_parameter_dict(*args):
9494

9595
nodes.append(
9696
ComposableNode(
97-
package="pointcloud_preprocessor",
98-
plugin="pointcloud_preprocessor::CropBoxFilterComponent",
97+
package="autoware_pointcloud_preprocessor",
98+
plugin="autoware::pointcloud_preprocessor::CropBoxFilterComponent",
9999
name="crop_box_filter_mirror",
100100
remappings=[
101101
("input", "self_cropped/pointcloud_ex"),
@@ -108,8 +108,8 @@ def create_parameter_dict(*args):
108108

109109
nodes.append(
110110
ComposableNode(
111-
package="pointcloud_preprocessor",
112-
plugin="pointcloud_preprocessor::RingOutlierFilterComponent",
111+
package="autoware_pointcloud_preprocessor",
112+
plugin="autoware::pointcloud_preprocessor::RingOutlierFilterComponent",
113113
name="ring_outlier_filter",
114114
remappings=[
115115
("input", "rectified/pointcloud_ex"),
@@ -130,8 +130,8 @@ def create_parameter_dict(*args):
130130
)
131131

132132
distortion_component = ComposableNode(
133-
package="pointcloud_preprocessor",
134-
plugin="pointcloud_preprocessor::DistortionCorrectorComponent",
133+
package="autoware_pointcloud_preprocessor",
134+
plugin="autoware::pointcloud_preprocessor::DistortionCorrectorComponent",
135135
name="distortion_corrector_node",
136136
remappings=[
137137
("~/input/twist", "/sensing/vehicle_velocity_converter/twist_with_covariance"),

0 commit comments

Comments
 (0)
Please sign in to comment.