You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mainpage.dox 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. \mainpage
  3. \htmlinclude manifest.html
  4. \b The camera_calibration package contains tools for calibrating monocular and stereo cameras.
  5. \section codeapi Code API
  6. camera_calibration does not have a code API.
  7. \section rosapi ROS API
  8. List of nodes:
  9. - \b calibrationnode
  10. <!-- START: copy for each node -->
  11. <hr>
  12. \subsection node_name calibrationnode
  13. calibrationnode subscribes to ROS raw image topics, and presents a
  14. calibration window. It can run in both monocular and stereo modes.
  15. The calibration window shows the current images from the cameras,
  16. highlighting the checkerboard. When the user presses the "CALIBRATE"
  17. button, the node computes the camera calibration parameters. When the
  18. user clicks "UPLOAD", the node uploads these new calibration parameters
  19. to the camera driver using a service call.
  20. \subsubsection Usage
  21. \verbatim
  22. $ node_type1 [standard ROS args]
  23. \endverbatim
  24. \par Example
  25. \verbatim
  26. $ rosrun camera_calibration cal.py right:=/my_stereo/right/image_raw left:=/my_stereo/left/image_raw left_camera:=/my_stereo/left right_camera:=/my_stereo/right
  27. \endverbatim
  28. \subsubsection topics ROS topics
  29. Subscribes to:
  30. - \b "left": [sensor_msgs/Image] left raw image topic, for stereo cameras
  31. - \b "right": [sensor_msgs/Image] left raw image topic, for stereo cameras
  32. - \b "image": [sensor_msgs/Image] raw image topic, for monocular cameras
  33. Makes service calls to:
  34. \subsubsection services ROS services
  35. - \b "foo_service": [std_srvs/FooType] description of foo_service
  36. - \b "camera/set_camera_info": [sensor_msgs/SetCameraInfo] node of the camera for monocular
  37. - \b "left_camera/set_camera_info": [sensor_msgs/SetCameraInfo] node of the left stereo camera
  38. - \b "right_camera/set_camera_info": [sensor_msgs/SetCameraInfo] node of the left stereo camera
  39. <!-- END: copy for each node -->
  40. */