ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
As you're using a custom message, you can't use the built-in displays, as they don't work with your message, only with the standard message set.
I believe you have two options:
PointCloud2
display)PointCloud2
into separate messages and then republish thoseOption 2 would incur lots of overhead, but would allow the use of the built-in display plugin for PointCloud2
.
Option 1 would require you to write your own RViz display plugin, which comes with its own form of overhead.