You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the paper ORB-VI-SLAM, the velocity of the last KeyFrame in IMU initialization should be calculated from Equation(3). Is the code here missing the term (Jvbg * dbiasg_eig)? In my opinion, this line should be Eigen::Vector3d veleig = velpre + gweig*dt + rotpre*( dv + Jvba*dbiasa_eig + Jvbg * dbiasg_eig);.
The text was updated successfully, but these errors were encountered:
Hi,
First of all, thank you for your great work!
I have a question about line 605 in LocalMapping.cc, which reads:
LearnVIORB/src/LocalMapping.cc
Line 605 in b9e73ce
According to the paper ORB-VI-SLAM, the velocity of the last KeyFrame in IMU initialization should be calculated from Equation(3). Is the code here missing the term (Jvbg * dbiasg_eig)? In my opinion, this line should be
Eigen::Vector3d veleig = velpre + gweig*dt + rotpre*( dv + Jvba*dbiasa_eig + Jvbg * dbiasg_eig);
.The text was updated successfully, but these errors were encountered: