eigen3和g2o发生冲突

Posted 工大教务处

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eigen3和g2o发生冲突相关的知识,希望对你有一定的参考价值。

/usr/include/eigen3/Eigen/src/Core/util/StaticAssert.h:32: error: static assertion failed: YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY
#define EIGEN_STATIC_ASSERT(X,MSG) static_assert(X,#MSG);
这是因为eigen3 和g2o冲突了

解决方法:打开Thirdparty/g2o/g2o/solvers/linear_solver_eigen.h,将以下代码:

 template <typename MatrixType>
class LinearSolverEigen: public LinearSolver<MatrixType>
 {
   public:
    typedef Eigen::SparseMatrix<double, Eigen::ColMajor> SparseMatrix;
    typedef Eigen::Triplet<double> Triplet;
    typedef Eigen::PermutationMatrix<Eigen::Dynamic, Eigen::Dynamic, SparseMatrix::Index> PermutationMatrix;

 改成                                       
 template <typename MatrixType>
 class LinearSolverEigen: public LinearSolver<MatrixType>
 {
  public:
    typedef Eigen::SparseMatrix<double, Eigen::ColMajor> SparseMatrix;    
 typedef Eigen::Triplet<double> Triplet;
typedef Eigen::PermutationMatrix
<Eigen::Dynamic, Eigen::Dynamic, int> PermutationMatrix; /**

 stackoverflow里面还有人说通过解决更新换最新的eigen试试。通过改代码有后遗症。

以上是关于eigen3和g2o发生冲突的主要内容,如果未能解决你的问题,请参考以下文章

CMakeList.txt里添加OpenCV, Eigen, Ceres, G2O库

VSLAM依赖库版本配置(CMake)

Eigen3(cpp)选择列给定掩码和总和,其中为真

graph slam tutorial :从推导到应用3(g2o+ceres实现)

从零开始一起学习SLAM | 掌握g2o顶点编程套路

Bootstrap 粘性页脚代码在高度和填充之间发生冲突