ros_filter_utilities.cpp
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2015, Charles River Analytics, 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
00007  * are met:
00008  *
00009  * 1. Redistributions of source code must retain the above copyright
00010  * notice, this list of conditions and the following disclaimer.
00011  * 2. Redistributions in binary form must reproduce the above
00012  * copyright notice, this list of conditions and the following
00013  * disclaimer in the documentation and/or other materials provided
00014  * with the distribution.
00015  * 3. Neither the name of the copyright holder nor the names of its
00016  * contributors may be used to endorse or promote products derived
00017  * from this software without specific prior written permission.
00018  *
00019  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00020  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00021  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00022  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00023  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00024  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00025  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00026  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00027  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00028  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00029  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00030  * POSSIBILITY OF SUCH DAMAGE.
00031  */
00032 
00033 #include "robot_localization/ros_filter_utilities.h"
00034 #include "robot_localization/filter_common.h"
00035 
00036 std::ostream& operator<<(std::ostream& os, const tf::Vector3 &vec)
00037 {
00038   os << "(" << std::setprecision(20) << vec.getX() << " " << vec.getY() << " " << vec.getZ() << ")\n";
00039 
00040   return os;
00041 }
00042 
00043 std::ostream& operator<<(std::ostream& os, const tf::Quaternion &quat)
00044 {
00045   double roll, pitch, yaw;
00046   tf::Matrix3x3 orTmp(quat);
00047   orTmp.getRPY(roll, pitch, yaw);
00048 
00049   os << "(" << std::setprecision(20) << roll << ", " << pitch << ", " << yaw << ")\n";
00050 
00051   return os;
00052 }
00053 
00054 std::ostream& operator<<(std::ostream& os, const tf::Transform &trans)
00055 {
00056   os << "Origin: " << trans.getOrigin() <<
00057         "Rotation (RPY): " << trans.getRotation();
00058 
00059   return os;
00060 }
00061 
00062 namespace RobotLocalization
00063 {
00064   namespace RosFilterUtilities
00065   {
00066     void quatToRPY(const tf::Quaternion &quat, double &roll, double &pitch, double &yaw)
00067     {
00068       tf::Matrix3x3 orTmp(quat);
00069       orTmp.getRPY(roll, pitch, yaw);
00070     }
00071 
00072     void stateToTF(const Eigen::VectorXd &state, tf::Transform &stateTF)
00073     {
00074       stateTF.setOrigin(tf::Vector3(state(StateMemberX),
00075                                     state(StateMemberY),
00076                                     state(StateMemberZ)));
00077       tf::Quaternion quat;
00078       quat.setRPY(state(StateMemberRoll),
00079                   state(StateMemberPitch),
00080                   state(StateMemberYaw));
00081 
00082       stateTF.setRotation(quat);
00083     }
00084 
00085     void TFtoState(const tf::Transform &stateTF, Eigen::VectorXd &state)
00086     {
00087       state(StateMemberX) = stateTF.getOrigin().getX();
00088       state(StateMemberY) = stateTF.getOrigin().getY();
00089       state(StateMemberZ) = stateTF.getOrigin().getZ();
00090       quatToRPY(stateTF.getRotation(), state(StateMemberRoll), state(StateMemberPitch), state(StateMemberYaw));
00091     }
00092   }
00093 }


robot_localization
Author(s): Tom Moore
autogenerated on Fri Aug 28 2015 12:26:20