-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathhead_camera_tracking.launch.py
More file actions
69 lines (64 loc) · 2.6 KB
/
Copy pathhead_camera_tracking.launch.py
File metadata and controls
69 lines (64 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright 2023 RT Corporation
#
# 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.
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import ComposableNodeContainer
from launch_ros.actions import SetParameter
from launch_ros.descriptions import ComposableNode
def generate_launch_description():
declare_use_sim_time = DeclareLaunchArgument(
'use_sim_time',
default_value='false',
description=('Set true when using the gazebo simulator.'),
)
container = ComposableNodeContainer(
name='tracking_container',
namespace='head_camera_tracking',
package='rclcpp_components',
executable='component_container',
output='screen',
composable_node_descriptions=[
ComposableNode(
name='color_detection_2d',
namespace='head_camera_tracking',
package='sciurus17_examples',
plugin='sciurus17_examples::ColorDetection2D',
remappings=[('/image_raw', '/head_camera/color/image_raw')],
extra_arguments=[{'use_intra_process_comms': True}],
),
ComposableNode(
name='object_tracker',
namespace='head_camera_tracking',
package='sciurus17_examples',
plugin='sciurus17_examples::ObjectTracker',
remappings=[('/controller_state', '/neck_controller/controller_state')],
extra_arguments=[{'use_intra_process_comms': True}],
),
ComposableNode(
name='neck_jt_control',
namespace='head_camera_tracking',
package='sciurus17_examples',
plugin='sciurus17_examples::NeckJtControl',
extra_arguments=[{'use_intra_process_comms': True}],
),
],
)
return LaunchDescription(
[
declare_use_sim_time,
SetParameter(name='use_sim_time', value=LaunchConfiguration('use_sim_time')),
container,
]
)