-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(imu_corrector): changed GyroBiasEstimator to use ndt pose instea…
…d of twist (#5259) * Implemented ndt pose based GyroBiasEstimator Signed-off-by: Shintaro Sakoda <[email protected]> * style(pre-commit): autofix * Added missing includes Signed-off-by: Shintaro Sakoda <[email protected]> * FIxed default gyro_bias_threshold Signed-off-by: Shintaro Sakoda <[email protected]> * Restored gyro_bias_pub_, which had been deleted due to a mistake Signed-off-by: Shintaro Sakoda <[email protected]> * removed get_bias_std and anything else that is no longer needed as a result of remove Signed-off-by: Shintaro Sakoda <[email protected]> * Updated README.md Signed-off-by: Shintaro Sakoda <[email protected]> * Revert "Updated README.md" This reverts commit f669c20. * Updated README.md Signed-off-by: Shintaro Sakoda <[email protected]> * Added notes to README.md Signed-off-by: Shintaro Sakoda <[email protected]> --------- Signed-off-by: Shintaro Sakoda <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
6825200
commit 3a1d480
Showing
8 changed files
with
310 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/**: | ||
ros__parameters: | ||
gyro_bias_threshold: 0.0015 # [rad/s] | ||
velocity_threshold: 0.0 # [m/s] | ||
timestamp_threshold: 0.1 # [s] | ||
data_num_threshold: 200 # [num] | ||
timer_callback_interval_sec: 0.5 # [sec] | ||
straight_motion_ang_vel_upper_limit: 0.015 # [rad/s] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.