find_object_3d.launch.py
Go to the documentation of this file.
1 
2 from launch import LaunchDescription
3 from launch.actions import DeclareLaunchArgument, SetEnvironmentVariable
4 from launch.substitutions import LaunchConfiguration
5 from launch_ros.actions import Node
6 
8 
9  return LaunchDescription([
10 
11  SetEnvironmentVariable('RCUTILS_LOGGING_USE_STDOUT', '1'),
12  SetEnvironmentVariable('RCUTILS_LOGGING_BUFFERED_STREAM', '0'),
13 
14  # Launch arguments
15  DeclareLaunchArgument('gui', default_value='true', description='Launch GUI.'),
16  DeclareLaunchArgument('approx_sync', default_value='true', description=''),
17  DeclareLaunchArgument('pnp', default_value='true', description=''),
18  DeclareLaunchArgument('object_prefix', default_value='object', description='TF prefix of objects.'),
19  DeclareLaunchArgument('objects_path', default_value='~/objects', description='Directory containing objects to load on initialization.'),
20  DeclareLaunchArgument('settings_path', default_value='~/.ros/find_object_2d.ini', description='Config file.'),
21 
22  DeclareLaunchArgument('rgb_topic', default_value='camera/rgb/image_rect_color', description='Image topic.'),
23  DeclareLaunchArgument('depth_topic', default_value='camera/depth_registered/image_raw', description='Registered depth topic.'),
24  DeclareLaunchArgument('camera_info_topic', default_value='camera/rgb/camera_info', description='Camera info topic.'),
25 
26  # Nodes to launch
27  Node(
28  package='find_object_2d', executable='find_object_2d', output='screen',
29  parameters=[{
30  'subscribe_depth':True,
31  'gui':LaunchConfiguration('gui'),
32  'approx_sync':LaunchConfiguration('approx_sync'),
33  'pnp':LaunchConfiguration('pnp'),
34  'object_prefix':LaunchConfiguration('object_prefix'),
35  'objects_path':LaunchConfiguration('objects_path'),
36  'settings_path':LaunchConfiguration('settings_path')
37  }],
38  remappings=[
39  ('rgb/image_rect_color', LaunchConfiguration('rgb_topic')),
40  ('depth_registered/image_raw', LaunchConfiguration('depth_topic')),
41  ('depth_registered/camera_info', LaunchConfiguration('camera_info_topic'))]),
42  ])


find_object_2d
Author(s): Mathieu Labbe
autogenerated on Mon Dec 12 2022 03:20:09