Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
cooperative_perception_launch.py
Go to the documentation of this file.
1# Copyright 2023 Leidos
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15from ament_index_python import get_package_share_path
16from launch import LaunchDescription
17from launch_ros.actions import Node
18
19
21 package_share_path = get_package_share_path("carma_cooperative_perception")
22
23 multiple_object_tracker_node = Node(
24 package="carma_cooperative_perception",
25 executable="multiple_object_tracker_node",
26 name="multiple_object_tracker",
27 parameters=[package_share_path / "config/params.yaml"],
28 )
29
30 host_vehicle_filter_node = Node(
31 package="carma_cooperative_perception",
32 executable="host_vehicle_filter_node",
33 name="host_vehicle_filter",
34 parameters=[package_share_path / "config/params.yaml"],
35 )
36
37 return LaunchDescription([multiple_object_tracker_node, host_vehicle_filter_node])