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 @hyye. Thanks for your awesome code first.
In initialized phase:
We call BuildLocalMap to build local map, from [pivot, end] lasers in window. For the end laser frame, which is new added into window, in ProcessImu use imu meas predict the end frame pose in b0(IMU world frame) frame. When calling CalculateLaserOdom to process the end frame, calculated transform between pivot and end T_pivot_end stored in local_transforms[estimator_config_.window_size] seems not used by something. Because local_transforms is a local variable, after BuildLocalMap return, the local variable is destoried.
It is my guess: Should we use T_pivot_end(laser to laser relationship) to refine the predicted frame in b0, and then stored in Ps_[estimator_config_.window_size], Rs_[estimator_config_.window_size] for the following module use?
Thanks for your help !
The text was updated successfully, but these errors were encountered:
Hi @hyye :) I found the commented out code exactlly matches my above guess. I don't figure out for what reason, you comment the following code: from line 1584 to line 1598 in Estimator.cc. If we don't update the imu predicted new added frame pose in b0, Does it mean that there is no need to iteratively call gassian-newton to calculate the T_pivot_end in CalculateLaserOdom() function?
Hi @hyye. Thanks for your awesome code first.
In initialized phase:
We call
BuildLocalMap
to build local map, from [pivot, end] lasers in window. For the end laser frame, which is new added into window, inProcessImu
use imu meas predict the end frame pose in b0(IMU world frame) frame. When callingCalculateLaserOdom
to process the end frame, calculated transform between pivot and endT_pivot_end
stored inlocal_transforms[estimator_config_.window_size]
seems not used by something. Because local_transforms is a local variable, afterBuildLocalMap
return, the local variable is destoried.It is my guess: Should we use
T_pivot_end(laser to laser relationship)
to refine the predicted frame in b0, and then stored inPs_[estimator_config_.window_size], Rs_[estimator_config_.window_size]
for the following module use?Thanks for your help !
The text was updated successfully, but these errors were encountered: