snapshot_capture.launch 583 B

123456789101112
  1. <launch>
  2. <!-- This launch file deliberately does not start usb_cam or open a camera. -->
  3. <arg name="config" default="$(find line_follower)/config/snapshot_capture.yaml"/>
  4. <arg name="image_topic" default="/usb_cam/image_raw"/>
  5. <arg name="save_root" default="$(find line_follower)/data"/>
  6. <node pkg="line_follower" type="snapshot_capture.py" name="line_snapshot_capture" output="screen">
  7. <rosparam command="load" file="$(arg config)"/>
  8. <param name="image_topic" value="$(arg image_topic)"/>
  9. <param name="save_root" value="$(arg save_root)"/>
  10. </node>
  11. </launch>