ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Your error is that you've switched the order of the arguments between your callback signature and your template in message_filters::TimeSynchronizer
. In the callback, your first argument is of type geometry_msgs::PointStampedConstPtr&
, but in the template it is of type sensor_msgs::Imu
. If you switch one of these it should work.