00001 /********************************************************************* 00002 * Software License Agreement (BSD License) 00003 * 00004 * Copyright (c) 2015, University of Colorado, Boulder 00005 * All rights reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions 00009 * are met: 00010 * 00011 * * Redistributions of source code must retain the above copyright 00012 * notice, this list of conditions and the following disclaimer. 00013 * * Redistributions in binary form must reproduce the above 00014 * copyright notice, this list of conditions and the following 00015 * disclaimer in the documentation and/or other materials provided 00016 * with the distribution. 00017 * * Neither the name of the Univ of CO, Boulder nor the names of its 00018 * contributors may be used to endorse or promote products derived 00019 * from this software without specific prior written permission. 00020 * 00021 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 * POSSIBILITY OF SUCH DAMAGE. 00033 *********************************************************************/ 00034 00035 /* Author: Dave Coleman <dave@dav.ee> 00036 Desc: Helps debug and visualize transforms via the TF infrastructure 00037 */ 00038 00039 #include <rviz_visual_tools/tf_visual_tools.h> 00040 00041 // TF 00042 #include <eigen_conversions/eigen_msg.h> 00043 00044 // C++ 00045 #include <string> 00046 00047 namespace rviz_visual_tools 00048 { 00049 TFVisualTools::TFVisualTools() 00050 { 00051 double loop_hz = 2; // hz 00052 ros::Duration update_freq = ros::Duration(1.0 / loop_hz); 00053 non_realtime_loop_ = nh_.createTimer(update_freq, &TFVisualTools::publishAllTransforms, this); 00054 00055 ROS_INFO_STREAM_NAMED("tf_visual_tools", "TFVisualTools Ready."); 00056 } 00057 00058 bool TFVisualTools::publishTransform(const Eigen::Affine3d& transform, const std::string& from_frame, 00059 const std::string& to_frame) 00060 { 00061 ROS_DEBUG_STREAM_NAMED("tf_visual_tools", "Publishing transform from " << from_frame << " to " << to_frame); 00062 00063 // Create transform msg 00064 geometry_msgs::TransformStamped tf2_msg; 00065 tf2_msg.header.stamp = ros::Time::now(); 00066 tf::transformEigenToMsg(transform, tf2_msg.transform); 00067 tf2_msg.header.frame_id = from_frame; 00068 tf2_msg.child_frame_id = to_frame; 00069 00070 // Check if this transform has already been added 00071 for (std::size_t i = 0; i < transforms_.size(); ++i) 00072 { 00073 if (transforms_[i].child_frame_id == to_frame && transforms_[i].header.frame_id == from_frame) 00074 { 00075 // ROS_WARN_STREAM_NAMED("tf_visual_tools", "This transform has already been added, updating"); 00076 transforms_[i].transform = tf2_msg.transform; 00077 return true; 00078 } 00079 } 00080 // This transform is unique, add 00081 transforms_.push_back(tf2_msg); 00082 00083 return true; 00084 } 00085 00086 void TFVisualTools::publishAllTransforms(const ros::TimerEvent& e) 00087 { 00088 ROS_DEBUG_STREAM_NAMED("tf_visual_tools", "Publishing transforms"); 00089 00090 // Update timestamps 00091 for (std::size_t i = 0; i < transforms_.size(); ++i) 00092 { 00093 transforms_[i].header.stamp = ros::Time::now(); 00094 } 00095 // Publish 00096 tf_pub_.sendTransform(transforms_); 00097 } 00098 00099 } // namespace rviz_visual_tools