ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
To see pointcloud on rviz u need to define transform. According to ur question, I guess pointcloud is getting published in camera frame. Now either in rviz u can make ur camera frame as fixed frame or define a fix transform between camera frame and fixed frame like "/map". To define a fix frame u can use following terminal command.
rosrun tf static_transform_publisher 0 0 0 0 0 0 map camera_frame 100
Hope this helps