-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathdemo.launch
More file actions
18 lines (15 loc) · 850 Bytes
/
demo.launch
File metadata and controls
18 lines (15 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<launch>
<!-- Launch detection_node -->
<node name="detection_node" pkg="tracking_lib" type="tracking_lib_detection_node" output="screen">
<rosparam command="load" file="$(find tracking_lib)/config/detection.yaml"/>
<rosparam command="load" file="$(find tracking_lib)/config/kitti/Segmenter.yaml"/>
</node>
<!-- Launch tracking_node -->
<node name="tracking_node" pkg="tracking_lib" type="tracking_lib_tracking_node" output="screen">
<rosparam command="load" file="$(find tracking_lib)/config/tracking.yaml"/>
<rosparam command="load" file="$(find tracking_lib)/config/kitti/TrackingWorker.yaml"/>
</node>
<!-- Launch rviz for visualization -->
<node name="rviz" pkg="rviz" type="rviz" args="-d $(find tracking_lib)/rviz/demo.rviz"/>
</launch>