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
I have a question about the implementation of BasicLaserOdometry.
My understanding is that _transform represents the relative transformation between the current point cloud and the previous point cloud (both are projected to the start of the current sweep), and it needs to be initialized to zero before performing Gauss-Newton optimization.
But it seems that _transform is not initialized to zero in BasicLaserOdometry::process(), and instead its position is subtracted by _imuVeloFromStart * _scanPeriod. I would like to know the reason for this. Thank you!
The text was updated successfully, but these errors were encountered:
Dear All,
I have a question about the implementation of BasicLaserOdometry.
My understanding is that
_transform
represents the relative transformation between the current point cloud and the previous point cloud (both are projected to the start of the current sweep), and it needs to be initialized to zero before performing Gauss-Newton optimization.But it seems that
_transform
is not initialized to zero inBasicLaserOdometry::process()
, and instead its position is subtracted by_imuVeloFromStart * _scanPeriod
. I would like to know the reason for this. Thank you!The text was updated successfully, but these errors were encountered: