tf_visual_tools.h
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2017, PickNik Consulting
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of the Univ of CO, Boulder nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *********************************************************************/
34 
35 /* Author: Dave Coleman <dave@dav.ee>
36  Desc: Helps debug and visualize transforms via the TF infrastructure
37  Note: We shouldn't have to publish the transforms at interval since they are static, but we do
38  because of https://github.com/ros/geometry_experimental/issues/108
39 */
40 
41 #ifndef RVIZ_VISUAL_TOOLS_TF_VISUAL_TOOLS_H
42 #define RVIZ_VISUAL_TOOLS_TF_VISUAL_TOOLS_H
43 
44 // C++
45 #include <vector>
46 #include <string>
47 
48 // ROS
49 #include <ros/ros.h>
50 #include <geometry_msgs/TransformStamped.h>
51 
52 // Eigen
53 #include <Eigen/Geometry>
54 
56 
57 // namespace tf2_ros
58 // {
59 // class StaticTransformBroadcaster;
60 // };
61 
62 namespace rviz_visual_tools
63 {
65 {
66 public:
71  explicit TFVisualTools(double loop_hz = 2);
72 
77  bool publishTransform(const Eigen::Affine3d& transform, const std::string& from_frame, const std::string& to_frame);
78 
85 
86 private:
87  // A shared node handle
89 
90  // Send tf messages
92 
93  // Separate thread to publish transforms
95 
96  // Collect the transfroms
97  std::vector<geometry_msgs::TransformStamped> transforms_;
98 }; // end class
99 
100 // Create boost pointers for this class
103 
104 } // namespace rviz_visual_tools
105 
106 #endif // RVIZ_VISUAL_TOOLS_TF_VISUAL_TOOLS_H
tf2_ros::TransformBroadcaster tf_pub_
bool publishTransform(const Eigen::Affine3d &transform, const std::string &from_frame, const std::string &to_frame)
Visualize transforms in Rviz, etc.
std::vector< geometry_msgs::TransformStamped > transforms_
void publishAllTransforms(const ros::TimerEvent &e)
At a certain frequency update the tf transforms that we are tracking This is called internally by a c...
TFVisualTools(double loop_hz=2)
Constructor.
boost::shared_ptr< const TFVisualTools > TFVisualToolsConstPtr
boost::shared_ptr< TFVisualTools > TFVisualToolsPtr


rviz_visual_tools
Author(s): Dave Coleman
autogenerated on Mon Feb 25 2019 03:54:12