Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.31 KB | None | 0 0
  1. <launch>
  2.   <node pkg="rviz" type="rviz" name="rviz"
  3.    args="-d $(find ar_pose)/launch/live_single.rviz"/>
  4.   <node pkg="tf" type="static_transform_publisher" name="world_to_cam"
  5.    args="0 0 0.5 -1.57 0 -1.57 world camera 10" />
  6.   <node ns="camera" pkg="image_proc" type="image_proc" name="image_proc"/>
  7.   <node ns="camera" pkg="uvc_camera" type="uvc_camera_node" name="uvc_camera_node"
  8.    output="screen">
  9.    
  10.  
  11.     <param name="width" type="int" value="320" />
  12.     <param name="height" type="int" value="240" />
  13.     <param name="fps" type="int" value="30" />
  14.     <param name="frame" type="string" value="camera" />
  15.     <param name="device" type="string" value="/dev/video0" />
  16.     <param name="camera_info_url" type="string"
  17.      value="file://$(find uvc_camera)/camera_calibration.yaml" />
  18.   </node>
  19.  
  20.   <node name="ar_pose" pkg="ar_pose" type="ar_single" respawn="false"
  21.    output="screen">
  22.     <param name="marker_pattern" type="string"
  23.      value="$(find ar_pose)/data/4x4/4x4_1.patt"/>
  24.     <param name="marker_width" type="double" value="152.4"/>
  25.     <param name="marker_center_x" type="double" value="0.0"/>
  26.     <param name="marker_center_y" type="double" value="0.0"/>
  27.     <param name="threshold" type="int" value="100"/>
  28.     <param name="use_history" type="bool" value="true"/>
  29.   </node>
  30. </launch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement