neural-blend-shapes icon indicating copy to clipboard operation
neural-blend-shapes copied to clipboard

What is in a pose file?

Open fire opened this issue 4 years ago • 3 comments

How different is it from a skeletal transform representation of the animation on standard rig you chose?

fire avatar Jun 21 '21 14:06 fire

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.

PeizhuoLi avatar Jun 22 '21 15:06 PeizhuoLi

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.

fire avatar Jun 22 '21 16:06 fire

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.

PeizhuoLi avatar Jun 22 '21 16:06 PeizhuoLi