-
Notifications
You must be signed in to change notification settings - Fork 789
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
Adding logmap API which takes the object to the function argument #532
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.
Awesome :)
Will merge as we discussed LieXXX stuff in meeting |
Ummm this broke the Matlab wrapper. I don't understand why |
How did it break the matlab wrapper? |
Apparently the
|
So should I remove this from LieMatrix and LieVector for the time being? Before we can figure out the deprecation possibility for these 2 classes? |
I made a PR since it was quick and I need this to work for another PR. @ayushbaid can you please take a look at it? It should be quick :) |
The
LieGroup
supportsLogmap
(log-map of the argument at identity) as well aslogmap
(logmap of the element between the current object and the argument).The
logmap
variant is present in gtsam.i, and hence not available in the python wrapper.This PR adds the
logmap
function where-everLogmap
was defined.Testing details: I build the gtsam library and python wrapper, and checked Rot3. As the change is similar in every place, it should work for all cases.