You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first line gets the rotation matrix.
The second line multiplies the rotation matrix by the predicted pose; so it comes in the right way according to the last pose and rotation.
In the third and forth line it applies these changes so that we have the right pose in continuous of the poses till now.
ang = eulerAnglesToRotationMatrix([0, answer[-1][0], 0])
location = ang.dot(predict_pose_seq[-1][3:])
predict_pose_seq[-1][3:] = location[:]
last_pose = predict_pose_seq[-1]
I don't understand these steps.Can you explain these for me? I look forward to your reply. Thank you.
The text was updated successfully, but these errors were encountered: