Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <launch>
  3.     <!-- Connect to ueye camera and publish topic -->
  4.     <include file="$(find nasa_s2d2)/launch/ueye.launch">
  5.         <!-- ROS piping -->
  6.         <arg name="camera_name"  value="camera" />
  7.         <arg name="camera_topic" value="image_raw" />
  8.  
  9.         <!-- Image AOI (use binning to downsample) -->
  10.         <arg name="image_width"  value="1600" />
  11.         <arg name="image_height" value="1200" />
  12.  
  13.         <!-- Camera acquisition rate -->
  14.         <!-- these values were empirically selected using -->
  15.         <!-- dynamic reconfigure on an ODROID XU4 -->
  16.         <arg name="auto_frame_rate" default="False" />
  17.         <arg name="frame_rate"      default="16.0" />
  18.         <arg name="output_rate"     default="0.0" /> <!-- >0: throttle rate for publishing frames -->
  19.         <arg name="pixel_clock"     default="34" />
  20.  
  21.         <!-- Zoom/Downsample -->
  22.         <arg name="binning" value="2" />
  23.         <!-- setting to 2 makes images 800x600, allows for higher fps, and does not change FOV -->
  24.     </include>
  25.  
  26. </launch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement