$search
00001 /* 00002 * Copyright (c) 2009, Willow Garage, Inc. 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * * Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * * Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * * Neither the name of the Willow Garage, Inc. nor the names of its 00014 * contributors may be used to endorse or promote products derived from 00015 * this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00021 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00022 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00023 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00024 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00025 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00026 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00027 * POSSIBILITY OF SUCH DAMAGE. 00028 */ 00029 00030 00031 #include <eigen_conversions/eigen_msg.h> 00032 00033 namespace tf { 00034 00035 void poseMsgToEigen(const geometry_msgs::Pose &m, Eigen::Affine3d &e) 00036 { 00037 e = Eigen::Translation3d(m.position.x, 00038 m.position.y, 00039 m.position.z) * 00040 Eigen::Quaterniond(m.orientation.w, 00041 m.orientation.x, 00042 m.orientation.y, 00043 m.orientation.z); 00044 } 00045 00046 void poseEigenToMsg(const Eigen::Affine3d &e, geometry_msgs::Pose &m) 00047 { 00048 m.position.x = e.translation()[0]; 00049 m.position.y = e.translation()[1]; 00050 m.position.z = e.translation()[2]; 00051 Eigen::Quaterniond q = (Eigen::Quaterniond)e.linear(); 00052 m.orientation.x = q.x(); 00053 m.orientation.y = q.y(); 00054 m.orientation.z = q.z(); 00055 m.orientation.w = q.w(); 00056 if (m.orientation.w < 0) { 00057 m.orientation.x *= -1; 00058 m.orientation.y *= -1; 00059 m.orientation.z *= -1; 00060 m.orientation.w *= -1; 00061 } 00062 } 00063 00064 void twistMsgToEigen(const geometry_msgs::Twist &m, Eigen::Matrix<double,6,1> &e) 00065 { 00066 e[0] = m.linear.x; 00067 e[1] = m.linear.y; 00068 e[2] = m.linear.z; 00069 e[3] = m.angular.x; 00070 e[4] = m.angular.y; 00071 e[5] = m.angular.z; 00072 } 00073 00074 void twistEigenToMsg(const Eigen::Matrix<double,6,1> &e, geometry_msgs::Twist &m) 00075 { 00076 m.linear.x = e[0]; 00077 m.linear.y = e[1]; 00078 m.linear.z = e[2]; 00079 m.angular.x = e[3]; 00080 m.angular.y = e[4]; 00081 m.angular.z = e[5]; 00082 } 00083 00084 void wrenchMsgToEigen(const geometry_msgs::Wrench &m, Eigen::Matrix<double,6,1> &e) 00085 { 00086 e[0] = m.force.x; 00087 e[1] = m.force.y; 00088 e[2] = m.force.z; 00089 e[3] = m.torque.x; 00090 e[4] = m.torque.y; 00091 e[5] = m.torque.z; 00092 } 00093 00094 void wrenchEigenToMsg(const Eigen::Matrix<double,6,1> &e, geometry_msgs::Wrench &m) 00095 { 00096 m.force.x = e[0]; 00097 m.force.y = e[1]; 00098 m.force.z = e[2]; 00099 m.torque.x = e[3]; 00100 m.torque.y = e[4]; 00101 m.torque.z = e[5]; 00102 } 00103 00104 } // namespace