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

Rosbag API and TF transforming tools

asked 2017-04-12 04:32:57 -0500

Mehdi. gravatar image

updated 2017-04-12 04:50:32 -0500

I am currently writing some tools in Python to visually judge the quality of the odometry. For this I record a bag with odom topic as well as tf, lidar scans and wheel encoders.

Then I loop over the bag data, read all poses from odom and project the lidar scans to cartesian coordinates in the odom frame using the odom pose with the closest timestamp.

My odom is published at 100 Hz while the lidar scans are published at around 10 Hz so in worst case the time offset will be 5ms.

I then plot all lidar scans for all poses and see how well they overlap (Similar to setting decay_time of lidar scans to a very big value in Rviz)

Here is the result:

image description

Compared to Rviz (with big decay time)

image description

I noticed that my plot and the data displayed in Rviz (with a decay time covering all the length of the bag while doing rosbag play) looks slightly different.

Especially when zooming on known features, for example the half circle:

My plot: image description

Rviz: image description

The difference becomes very clear.

When looking in the source code of Rviz I saw that it just transforms the lidar scan to a pointcloud and then uses TF to transform it to the correct frame. My question is how to do such a thing without having to play the bag, but only using the rosbag API, on Python? I suspect using the closest timestamp to be the source of error. Does TF interpolate to get the exact pose?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2017-04-12 07:22:36 -0500

If I remember correctly, tf does interpolate.

In C++ you could create a tf2::BufferCore and use its setTransform method, then query it as usual. Maybe you can do something similar in python?

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-04-12 04:32:57 -0500

Seen: 1,012 times

Last updated: Apr 12 '17