Open wthIC opened 6 months ago
verts
are the 3D position (in the camera coordinate system) of 6,890 SMPL vertices. pose_world
is indeed the joint rotations as axis angle representation, indicating the relative rotation of a body segment with respect to its parent body segment (e.g., left knee rotation is relative rotational transformation between left shank and left thigh).
Thank you for confirming my assumptions. I wanted to also know what is the domain for these angles. I believe the unit for joint rotations is radians. From what I have read, the domain seems like it should be between -180 and 180 degrees when converted, but I have seen angles bigger than 180.
I took this snippet from demo.py where the results are saved. I have been filtering these results into a CSV file to save only the positional information and joint rotations. For now, I have been deriving the joint coordinates from the 'verts' and using values in 'pose_world' as the joint rotations as angles in radians in the x,y, and z coordinate systems. Are my assumptions wrong regarding these?