-
Notifications
You must be signed in to change notification settings - Fork 931
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
How to compute H ??? #28
Comments
根据error state的定义:真值 x_k = propagated x_k \boxplus error-state x_k,h_j 函数中的真值 x_k可以替换成 ( propagated x_k \boxplus error-state x_k), 由于error-state x_k很小,所以可以根据泰勒公式在将原的h_j(真值 x_k, {L_j} n_{f_j})在 h_j(propagated x_k, {L_j} n_{f_j})处进行线性化(等于说“在error-state x_k = 0处进行线性化”)。 因此 H矩阵的物理含义就是h_j函数对error-state x_k的Jacobin matrix。 |
这个H是对称三角阵吗?能否给个H的具体什么形式 。 H = P_cross * R * G + G ??? |
首先你要知道hj()是一个一维的数。 H_j是H矩阵的第j行,H_j 是一个1×18的向量但是只有前6个不为0,前三个是对旋转的偏导,第四到第六个是对位移的偏导。具体的解析形式我有空了会写一个。 |
okay, thank you! |
@XW-HKU 我推出来的公式和代码中的不太一样,请帮忙看看。 |
你好,请教一下这个求导过程,最后怎么理解的?你照片中确实和代码有出入啊。 |
@cuishiwei 代码和论文是一致的,形式上差一个转置。我之前手写的可能推错了,也不去做校验了。后面又推一个电子版的,供参考。 简略的推导过程 |
@xiaotaw 你好,请问下方便把详细推导文档分享下吗?谢谢! 841581437@qq.com |
之前截图这版有误,修正之后的版本,整理了一下,放到了知乎上,排版稍微有点差,暂时没有时间去优化,勉强也能看。https://zhuanlan.zhihu.com/p/538975422 |
非常感谢!
…------------------
江hill水
***@***.***
------------------ Original ------------------
From: ***@***.***>;
Send time: Monday, Aug 8, 2022 10:34 PM
***@***.***>;
***@***.***>; ***@***.***>;
Subject: Re: [hku-mars/FAST_LIO] How to compute H ??? (#28)
@xiaotaw 你好,请问下方便把详细推导文档分享下吗?谢谢! ***@***.***
之前截图这版有误,修正之后的版本,整理了一下,放到了知乎上,排版稍微有点差,暂时没有时间去优化,勉强也能看。https://zhuanlan.zhihu.com/p/538975422
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Dear friend:
我直接说中文啦!我是个slam初学者,看了您们的论文“FAST-LIO: A Fast, Robust LiDAR-inertial Odometry Package by Tightly-Coupled Iterated Kalman Filter”,有个地方很迷惑,,不知道论文公式14中雅可比H怎么计算的?具体什么形式呢?
/*** calculate the Measuremnt Jacobian matrix H ***/ Eigen::Vector3d A(point_crossmat * state.rot_end.transpose() * norm_vec); Hsub.row(i) << VEC_FROM_ARRAY(A), norm_p.x, norm_p.y, norm_p.z;
The text was updated successfully, but these errors were encountered: