Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CONVERSIONS_H_
00010 #define CONVERSIONS_H_
00011 #include <vector>
00012 #include <tf/tf.h>
00013 #include <pcl/point_types.h>
00014 #include <Eigen/Core>
00015 #include <tf/tf.h>
00016
00017 Eigen::VectorXf StdVector2Eigen(const std::vector<double>& v);
00018 pcl::PointXYZ VectorEigen2PointXYZ(Eigen::Vector3f v);
00019 std::vector<double> VectorEigen2Std(const Eigen::VectorXf& v);
00020 Eigen::Vector3f PoseTF2EigenVector3(tf::Pose pose);
00021
00022 #endif