Replies: 1 comment
-
Yes, that is the way to go to get the pose of a frame. The other two methods are useful respectively if you want to know the velocity of a frame (corresponding to a given |
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
-
Hello, I want to get the pose of a joint relative to the world coordinate system, and then use
pin.forwardKinematics(model, data, q0)
andpose = data.oMi[Joint_id]
, but I noticed that there are two other output methods,How to understand the speed and acceleration input parameters in these two methods?
I want to get the pose of frame (such as fixed joint), add
pin.updateFramePlacements(model, data)
afterpin.forwardKinematics(model, data, q0)
, and then usepose = data.oMf[frame_id]
to get it, right?@jviereck @stephane-caron
Beta Was this translation helpful? Give feedback.
All reactions