-
Notifications
You must be signed in to change notification settings - Fork 773
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
CombinedImuFactor: Add bias effect on position jacobian #874
Merged
Merged
Changes from 7 commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
5e735e1
minor improvements to CombinedImuFactor
varunagrawal 9dbb431
account for bias on position in jacobians of CombinedImuFactor
varunagrawal 7e48962
Add unit test for checking covariance of CombinedImuFactor
varunagrawal b0fcd17
additional comments to make understanding the code easier
varunagrawal 5656308
no need to assign negative to jacobians as they cancel out later
varunagrawal 810f973
add details about noise propagation for CombinedImuFactor in ImuFacto…
varunagrawal da220dc
Add the Preintegrated IMU jacobians tech report and mention it in the…
varunagrawal a516415
update ImuFactor reference
varunagrawal 61f2cf7
Merge branch 'develop' into fix/368
varunagrawal 28d0393
add test for checking covariances between ImuFactor and CombinedImuFa…
varunagrawal a10c776
print statements in ImuFactor
varunagrawal 65bbe6b
typedef for Vector15
varunagrawal 3a3640c
updated CombinedImuFactor covariance with additional off-diagonal ele…
varunagrawal 3132cfb
CombinedScenarioRunner
varunagrawal 5371214
actually test the covariances and fix bug
varunagrawal 10a7333
update test with comments
varunagrawal 755c752
update ImuFactor doc
varunagrawal bbde7b9
remove print statements
varunagrawal a2bf0c4
minor refactoring
varunagrawal aa4a163
updated ImuFactor doc with details about CombinedImuFactor
varunagrawal 0968c60
added details about covariance discretization with references
varunagrawal 6bc9b50
add test for MC based covariance estimation
varunagrawal af714cd
undo name change from 984a90
varunagrawal e38ea50
detailed implementation of CombinedImuFactor noise propagation
varunagrawal 3cee1b7
test passes
varunagrawal dfa32e5
lyx update
varunagrawal 40e6d8b
formatting
varunagrawal 995710f
update PDF doc
varunagrawal 2d3859d
Merge branch 'develop' into fix/combined-imu
varunagrawal 239dd62
Merge branch 'develop' into fix/combined-imu-cov
varunagrawal 008bb93
Merge branch 'develop' into fix/368
varunagrawal 63e2a59
Merge branch 'fix/368' into fix/combined-imu-cov
varunagrawal f0be857
Merge branch 'fix/combined-imu-cov' into fix/combined-imu
varunagrawal 8dbbb1f
fix test
varunagrawal ce7c71b
fix test
varunagrawal a17134d
minor refactor to follow the math better
varunagrawal cb75d92
use prior naming scheme for bias jacobians
varunagrawal bbd1e3f
update Lyx document based on Luca's review
varunagrawal 4244345
Merge pull request #882 from borglab/fix/combined-imu
varunagrawal c767dfa
Merge pull request #879 from borglab/fix/combined-imu-cov
varunagrawal 2d41b01
change python CI cores to 1
varunagrawal 8a33a5b
Revert "change python CI cores to 1"
varunagrawal 322c080
Merge branch 'develop' into fix/368
varunagrawal ac28b0e
fix setter and getter for biasAccOmegaInit
varunagrawal 103c78b
revert name change, save for another PR
varunagrawal 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
Binary file not shown.
Binary file not shown.
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
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 |
---|---|---|
|
@@ -44,6 +44,8 @@ typedef ManifoldPreintegration PreintegrationType; | |
* C. Forster, L. Carlone, F. Dellaert, D. Scaramuzza, "IMU Preintegration on | ||
* Manifold for Efficient Visual-Inertial Maximum-a-Posteriori Estimation", | ||
* Robotics: Science and Systems (RSS), 2015. | ||
* | ||
* [3] is available in this repo as "PreintegratedIMUJacobians.pdf". | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same: say this below |
||
* | ||
* REFERENCES: | ||
* [1] G.S. Chirikjian, "Stochastic Models, Information Theory, and Lie Groups", | ||
|
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.
Why not say this below where [3] is defined?