A Class which provides coordinate transforms between any two frames in a system. More...
#include <buffer_core.h>
Classes | |
struct | RemoveRequestByCallback |
struct | RemoveRequestByID |
struct | TransformableRequest |
Public Types | |
typedef boost::function< void(TransformableRequestHandle request_handle, const std::string &target_frame, const std::string &source_frame, ros::Time time, TransformableResult result)> | TransformableCallback |
Public Member Functions | |
TransformableCallbackHandle | addTransformableCallback (const TransformableCallback &cb) |
Internal use only. | |
TransformableRequestHandle | addTransformableRequest (TransformableCallbackHandle handle, const std::string &target_frame, const std::string &source_frame, ros::Time time) |
Internal use only. | |
std::string | allFramesAsString () const |
A way to see what frames have been cached Useful for debugging. | |
std::string | allFramesAsYAML () const |
A way to see what frames have been cached in yaml format Useful for debugging tools. | |
BufferCore (ros::Duration cache_time_=ros::Duration(DEFAULT_CACHE_TIME)) | |
void | cancelTransformableRequest (TransformableRequestHandle handle) |
Internal use only. | |
bool | canTransform (const std::string &target_frame, const std::string &source_frame, const ros::Time &time, std::string *error_msg=NULL) const |
Lookup the twist of the tracking_frame with respect to the observation frame in the reference_frame using the reference point. | |
bool | canTransform (const std::string &target_frame, const ros::Time &target_time, const std::string &source_frame, const ros::Time &source_time, const std::string &fixed_frame, std::string *error_msg=NULL) const |
Test if a transform is possible. | |
void | clear () |
Clear all data. | |
geometry_msgs::TransformStamped | lookupTransform (const std::string &target_frame, const std::string &source_frame, const ros::Time &time) const |
Get the transform between two frames by frame ID. | |
geometry_msgs::TransformStamped | lookupTransform (const std::string &target_frame, const ros::Time &target_time, const std::string &source_frame, const ros::Time &source_time, const std::string &fixed_frame) const |
Get the transform between two frames by frame ID assuming fixed frame. | |
void | removeTransformableCallback (TransformableCallbackHandle handle) |
Internal use only. | |
bool | setTransform (const geometry_msgs::TransformStamped &transform, const std::string &authority, bool is_static=false) |
Add transform information to the tf data structure. | |
virtual | ~BufferCore (void) |
Static Public Attributes | |
static const double | DEFAULT_CACHE_TIME = 10.0 |
The default amount of time to cache data in seconds. | |
static const int64_t | DEFAULT_MAX_EXTRAPOLATION_DISTANCE = 0ULL |
The default amount of time to extrapolate. | |
static const uint32_t | MAX_GRAPH_DEPTH = 1000UL |
The default amount of time to cache data in seconds. | |
Private Types | |
typedef boost::unordered_map < std::string, CompactFrameID > | M_StringToCompactFrameID |
A map from string frame ids to CompactFrameID. | |
typedef boost::unordered_map < TransformableCallbackHandle, TransformableCallback > | M_TransformableCallback |
typedef std::vector < TimeCacheInterface * > | V_TimeCacheInterface |
The pointers to potential frames that the tree can be made of. The frames will be dynamically allocated at run time when set the first time. | |
typedef std::vector < TransformableRequest > | V_TransformableRequest |
Private Member Functions | |
std::string | allFramesAsStringNoLock () const |
A way to see what frames have been cached Useful for debugging. Use this call internally. | |
TimeCacheInterface * | allocateFrame (CompactFrameID cfid, bool is_static) |
bool | canTransformInternal (CompactFrameID target_id, CompactFrameID source_id, const ros::Time &time, std::string *error_msg) const |
bool | canTransformNoLock (CompactFrameID target_id, CompactFrameID source_id, const ros::Time &time, std::string *error_msg) const |
void | createConnectivityErrorString (CompactFrameID source_frame, CompactFrameID target_frame, std::string *out) const |
TimeCacheInterface * | getFrame (CompactFrameID c_frame_id) const |
An accessor to get a frame, which will throw an exception if the frame is no there. | |
int | getLatestCommonTime (CompactFrameID target_frame, CompactFrameID source_frame, ros::Time &time, std::string *error_string) const |
Return the latest rostime which is common across the spanning set zero if fails to cross. | |
CompactFrameID | lookupFrameNumber (const std::string &frameid_str) const |
String to number for frame lookup with dynamic allocation of new frames. | |
const std::string & | lookupFrameString (CompactFrameID frame_id_num) const |
Number to string frame lookup may throw LookupException if number invalid. | |
CompactFrameID | lookupOrInsertFrameNumber (const std::string &frameid_str) |
String to number for frame lookup with dynamic allocation of new frames. | |
void | testTransformableRequests () |
CompactFrameID | validateFrameId (const char *function_name_arg, const std::string &frame_id) const |
template<typename F > | |
int | walkToTopParent (F &f, ros::Time time, CompactFrameID target_id, CompactFrameID source_id, std::string *error_string) const |
bool | warnFrameId (const char *function_name_arg, const std::string &frame_id) const |
Private Attributes | |
ros::Duration | cache_time_ |
How long to cache transform history. | |
std::map< CompactFrameID, std::string > | frame_authority_ |
A map to lookup the most recent authority for a given frame. | |
boost::mutex | frame_mutex_ |
A mutex to protect testing and allocating new frames on the above vector. | |
M_StringToCompactFrameID | frameIDs_ |
std::vector< std::string > | frameIDs_reverse |
A map from CompactFrameID frame_id_numbers to string for debugging and output. | |
V_TimeCacheInterface | frames_ |
std::vector< P_TimeAndFrameID > | lct_cache_ |
M_TransformableCallback | transformable_callbacks_ |
uint32_t | transformable_callbacks_counter_ |
boost::mutex | transformable_callbacks_mutex_ |
V_TransformableRequest | transformable_requests_ |
uint64_t | transformable_requests_counter_ |
boost::mutex | transformable_requests_mutex_ |
A Class which provides coordinate transforms between any two frames in a system.
This class provides a simple interface to allow recording and lookup of relationships between arbitrary frames of the system.
libTF assumes that there is a tree of coordinate frame transforms which define the relationship between all coordinate frames. For example your typical robot would have a transform from global to real world. And then from base to hand, and from base to head. But Base to Hand really is composed of base to shoulder to elbow to wrist to hand. libTF is designed to take care of all the intermediate steps for you.
Internal Representation libTF will store frames with the parameters necessary for generating the transform into that frame from it's parent and a reference to the parent frame. Frames are designated using an std::string 0 is a frame without a parent (the top of a tree) The positions of frames over time must be pushed in.
All function calls which pass frame ids can potentially throw the exception tf::LookupException
Definition at line 84 of file buffer_core.h.
typedef boost::unordered_map<std::string, CompactFrameID> tf2::BufferCore::M_StringToCompactFrameID [private] |
A map from string frame ids to CompactFrameID.
Definition at line 251 of file buffer_core.h.
typedef boost::unordered_map<TransformableCallbackHandle, TransformableCallback> tf2::BufferCore::M_TransformableCallback [private] |
Definition at line 264 of file buffer_core.h.
typedef boost::function<void(TransformableRequestHandle request_handle, const std::string& target_frame, const std::string& source_frame, ros::Time time, TransformableResult result)> tf2::BufferCore::TransformableCallback |
Definition at line 220 of file buffer_core.h.
typedef std::vector<TimeCacheInterface*> tf2::BufferCore::V_TimeCacheInterface [private] |
The pointers to potential frames that the tree can be made of. The frames will be dynamically allocated at run time when set the first time.
Definition at line 244 of file buffer_core.h.
typedef std::vector<TransformableRequest> tf2::BufferCore::V_TransformableRequest [private] |
Definition at line 279 of file buffer_core.h.
tf2::BufferCore::BufferCore | ( | ros::Duration | cache_time_ = ros::Duration(DEFAULT_CACHE_TIME) | ) |
Constructor
interpolating | Whether to interpolate, if this is false the closest value will be returned |
cache_time | How long to keep a history of transforms in nanoseconds |
Definition at line 173 of file buffer_core.cpp.
tf2::BufferCore::~BufferCore | ( | void | ) | [virtual] |
Definition at line 183 of file buffer_core.cpp.
TransformableCallbackHandle tf2::BufferCore::addTransformableCallback | ( | const TransformableCallback & | cb | ) |
Internal use only.
Definition at line 1043 of file buffer_core.cpp.
TransformableRequestHandle tf2::BufferCore::addTransformableRequest | ( | TransformableCallbackHandle | handle, |
const std::string & | target_frame, | ||
const std::string & | source_frame, | ||
ros::Time | time | ||
) |
Internal use only.
Definition at line 1083 of file buffer_core.cpp.
std::string tf2::BufferCore::allFramesAsString | ( | ) | const |
A way to see what frames have been cached Useful for debugging.
Definition at line 781 of file buffer_core.cpp.
std::string tf2::BufferCore::allFramesAsStringNoLock | ( | ) | const [private] |
A way to see what frames have been cached Useful for debugging. Use this call internally.
regular transforms
Definition at line 787 of file buffer_core.cpp.
std::string tf2::BufferCore::allFramesAsYAML | ( | ) | const |
A way to see what frames have been cached in yaml format Useful for debugging tools.
Definition at line 990 of file buffer_core.cpp.
TimeCacheInterface * tf2::BufferCore::allocateFrame | ( | CompactFrameID | cfid, |
bool | is_static | ||
) | [private] |
Definition at line 277 of file buffer_core.cpp.
Internal use only.
Definition at line 1152 of file buffer_core.cpp.
bool tf2::BufferCore::canTransform | ( | const std::string & | target_frame, |
const std::string & | source_frame, | ||
const ros::Time & | time, | ||
std::string * | error_msg = NULL |
||
) | const |
Lookup the twist of the tracking_frame with respect to the observation frame in the reference_frame using the reference point.
tracking_frame | The frame to track |
observation_frame | The frame from which to measure the twist |
reference_frame | The reference frame in which to express the twist |
reference_point | The reference point with which to express the twist |
reference_point_frame | The frame_id in which the reference point is expressed |
time | The time at which to get the velocity |
duration | The period over which to average |
This will compute the average velocity on the interval (time - duration/2, time+duration/2). If that is too close to the most recent reading, in which case it will shift the interval up to duration/2 to prevent extrapolation.
Possible exceptions tf2::LookupException, tf2::ConnectivityException, tf2::ExtrapolationException, tf2::InvalidArgumentException
New in geometry 1.1lookup the twist of the tracking frame with respect to the observational frame
This is a simplified version of lookupTwist with it assumed that the reference point is the origin of the tracking frame, and the reference frame is the observation frame.
Possible exceptions tf2::LookupException, tf2::ConnectivityException, tf2::ExtrapolationException, tf2::InvalidArgumentException
New in geometry 1.1Test if a transform is possible
target_frame | The frame into which to transform |
source_frame | The frame from which to transform |
time | The time at which to transform |
error_msg | A pointer to a string which will be filled with why the transform failed, if not NULL |
Definition at line 687 of file buffer_core.cpp.
bool tf2::BufferCore::canTransform | ( | const std::string & | target_frame, |
const ros::Time & | target_time, | ||
const std::string & | source_frame, | ||
const ros::Time & | source_time, | ||
const std::string & | fixed_frame, | ||
std::string * | error_msg = NULL |
||
) | const |
Test if a transform is possible.
target_frame | The frame into which to transform |
target_time | The time into which to transform |
source_frame | The frame from which to transform |
source_time | The time from which to transform |
fixed_frame | The frame in which to treat the transform as constant in time |
error_msg | A pointer to a string which will be filled with why the transform failed, if not NULL |
Definition at line 703 of file buffer_core.cpp.
bool tf2::BufferCore::canTransformInternal | ( | CompactFrameID | target_id, |
CompactFrameID | source_id, | ||
const ros::Time & | time, | ||
std::string * | error_msg | ||
) | const [private] |
Definition at line 680 of file buffer_core.cpp.
bool tf2::BufferCore::canTransformNoLock | ( | CompactFrameID | target_id, |
CompactFrameID | source_id, | ||
const ros::Time & | time, | ||
std::string * | error_msg | ||
) | const [private] |
Definition at line 658 of file buffer_core.cpp.
void tf2::BufferCore::clear | ( | ) |
Clear all data.
Definition at line 188 of file buffer_core.cpp.
void tf2::BufferCore::createConnectivityErrorString | ( | CompactFrameID | source_frame, |
CompactFrameID | target_frame, | ||
std::string * | out | ||
) | const [private] |
Definition at line 770 of file buffer_core.cpp.
tf2::TimeCacheInterface * tf2::BufferCore::getFrame | ( | CompactFrameID | c_frame_id | ) | const [private] |
An accessor to get a frame, which will throw an exception if the frame is no there.
frame_number | The frameID of the desired Reference Frame |
This is an internal function which will get the pointer to the frame associated with the frame id Possible Exception: tf::LookupException
Definition at line 718 of file buffer_core.cpp.
int tf2::BufferCore::getLatestCommonTime | ( | CompactFrameID | target_frame, |
CompactFrameID | source_frame, | ||
ros::Time & | time, | ||
std::string * | error_string | ||
) | const [private] |
Return the latest rostime which is common across the spanning set zero if fails to cross.
Definition at line 828 of file buffer_core.cpp.
CompactFrameID tf2::BufferCore::lookupFrameNumber | ( | const std::string & | frameid_str | ) | const [private] |
String to number for frame lookup with dynamic allocation of new frames.
Definition at line 728 of file buffer_core.cpp.
const std::string & tf2::BufferCore::lookupFrameString | ( | CompactFrameID | frame_id_num | ) | const [private] |
Number to string frame lookup may throw LookupException if number invalid.
Definition at line 758 of file buffer_core.cpp.
CompactFrameID tf2::BufferCore::lookupOrInsertFrameNumber | ( | const std::string & | frameid_str | ) | [private] |
String to number for frame lookup with dynamic allocation of new frames.
Definition at line 741 of file buffer_core.cpp.
geometry_msgs::TransformStamped tf2::BufferCore::lookupTransform | ( | const std::string & | target_frame, |
const std::string & | source_frame, | ||
const ros::Time & | time | ||
) | const |
Get the transform between two frames by frame ID.
target_frame | The frame to which data should be transformed |
source_frame | The frame where the data originated |
time | The time at which the value of the transform is desired. (0 will get the latest) |
Possible exceptions tf2::LookupException, tf2::ConnectivityException, tf2::ExtrapolationException, tf2::InvalidArgumentException
Definition at line 507 of file buffer_core.cpp.
geometry_msgs::TransformStamped tf2::BufferCore::lookupTransform | ( | const std::string & | target_frame, |
const ros::Time & | target_time, | ||
const std::string & | source_frame, | ||
const ros::Time & | source_time, | ||
const std::string & | fixed_frame | ||
) | const |
Get the transform between two frames by frame ID assuming fixed frame.
target_frame | The frame to which data should be transformed |
target_time | The time to which the data should be transformed. (0 will get the latest) |
source_frame | The frame where the data originated |
source_time | The time at which the source_frame should be evaluated. (0 will get the latest) |
fixed_frame | The frame in which to assume the transform is constant in time. |
Possible exceptions tf2::LookupException, tf2::ConnectivityException, tf2::ExtrapolationException, tf2::InvalidArgumentException
Definition at line 550 of file buffer_core.cpp.
Internal use only.
Definition at line 1069 of file buffer_core.cpp.
bool tf2::BufferCore::setTransform | ( | const geometry_msgs::TransformStamped & | transform, |
const std::string & | authority, | ||
bool | is_static = false |
||
) |
Add transform information to the tf data structure.
transform | The transform to store |
authority | The source of the information for this transform |
is_static | Record this transform as a static transform. It will be good across all time. (This cannot be changed after the first call.) |
Definition at line 204 of file buffer_core.cpp.
void tf2::BufferCore::testTransformableRequests | ( | ) | [private] |
Definition at line 1163 of file buffer_core.cpp.
CompactFrameID tf2::BufferCore::validateFrameId | ( | const char * | function_name_arg, |
const std::string & | frame_id | ||
) | const [private] |
Definition at line 146 of file buffer_core.cpp.
int tf2::BufferCore::walkToTopParent | ( | F & | f, |
ros::Time | time, | ||
CompactFrameID | target_id, | ||
CompactFrameID | source_id, | ||
std::string * | error_string | ||
) | const [private] |
Definition at line 299 of file buffer_core.cpp.
bool tf2::BufferCore::warnFrameId | ( | const char * | function_name_arg, |
const std::string & | frame_id | ||
) | const [private] |
Definition at line 125 of file buffer_core.cpp.
ros::Duration tf2::BufferCore::cache_time_ [private] |
How long to cache transform history.
Definition at line 260 of file buffer_core.h.
const double tf2::BufferCore::DEFAULT_CACHE_TIME = 10.0 [static] |
The default amount of time to cache data in seconds.
Definition at line 88 of file buffer_core.h.
const int64_t tf2::BufferCore::DEFAULT_MAX_EXTRAPOLATION_DISTANCE = 0ULL [static] |
The default amount of time to extrapolate.
Definition at line 90 of file buffer_core.h.
std::map<CompactFrameID, std::string> tf2::BufferCore::frame_authority_ [private] |
A map to lookup the most recent authority for a given frame.
Definition at line 256 of file buffer_core.h.
boost::mutex tf2::BufferCore::frame_mutex_ [mutable, private] |
A mutex to protect testing and allocating new frames on the above vector.
Definition at line 248 of file buffer_core.h.
Definition at line 252 of file buffer_core.h.
std::vector<std::string> tf2::BufferCore::frameIDs_reverse [private] |
A map from CompactFrameID frame_id_numbers to string for debugging and output.
Definition at line 254 of file buffer_core.h.
V_TimeCacheInterface tf2::BufferCore::frames_ [private] |
Definition at line 245 of file buffer_core.h.
std::vector<P_TimeAndFrameID> tf2::BufferCore::lct_cache_ [mutable, private] |
Definition at line 262 of file buffer_core.h.
const uint32_t tf2::BufferCore::MAX_GRAPH_DEPTH = 1000UL [static] |
The default amount of time to cache data in seconds.
Definition at line 89 of file buffer_core.h.
Definition at line 265 of file buffer_core.h.
uint32_t tf2::BufferCore::transformable_callbacks_counter_ [private] |
Definition at line 266 of file buffer_core.h.
boost::mutex tf2::BufferCore::transformable_callbacks_mutex_ [private] |
Definition at line 267 of file buffer_core.h.
Definition at line 280 of file buffer_core.h.
uint64_t tf2::BufferCore::transformable_requests_counter_ [private] |
Definition at line 282 of file buffer_core.h.
boost::mutex tf2::BufferCore::transformable_requests_mutex_ [private] |
Definition at line 281 of file buffer_core.h.