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

`tf static_transform_publisher` removes link instead of linking two tf trees

asked 2019-04-26 17:13:20 -0500

ceres gravatar image

updated 2019-04-26 17:44:45 -0500

When using static_transform_publisher, attempting to link to coordinate systems via a common frame the publisher removes the link from one tree and places it in the other. This happens both with tf and tf2_ros, and when execucted from the command line as well as from a launch file.

See the following example where ar_marker_master and ar_marker_0 refer to the same point in world space. Without linking the two using tf, the tf_tree looks like this:

image description

Then, we can attempt to link the two frames using:

rosrun tf static_transform_publisher 0 0 0 0 0 0 /ar_marker_master /ar_marker_0 1000

Where the resulting tree looks like this:

image description

This successfully links ar_marker_master with ar_marker_0, but notice that the link ar_marker_0 has been removed from the tree with camera_link. Shouldn't this join the two trees?

For more context, if I run rosrun tf tf_echo /camera_color_optical_frame /ar_marker_0 to view the transformation between camera_color_optical_frame and ar_marker_0 before the adding the link, I can see:

At time 1556317303.088 - Translation: [-0.380, 0.338, 1.264] - Rotation: in Quaternion [0.966, 0.072, -0.068, 0.237] in RPY (radian) [2.669, 0.166, 0.109] in RPY (degree) [152.939, 9.504, 6.273]

But after running static_transform_publisher:

Exception thrown:Could not find a connection between 'camera_color_optical_frame' and 'ar_marker_0'

Where did the link go? And, if this is not the proper way to join two trees, how should I perform the transform to join the two coordinate systems?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2019-04-26 17:38:17 -0500

tfoote gravatar image

updated 2019-04-26 17:49:25 -0500

The transforms are stored in a tree, every frame can have at most one parent. Thus when you publish a new transform like that you are effectively reattaching the transform to the other branch of the tree. If you want to connect two disconnected trees you have to connect them at the root.

If you have something like an ar tag. You can compute the transform from camera_link to ar_marker0 Tca through the camera. Then if you know the transfrom from the world to the ar_marker0 (Twa) you publsh the transform from world to camera_link (Twc) as the as known transform minus the computed transform. Twc = Twa - Tca This is just Twc + Tca == Twa solving for Twc which is the missing link in your tree.

edit flag offensive delete link more

Comments

That makes sense. So, if I understand correctly, in your example, Twa should be the output of rosrun tf tf_echo /world /ar_marker_master and Tca should be the output of rosrun tf tf_echo /camera_link /ar_marker_0, right?

Then using simple linear algebra, Twa = [0.400, 0.150, 0.000, 0.000, 0.000, 0.000, 1.000]-[1.261, 0.403, -0.333, 0.371, -0.358, -0.672, 0.531].

Using that result, rosrun tf static_transform_publisher -0.858 -0.259 0.315 0.371 -0.358 -0.672 1.531 /camera_link /world 1000 should give me the link I'm looking for?

ceres gravatar image ceres  ( 2019-04-26 20:34:20 -0500 )edit

Using this method aligns the two frames in the XYZ coordinates, but the rotation is off.

ceres gravatar image ceres  ( 2019-04-29 11:12:11 -0500 )edit

That sounds like a small math error, missing a component at one step possiblly.

tfoote gravatar image tfoote  ( 2019-04-29 11:39:25 -0500 )edit

So the method is correct then? Does it matter if I use quaternions or radians for the linear transformation? In the example I gave, the first transform has no rotation, so I don't understand how there could be a missing component or math error.

ceres gravatar image ceres  ( 2019-04-29 11:56:28 -0500 )edit
1

If you're just doing a vector subtraction that won't work. You need to apply the transform math in sequence appropriately. The negative sign is just a math shorthand for left multiplication of the inverted full 3D matrix.

tfoote gravatar image tfoote  ( 2019-04-29 12:24:20 -0500 )edit

Thanks for the help. I'll see if I can figure out how to do that with a 3D matrix. I'm surprised ROS doesn't have a built in method for this though.

ceres gravatar image ceres  ( 2019-04-29 12:32:36 -0500 )edit

There is no need to reproduce this functionality in ROS. This functionality is provided by several libraries that we built on top of including bullet, eigen, and kdl.

tfoote gravatar image tfoote  ( 2019-04-29 12:40:21 -0500 )edit

I understand the point you're making, but I suppose I assumed that my original question of linking two child frames should be as straightforward as linking two parent frames since an analytical answer exists.

ceres gravatar image ceres  ( 2019-04-29 13:29:10 -0500 )edit

Question Tools

3 followers

Stats

Asked: 2019-04-26 17:13:20 -0500

Seen: 1,395 times

Last updated: Apr 26 '19