line_follow_debug.launch 450 B

12345678910
  1. <launch>
  2. <!-- Camera and base driver must already be running elsewhere. -->
  3. <arg name="config" default="$(find line_follower)/config/line_follow_debug.yaml"/>
  4. <arg name="image_topic" default="/usb_cam/image_raw"/>
  5. <node pkg="line_follower" type="line_follow_debug.py" name="line_follow_debug" output="screen">
  6. <rosparam command="load" file="$(arg config)"/>
  7. <param name="image_topic" value="$(arg image_topic)"/>
  8. </node>
  9. </launch>