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

Which data types does tf use?

asked 2011-02-14 10:59:45 -0500

tfoote gravatar image

I want to know what datatypes tf can work with natively.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
14

answered 2011-02-14 11:21:04 -0500

Tully gravatar image

updated 2011-02-14 11:23:59 -0500

tfoote gravatar image

From the tf wiki page on tf/data types

tf can be used either with the underlying Bullet transform types or with the transform types available in the geometry_msgs package. Since tf deals with coordinate frames, every datatype that tf uses needs to be stamped, i.e. extra information is added to the datatype to represent the name of the frame in which it lives and a timestamp. The timestamp typically represents the time at which the data was created/ last valid.

tf can directly operate on the following messages or Bullet datatypes:

  • Pose - tf can transform poses by using the tf::transformPose function. The transformPose function can operate on:
    • geometry_msgs/PoseStamped - A stamped representation of a pose expressed in a particular frame
    • tf::Stamped<tf::Pose> - A templated stamped representation of the underlying Bullet datatype btTransform.
  • Position - tf can transform positions (or points) using the tf::transformPoint function. The transformPoint function can operate on:
  • Rotation - tf can transform a rotation using the tf::transformQuaternion function. The transformQuaternion function can operate on:
  • Vector - tf can transform a free vector using the tf::transformVector function. The tranformVector function can operate on:

  • PointCloud - tf can transform point clouds directly using the tf::transformPointCloud function. This function operates on:

edit flag offensive delete link more

Comments

2

Wow!! , the 1st question on Ros answers (:

chrissunny94 gravatar image chrissunny94  ( 2018-06-28 09:37:07 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2011-02-14 10:59:45 -0500

Seen: 1,557 times

Last updated: Feb 14 '11