-
Notifications
You must be signed in to change notification settings - Fork 767
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
Change from biasAccOmegaInt to biasAccOmegaInit #1709
base: develop
Are you sure you want to change the base?
Conversation
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.
Wanted to do this for years, but I'll let Frank decide :P
Ping @dellaert |
Convince me that this is the correct change. There is also an integration covariance mentioned in the paper. Are we sure this is not that? How is an initialization part of a parameter? |
gtsam/gtsam/navigation/CombinedImuFactor.cpp Line 149 in d48b1fc
In that same file, we have gtsam/gtsam/navigation/CombinedImuFactor.cpp Line 150 in d48b1fc
|
Ok, you convinced me. But how could we make this change in a way that does not break existing user code? |
This has been the big question for me. I wonder if we can put in a deprecation warning like message that lets users know the variable name has changed? If we're cutting 4.3a as a new release, can we make an exception? |
Typically, we bracket in ifdefs, so we can do that here as well? |
Made these changes a few years ago, and wanted to create the PR for whenever it was deemed appropriate to merge.
This PR changes all instances of
biasAccOmegaInt
tobiasAccOmegaInit
which is the correct name for the initial noise on the bias for both the accelerometer and the gyroscope.