forked from locusrobotics/fuse
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Optimizer changes #10
Merged
Merged
Conversation
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
rlpratt12
approved these changes
Dec 9, 2024
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.
Code looks good, and future state prediction works as expected in sim/tutorial.
Some minor clarification notes from review:
- Predicted state gets far away from current state at turn-around points in trajectory because it has no knowledge of the input force, so it can only assume continued motion based on the current velocity (short version: this behavior is expected).
- occasionally get "[WARN] Could not find a connection between 'base_link' and 'april_X' "
- This is a function of how tf is published right before using it, and sometimes it gets dropped. This is for the sim only, and will not be implemented on real system, so ok to ignore it here.
- 3d_motion_model process noise isn't getting added in sim, so don't worry about the values too much. They're just used to reduce confidence in acceleration for example, because we have no measurement of that.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Allows the odom publisher to predict into the future. See the
fuse_apriltag_tutorial
for how to use it. You can modify the prediction time inapriltag_simulator.cpp
to try out different values.Many of the changes are just clang-tidy fixes in files I was passing through. To see the relevant changes, just look in particular at 6c6f9aa and 4557480's changes.