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
Hi, thanks for the excellent work, there is some problem for me to understand the calculation for bM when marginalizing.
According to the paper, bM should be b' in the equation
and according to the code in marginalizePointsF(), I guess b'=J*res_toZeroF, where J is the jacobian calculated with the new states just after an optimize,and the residual is res_toZeroF, calculated bere in fixLinearizationF():
I think the code means that the residual roll back to the point that this optimize starts, with resF the residual at point this optimize ends.
Why like this? Why roll back the residual? In my understanding, the x0 in the equation should be zero at the end of one optimization(or at the beginning of the next), and b' should just be b=J*resF, the res caused by the next optimization is added in solveSystemF():
bM_top = (bM+ HM * getStitchedDeltaF());
Can someone be nice enough to explain this to me?
The text was updated successfully, but these errors were encountered:
Hi, thanks for the excellent work, there is some problem for me to understand the calculation for bM when marginalizing.
According to the paper, bM should be b' in the equation
and according to the code in marginalizePointsF(), I guess b'=J*res_toZeroF, where J is the jacobian calculated with the new states just after an optimize,and the residual is res_toZeroF, calculated bere in fixLinearizationF():
I think the code means that the residual roll back to the point that this optimize starts, with resF the residual at point this optimize ends.
Why like this? Why roll back the residual? In my understanding, the x0 in the equation should be zero at the end of one optimization(or at the beginning of the next), and b' should just be b=J*resF, the res caused by the next optimization is added in solveSystemF():
Can someone be nice enough to explain this to me?
The text was updated successfully, but these errors were encountered: