ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version
Fixed Frame : map 
Warn Fixed Frame: No tf data.  
Actual error: Fixed Frame [map] does not exist

keypoints.header.frame_id = "base_link";

You tell RVIZ to show all data in the map-frame, but you publish in "base_link" without telling RVIZ how these frame are connected ("no tf data"). So either publish the transform base_link <-> map on /tf or set the Fixed Frame to base_link.

Fixed Frame : map Warn Fixed Frame: No tf data.
Actual error: Fixed Frame [map] does not exist exist

keypoints.header.frame_id = "base_link";

You tell RVIZ to show all data in the map-frame, but you publish in "base_link" without telling RVIZ how these frame are connected ("no tf data"). So either publish the transform base_link <-> map on /tf or set the Fixed Frame to base_link.

(Welcome to answers.ros :) Good first question, you provided all data needed to find the error)