Which data types does tf use?
I want to know what datatypes tf can work with natively.
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
I want to know what datatypes tf can work with natively.
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:
tf::Stamped<tf::Pose>
- A templated stamped representation of the underlying Bullet datatype btTransform. tf::Stamped<tf::Point>
- A stamped version of the underlying Bullet datatype btVector3. tf::Stamped<tf::Quaternion>
- A stamped version of the underlying Bullet datatype btQuaternion. Vector - tf can transform a free vector using the tf::transformVector function. The tranformVector function can operate on:
tf::Stamped<tf::Vector3>
- A stamped version of the underlying Bullet datatype btVector. PointCloud - tf can transform point clouds directly using the tf::transformPointCloud function. This function operates on:
Asked: 2011-02-14 10:59:45 -0600
Seen: 1,608 times
Last updated: Feb 14 '11
rosbag play & tf static_transform_publisher
Why do I see negative average delay in tf_monitor?
Why don't frame_ids use ROS namespaces?
What is the tf threading model?
how can I modify the value of a transform when playing back a bag file?
Corrected Odometry from GMapping / Karto?