-
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
changing robust noise model to Gaussian #675
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.
Sorry, we can't undo that since that was part of the PR to add robust noise models to Shonan.
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.
Nvm the last review. The flow of the code indicates this is correct. Nice job @ayushbaid!
Thanks for the PR @ayushbaid. @dellaert and @lucacarlone -- do you mind taking a look since you all edited Shonan most recently? It seems like ShonanAveraging3 now automatically forces the robust option. Should there be an if/else statement to switch off between
vs.
Most recent change is here: |
That flag is not necessary since Of course, a 2nd look is always greatly appreciated. |
Yup. I think the conversion will happen in the |
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.
LGTM, seems we were double robustifying before?
Yep! And the first one was without checking the parameters |
The previous code was converting Gaussian noise model on
Pose3
to robust noise model onRot3
. This simple PR scraps off the robust wrapping over the Gaussian noise model.