-
Notifications
You must be signed in to change notification settings - Fork 652
New issue
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
catkin_make failing due to static_assert in Eigen #121
Comments
What version of Eigen3 are you linking against? |
Hi, I use Eigen3 3.3.9 (Newest). Regards, Shreyas |
Were you able to address this issue? |
Hi, Yes. Seems like open_vins is not compiling for Eigen 3.3.9. Btw. Do you have any separate branch for OpenCV 4 support? Thank you once again. Shreyas Manjunath |
You can try out #117 as it should support v4. |
I fixed the error use dot() method for matrix quat_diff in Eigen 3.3.9, I change line 615, from: |
PR #226 should address Eigen issue for newer versions. |
Hi,
Thank you for the development.
I am trying to compile openvins on ubuntu 18.04 but encountering the following error.
This error pops out due to a line in RosVisualizer.cpp in ov_msckf pkg.
Line 667
double ori_nees = 2*quat_diff.block(0,0,3,1).dot(covariance.block(0,0,3,3).inverse()*2*quat_diff.block(0,0,3,1));
Seems like
Eigen::Matrix<double,4,1> quat_gt, quat_st, quat_diff;
quat_diff is indeed a Matrix.Does anyone had similar experience?
Thank you
Shreyas
The text was updated successfully, but these errors were encountered: