VoxelMap icon indicating copy to clipboard operation
VoxelMap copied to clipboard

about point covariance

Open deliangye opened this issue 2 years ago • 1 comments

According to the paper, covariance of point in the world: Screenshot from 2022-08-27 13-38-13

but in the codes, it seems missing W_R_L in the second iterm, see codes: cov = state.rot_end * cov * state.rot_end.transpose() + (-point_crossmat) * state.cov.block<3, 3>(0, 0) * (-point_crossmat).transpose() + state.cov.block<3, 3>(3, 3);

So, is it a bug in the codes?

thanks!

deliangye avatar Aug 27 '22 17:08 deliangye

According to the paper, covariance of point in the world: Screenshot from 2022-08-27 13-38-13

but in the codes, it seems missing W_R_L in the second iterm, see codes: cov = state.rot_end * cov * state.rot_end.transpose() + (-point_crossmat) * state.cov.block<3, 3>(0, 0) * (-point_crossmat).transpose() + state.cov.block<3, 3>(3, 3);

So, is it a bug in the codes?

thanks!

Yes, it is a bug. I will fix it in the next commit. Thanks for your correction!

ChongjianYUAN avatar Oct 09 '22 15:10 ChongjianYUAN