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
An estimation for the output odometry pose covariance is needed. The algorithm computes a new pose p2 from the previous one p1 with known covariance applying the transformation p2 = T * p1 = T_icp * T_pred * p1, where:
T_icp is the transformation between the input cloud and the local map, outputted by the ICP loop. Its covariance tracks:
sensor noise
randomness inherent to the ICP
T_pred is the motion prediction used as initial condition for the ICP loop. Its covariance tracks:
errors due to wrong initialization
TODO:
compute covariance of T_icp with the kalman method proposed by Yuan;
compute covariance of T_pred;
compose poses and related covariances as described here, chapter 5;
The text was updated successfully, but these errors were encountered:
giafranchini
changed the title
Compute odometry pose covariance
ICP pose covariance estimation
May 13, 2024
giafranchini
changed the title
ICP pose covariance estimation
[IDEA] ICP pose covariance estimation
May 13, 2024
An estimation for the output odometry pose covariance is needed. The algorithm computes a new pose
p2
from the previous onep1
with known covariance applying the transformationp2 = T * p1 = T_icp * T_pred * p1
, where:T_icp
is the transformation between the input cloud and the local map, outputted by the ICP loop. Its covariance tracks:T_pred
is the motion prediction used as initial condition for the ICP loop. Its covariance tracks:TODO:
T_icp
with the kalman method proposed by Yuan;T_pred
;The text was updated successfully, but these errors were encountered: