liren2515/DrapeNet

Canonical SMPL Pose Parameter

sunshineatnoon opened this issue · 2 comments

Hi, I have a question about the default body pose aligned with the garments from CLOTH3D. As shown below, the rest pose body from smpl_server seems to be misaligned with the pants. Did you use a specific rest pose to produce the canonical garment meshes?

snapshot00

We use the rest pose of CLOTH3D, which is defined as:

pose = pose.reshape(1, 24, 3)
pose[0, 1, 2] = 0.15
pose[0, 2, 2] = -0.15
pose = pose.reshape(1, 72)

Thanks for the reply!