34 #ifndef VP_EIGEN_CONVERSION_H
35 #define VP_EIGEN_CONVERSION_H
37 #include <visp3/core/vpConfig.h>
38 #ifdef VISP_HAVE_EIGEN3
39 #include <Eigen/Dense>
41 #include <visp3/core/vpMatrix.h>
45 #ifdef VISP_HAVE_EIGEN3
51 template <
typename Type>
54 dst.
buildFrom(src.x(), src.y(), src.z(), src.w());
57 template <
typename Type>
60 dst.
buildFrom(src.angle() * src.axis()(0), src.angle() * src.axis()(1), src.angle() * src.axis()(2));
68 template <
typename Derived>
71 dst = Eigen::Map<Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> >(src.
data, src.
getRows(),
75 template <
typename Derived>
78 dst = Eigen::Map<Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> >(src.
data, src.
getRows(),
82 template <
typename Type>
85 dst.w() =
static_cast<Type
>(src.
w());
86 dst.x() =
static_cast<Type
>(src.
x());
87 dst.y() =
static_cast<Type
>(src.
y());
88 dst.z() =
static_cast<Type
>(src.
z());
91 template <
typename Type>
94 const unsigned int index_0 = 0;
95 const unsigned int index_1 = 1;
96 const unsigned int index_2 = 2;
97 dst.angle() =
static_cast<Type
>(src.
getTheta());
98 dst.axis()(index_0) =
static_cast<Type
>(src.
getU()[index_0]);
99 dst.axis()(index_1) =
static_cast<Type
>(src.
getU()[index_1]);
100 dst.axis()(index_2) =
static_cast<Type
>(src.
getU()[index_2]);
unsigned int getCols() const
Type * data
Address of the first element of the data array.
unsigned int getRows() const
Implementation of column vector and the associated operations.
Implementation of an homogeneous matrix and operations on such kind of matrices.
Implementation of a matrix and operations on matrices.
Implementation of a rotation vector as quaternion angle minimal representation.
const double & z() const
Returns the z-component of the quaternion.
vpQuaternionVector & buildFrom(const double &qx, const double &qy, const double &qz, const double &qw)
const double & x() const
Returns the x-component of the quaternion.
const double & y() const
Returns the y-component of the quaternion.
const double & w() const
Returns the w-component of the quaternion.
Implementation of row vector and the associated operations.
Implementation of a rotation vector as axis-angle minimal representation.
vpThetaUVector & buildFrom(const vpHomogeneousMatrix &M)
VISP_EXPORT void eigen2visp(const Eigen::MatrixXd &src, vpMatrix &dst)
void visp2eigen(const vpMatrix &src, Eigen::MatrixBase< Derived > &dst)