-
Notifications
You must be signed in to change notification settings - Fork 668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(imu_corrector): changed GyroBiasEstimator to use ndt pose instead of twist #5259
Merged
SakodaShintaro
merged 10 commits into
autowarefoundation:main
from
SakodaShintaro:feat/use_pose_in_gyro_bias_estimator
Oct 17, 2023
Merged
Changes from 5 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
cfcb764
Implemented ndt pose based GyroBiasEstimator
SakodaShintaro f5049e1
style(pre-commit): autofix
pre-commit-ci[bot] 105ddec
Added missing includes
SakodaShintaro b012405
FIxed default gyro_bias_threshold
SakodaShintaro b762f90
Restored gyro_bias_pub_, which had been deleted due to a mistake
SakodaShintaro 482b3cc
removed get_bias_std and anything else that is no longer needed as a …
SakodaShintaro f669c20
Updated README.md
SakodaShintaro 7145120
Revert "Updated README.md"
SakodaShintaro 53bbd50
Updated README.md
SakodaShintaro 9babe99
Added notes to README.md
SakodaShintaro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,6 @@ | ||
/**: | ||
ros__parameters: | ||
gyro_bias_threshold: 0.0015 # [rad/s] | ||
velocity_threshold: 0.0 # [m/s] | ||
timestamp_threshold: 0.1 # [s] | ||
timer_callback_interval_sec: 0.5 # [sec] | ||
straight_motion_ang_vel_upper_limit: 0.015 # [rad/s] | ||
data_num_threshold: 200 # [num] | ||
kminoda marked this conversation as resolved.
Show resolved
Hide resolved
|
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you state here something like as follows as a side note below?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a very good. In fact, one needs to be careful when using a pose other than NDT, or when using NDT in an environment where its accuracy will be low.
Currently, it is only output to diagnostics, so there may not be a need to be overly cautious. However, caution is needed when changing the IMU value based on the estimate obtained here for online calibration.
Fixed in f669c20
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! But what I meant was to put it as a side note maybe as a footer. The description
ndt pose
itself was OK.So something like
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct. That's one of the main concern for using NDT for estimation, which makes some kind of a new closed loop in Autoware. So would like to add some warnings for future developers.