-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcv.launch.py
32 lines (28 loc) · 1.04 KB
/
cv.launch.py
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
# Copyright (c) 2025 José Miguel Guerrero Hernández
#
# This file is licensed under the terms of the MIT license.
# See the LICENSE file in the root of this repository.
from launch import LaunchDescription
from launch_ros.actions import Node
def generate_launch_description():
return LaunchDescription([
Node(
package='computer_vision',
namespace='computer_vision',
executable='cv_program',
output='both',
emulate_tty=True,
# Use topics from camera
remappings=[
('/camera_info', '/color/camera_info'),
('/color_in', '/color/image'),
('/depth_in', '/stereo/depth'),
('/disparity_in', '/stereo/disparity'),
('/left_raw_in', '/left/image'),
('/right_raw_in', '/right/image'),
('/left_rect_in', '/left_rect/image'),
('/right_rect_in', '/right_rect/image'),
('/pointcloud_in', '/stereo/points'),
],
)
])