-
Notifications
You must be signed in to change notification settings - Fork 728
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Tutorials | ||
========= | ||
|
||
.. _`Remapping camera_info Topics`: | ||
|
||
Remapping camera_info Topics | ||
---------------------------- | ||
When a ``camera_info`` topic is needed, an image_transport camera subscriber | ||
is typically used. ROS convention for naming ``camera_info`` topics is: | ||
|
||
* **camera/image** - an image in namespace ``camera``. | ||
* **camera/camera_info** - the associated camera info. | ||
|
||
So if a node subscribes to a topic called ``image``, and the user remaps this | ||
to ``my_camera/image``, then the associated camera info will be automatically | ||
remapped to ``mycamera/camera_info``. | ||
|
||
Most ROS 2 camera drivers will follow the convention, but occasionally they do | ||
not. In this case, you will have to manually remap the camera_info - but due | ||
to the way that ROS 2 remapping works you have to use the fully resolved | ||
camera info topic. An example: | ||
|
||
* ``image`` is remapped to ``my_camera/image``. | ||
* The fully resolved name for the camera info is now ``my_camera/camera_info``. | ||
* If your camera driver actually publishes ``another_ns/camera_info``, then | ||
you would have to remap ``my_camera/camera_info`` to ``another_ns/camera_info``. |