transform_manager.h
Go to the documentation of this file.
1 // *****************************************************************************
2 //
3 // Copyright (c) 2014, Southwest Research Institute® (SwRI®)
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of Southwest Research Institute® (SwRI®) nor the
14 // names of its contributors may be used to endorse or promote products
15 // derived from this software without specific prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 //
28 // *****************************************************************************
29 
30 #ifndef TRANSFORM_UTIL_TRANSFORM_MANAGER_H_
31 #define TRANSFORM_UTIL_TRANSFORM_MANAGER_H_
32 
33 #include <map>
34 #include <string>
35 
36 #include <boost/make_shared.hpp>
37 #include <boost/shared_ptr.hpp>
38 
39 #include <tf/transform_datatypes.h>
40 #include <tf/transform_listener.h>
41 
45 
46 namespace swri_transform_util
47 {
48  typedef std::map<std::string, boost::shared_ptr<Transformer> > TransformerMap;
49  typedef std::map<std::string, TransformerMap> SourceTargetMap;
50 
63  {
64  public:
67 
77  = boost::make_shared<tf::TransformListener>());
78 
101  bool GetTransform(
102  const std::string& target_frame,
103  const std::string& source_frame,
104  const ros::Time& time,
105  Transform& transform) const;
106 
125  bool GetTransform(
126  const std::string& target_frame,
127  const std::string& source_frame,
128  Transform& transform) const;
129 
142  bool SupportsTransform(
143  const std::string& target_frame,
144  const std::string& source_frame) const;
145 
165  bool GetTransform(
166  const std::string& target_frame,
167  const std::string& source_frame,
168  const ros::Time& time,
169  tf::StampedTransform& transform) const;
170 
186  bool GetTransform(
187  const std::string& target_frame,
188  const std::string& source_frame,
189  tf::StampedTransform& transform) const;
190 
212  bool GetTransform(
213  const std::string& target_frame,
214  const std::string& source_frame,
215  const ros::Time& time,
216  const ros::Duration& timeout,
217  tf::StampedTransform& transform) const;
218 
236  bool GetTransform(
237  const std::string& target_frame,
238  const std::string& source_frame,
239  const ros::Duration& timeout,
240  tf::StampedTransform& transform) const;
241 
246  const LocalXyWgs84UtilPtr& LocalXyUtil() const;
247 
248  private:
250 
252 
253  SourceTargetMap transformers_;
254  };
256 }
257 
258 #endif // TRANSFORM_UTIL_TRANSFORM_MANAGER_H_
An abstraction of the tf::Transform class to support transforms in addition to the rigid transforms s...
Definition: transform.h:105
void Initialize(boost::shared_ptr< tf::TransformListener > tf=boost::make_shared< tf::TransformListener >())
Initialize the TransformManager with a tf::TransformListener.
std::map< std::string, boost::shared_ptr< Transformer > > TransformerMap
bool SupportsTransform(const std::string &target_frame, const std::string &source_frame) const
Check whether the TransformManager supports transforms from source_frame to target_frame.
Wrapper around tf::TransformListener to support non-TF transforms.
const LocalXyWgs84UtilPtr & LocalXyUtil() const
LocalXyUtil exposes the private instance of LocalXyWgs84Util.
boost::shared_ptr< TransformManager > TransformManagerPtr
bool GetTransform(const std::string &target_frame, const std::string &source_frame, const ros::Time &time, Transform &transform) const
Get the Transform between two frames at a specified time.
boost::shared_ptr< tf::TransformListener > tf_listener_
std::map< std::string, TransformerMap > SourceTargetMap


swri_transform_util
Author(s): Marc Alban
autogenerated on Tue Apr 6 2021 02:50:46