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

Transform not working with rosbag

asked 2015-03-03 10:42:07 -0500

RosFan19 gravatar image

updated 2015-03-03 12:55:50 -0500

gvdhoorn gravatar image

I have followed the tutorial to create a tf broadcaster.

Here is the code:

   void poseCallback(const sensor_msgs::PointCloud2::ConstPtr& msg){
     static tf::TransformBroadcaster br;
     tf::Transform transform;
     transform.setOrigin( tf::Vector3(0.0, 0.0, 0.0) );
     tf::Quaternion q;
     q.setRPY(0, 0, 0);
     transform.setRotation(q);
     br.sendTransform(tf::StampedTransform(transform, ros::Time::now(), "xtion_link", "camera_link"));
   }


  int main(int argc, char **argv)
  {
    ros::init(argc, argv, "subscribe_and_publish");

    ros::NodeHandle node;
    ros::Subscriber sub = node.subscribe("/camera/depth/points", 10, &poseCallback);

    ros::Rate loop_rate(10);

    while (ros::ok()) {

      ros::spinOnce();
      loop_rate.sleep();

    }

    return 0;
  }

The problem is that the transform does not seem to work, properly atleast. When I run the program and the rosbag file and use rosrun tf view_frames I get a nice tree with all the components in it. However the broadcast time between "xtion_link" and "camera_link" is around 4 seconds while time between other broadcasters is around 0.2 seconds.

If i try to visualize the whole thing in rviz and set xtion_link as fixed frame, it shows that all transforms are OK, except the ones below camera_link. If I set camera_link as fixed frame, it shows that xtion_link is OK and others below it but it says that there is no transform from broadcasters above xtion_link.

I don't know if it's caused by the rosbag file or a programmatic error. Rosbag works perfectly in other aspects.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2015-03-03 12:30:57 -0500

Tom Moore gravatar image

A few things:

  1. Would your use case be better served by static_transform_publisher?
  2. If not, do you have the parameter use_sim_time set to true before you start your node?
  3. In your call to sendTransform, try this:

    br.sendTransform(tf::StampedTransform(transform, msg->header.stamp, "xtion_link", "camera_link"));

edit flag offensive delete link more

Question Tools

Stats

Asked: 2015-03-03 10:42:07 -0500

Seen: 1,023 times

Last updated: Mar 03 '15