-
Notifications
You must be signed in to change notification settings - Fork 173
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
fix: Guarantee angle periodicity after KF filtering and smoothing #3684
fix: Guarantee angle periodicity after KF filtering and smoothing #3684
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.
Just a tiny remark. Looks good otherwise. Interesting, that physmon didn't change.
I don't think we are hitting this case very often otherwise we would have spotted it in physmon already |
I do not observe any performance difference for the track finding |
This PR currently has a merge conflict. Please resolve this and then re-add the |
Quality Gate passedIssues Measures |
…ts-project#3684) I noticed a few cases where the angles escape their valid range after a KF update / smoothing. We can avoid that by normalizing the angles back to their range after update. In principle other params like local position and momentum are also constrained and might need checking+fixing but for those I am not sure how to do it right now.
I noticed a few cases where the angles escape their valid range after a KF update / smoothing. We can avoid that by normalizing the angles back to their range after update.
In principle other params like local position and momentum are also constrained and might need checking+fixing but for those I am not sure how to do it right now.