Replies: 1 comment
-
One of the things that SymPy's
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm trying to understand how the jacobians derived from symforce relate to GTSAM and other literature.
For example, for a translational residual
residual = T.translation - p
, then the jacobian should be defined as[0, T.R]
, and indeed that's what we see:But once we add the rotational component, I get confused - for a rotation
residual = T * p - p_0
I would expect the jacobian w.r.t T to be[R * skew(-p), R]
. But I cannot seem to replicate that result in symforce:I seem to always end up with extra terms. And I see similar behavior when computing the jacobian on
Rot3
directly. Sorry for the simple question, if someone can help clear up my understanding I'd appreciate it!Beta Was this translation helpful? Give feedback.
All reactions