-
Notifications
You must be signed in to change notification settings - Fork 94
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
What is in a pose file? #10
Comments
Hi, they are the same thing but in different representations. Precisely speaking, our pose file is the joint rotation in rotation vector representation with the order of the name of the joint in the bvh file (i.e., joint named '00' appears first) plus root joint location. It has the shape of (number of frame, 24 * 3 + 3), where 24 indicate the number of joint and each joint takes 3 dimensions for rotation and the last 3 dimensions are for global location. |
Ah. I recall some problems with vectors (eulers) versus basis. I remember you choose basis (3x3 rot matrix) some time ago. Trying to check my understanding. |
I use this representation here for a very simple reason: the dataset I used for training accepts this representation for joint rotations : ). In other part of the code it then is converted to 3x3 rot matrix for further uses. |
How different is it from a skeletal transform representation of the animation on standard rig you chose?
The text was updated successfully, but these errors were encountered: