forked from autowarefoundation/autoware_launch
-
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: sync awf perception launch (autowarefoundation#360)
Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com>
- Loading branch information
1 parent
918855a
commit 3c7562a
Showing
4 changed files
with
191 additions
and
10 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
perception_launch/config/object_recognition/detection/pointcloud_map_filter.param.yaml
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/**: | ||
ros__parameters: | ||
use_down_sample_filter: False | ||
down_sample_voxel_size: 0.1 | ||
distance_threshold: 0.5 |
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
168 changes: 168 additions & 0 deletions
168
perception_launch/launch/object_recognition/detection/pointcloud_map_filter.launch.py
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 |
---|---|---|
@@ -0,0 +1,168 @@ | ||
# Copyright 2022 TIER IV, Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
import os | ||
|
||
from ament_index_python.packages import get_package_share_directory | ||
import launch | ||
from launch.actions import DeclareLaunchArgument | ||
from launch.actions import OpaqueFunction | ||
from launch.actions import SetLaunchConfiguration | ||
from launch.conditions import IfCondition | ||
from launch.conditions import UnlessCondition | ||
from launch.substitutions import LaunchConfiguration | ||
from launch_ros.actions import ComposableNodeContainer | ||
from launch_ros.actions import LoadComposableNodes | ||
from launch_ros.descriptions import ComposableNode | ||
import yaml | ||
|
||
|
||
class PointcloudMapFilterPipeline: | ||
def __init__(self, context): | ||
pointcloud_map_filter_param_path = os.path.join( | ||
get_package_share_directory("perception_launch"), | ||
"config/object_recognition/detection/pointcloud_map_filter.param.yaml", | ||
) | ||
with open(pointcloud_map_filter_param_path, "r") as f: | ||
self.pointcloud_map_filter_param = yaml.safe_load(f)["/**"]["ros__parameters"] | ||
self.use_down_sample_filter = self.pointcloud_map_filter_param["use_down_sample_filter"] | ||
self.voxel_size = self.pointcloud_map_filter_param["down_sample_voxel_size"] | ||
self.distance_threshold = self.pointcloud_map_filter_param["distance_threshold"] | ||
|
||
def create_pipeline(self): | ||
if self.use_down_sample_filter: | ||
return self.create_down_sample_pipeline() | ||
else: | ||
return self.create_normal_pipeline() | ||
|
||
def create_normal_pipeline(self): | ||
components = [] | ||
components.append( | ||
ComposableNode( | ||
package="compare_map_segmentation", | ||
plugin="compare_map_segmentation::VoxelBasedCompareMapFilterComponent", | ||
name="voxel_based_compare_map_filter", | ||
remappings=[ | ||
("input", LaunchConfiguration("input_topic")), | ||
("map", "/map/pointcloud_map"), | ||
("output", LaunchConfiguration("output_topic")), | ||
], | ||
parameters=[ | ||
{ | ||
"distance_threshold": self.distance_threshold, | ||
} | ||
], | ||
extra_arguments=[ | ||
{"use_intra_process_comms": False}, | ||
], | ||
) | ||
) | ||
return components | ||
|
||
def create_down_sample_pipeline(self): | ||
components = [] | ||
down_sample_topic = ( | ||
"/perception/obstacle_segmentation/pointcloud_map_filtered/downsampled/pointcloud" | ||
) | ||
components.append( | ||
ComposableNode( | ||
package="pointcloud_preprocessor", | ||
plugin="pointcloud_preprocessor::VoxelGridDownsampleFilterComponent", | ||
name="voxel_grid_downsample_filter", | ||
remappings=[ | ||
("input", LaunchConfiguration("input_topic")), | ||
("output", down_sample_topic), | ||
], | ||
parameters=[ | ||
{ | ||
"voxel_size_x": self.voxel_size, | ||
"voxel_size_y": self.voxel_size, | ||
"voxel_size_z": self.voxel_size, | ||
} | ||
], | ||
extra_arguments=[ | ||
{"use_intra_process_comms": LaunchConfiguration("use_intra_process")} | ||
], | ||
), | ||
) | ||
components.append( | ||
ComposableNode( | ||
package="compare_map_segmentation", | ||
plugin="compare_map_segmentation::VoxelBasedCompareMapFilterComponent", | ||
name="voxel_based_compare_map_filter", | ||
remappings=[ | ||
("input", down_sample_topic), | ||
("map", "/map/pointcloud_map"), | ||
("output", LaunchConfiguration("output_topic")), | ||
], | ||
parameters=[ | ||
{ | ||
"distance_threshold": self.distance_threshold, | ||
} | ||
], | ||
extra_arguments=[ | ||
{"use_intra_process_comms": False}, | ||
], | ||
) | ||
) | ||
return components | ||
|
||
|
||
def launch_setup(context, *args, **kwargs): | ||
pipeline = PointcloudMapFilterPipeline(context) | ||
components = [] | ||
components.extend(pipeline.create_pipeline()) | ||
individual_container = ComposableNodeContainer( | ||
name=LaunchConfiguration("container_name"), | ||
namespace="", | ||
package="rclcpp_components", | ||
executable=LaunchConfiguration("container_executable"), | ||
composable_node_descriptions=components, | ||
condition=UnlessCondition(LaunchConfiguration("use_pointcloud_container")), | ||
output="screen", | ||
) | ||
pointcloud_container_loader = LoadComposableNodes( | ||
composable_node_descriptions=components, | ||
target_container=LaunchConfiguration("container_name"), | ||
condition=IfCondition(LaunchConfiguration("use_pointcloud_container")), | ||
) | ||
return [individual_container, pointcloud_container_loader] | ||
|
||
|
||
def generate_launch_description(): | ||
launch_arguments = [] | ||
|
||
def add_launch_arg(name: str, default_value=None): | ||
launch_arguments.append(DeclareLaunchArgument(name, default_value=default_value)) | ||
|
||
add_launch_arg("input_topic", "") | ||
add_launch_arg("output_topic", "") | ||
add_launch_arg("use_multithread", "False") | ||
add_launch_arg("use_intra_process", "True") | ||
add_launch_arg("use_pointcloud_container", "False") | ||
add_launch_arg("container_name", "pointcloud_map_filter_pipeline_container") | ||
set_container_executable = SetLaunchConfiguration( | ||
"container_executable", | ||
"component_container", | ||
condition=UnlessCondition(LaunchConfiguration("use_multithread")), | ||
) | ||
set_container_mt_executable = SetLaunchConfiguration( | ||
"container_executable", | ||
"component_container_mt", | ||
condition=IfCondition(LaunchConfiguration("use_multithread")), | ||
) | ||
return launch.LaunchDescription( | ||
launch_arguments | ||
+ [set_container_executable, set_container_mt_executable] | ||
+ [OpaqueFunction(function=launch_setup)] | ||
) |