We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENV: ubuntu 22.04 | ros-humble | Eigen 3.4 | gtsam 4.2 from source(using system eigen)
In "gtsam 4.2", the author define in "Vector.h" as below:
38 typedef Eigen::VectorXd Vector;
which comflicted with the define in Eigen3.4-Eigen/src/core/Matrix.h
551 using Vector = Matrix<Type, Size, 1>;
This problem lead to a compile issues in "mapOptmization.cpp" - 1397 and 1401. Change the Vector to Eigen::VectorXd can fix it
The text was updated successfully, but these errors were encountered:
You can edit mapOptmization.cpp 1397 and 1401,change "Vector(6)" to "gtsam::Vector(6)"
Sorry, something went wrong.
Got it! Thanks!
No branches or pull requests
ENV: ubuntu 22.04 | ros-humble | Eigen 3.4 | gtsam 4.2 from source(using system eigen)
In "gtsam 4.2", the author define in "Vector.h" as below:
which comflicted with the define in Eigen3.4-Eigen/src/core/Matrix.h
This problem lead to a compile issues in "mapOptmization.cpp" - 1397 and 1401.
Change the Vector to Eigen::VectorXd can fix it
The text was updated successfully, but these errors were encountered: