brjathu / PHALP

Code repository for the paper "Tracking People by Predicting 3D Appearance, Location & Pose". (CVPR 2022 Oral)
Other
282 stars 43 forks source link

Parameters in the smpl_mean_params.npz file #17

Closed BruceLz closed 1 year ago

BruceLz commented 1 year ago

Hello author, thanks for your excellent work.

But I have a problem: I would like to know what the data in brjathu/PHALP mean.

[:, [0]] means global_orient [:, 1:24] means body_pose

What about the others?Please reply to me at your earliest convenience. Thanks a million.

brjathu commented 1 year ago
>>> npz.files
['pose', 'shape', 'cam']

pose is global_orient and body_pose in 6D rotation representation. (1+23)*6, mean pose params then convert to 6D-> rotMat.

shape is the average body shape beta_0 that the HMR iterative regressor starts from. cam is the default camera p_0 that the iterative regressor starts from

BruceLz commented 1 year ago

I see. Thank you very much