You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you don't use the translation, you can simple replace the first 3-dimension of poses by Rh.
so I change code in convert2bvh.py
def merge_params(param_list, share_shape=True):
output = {}
for key in ['poses', 'shapes', 'Rh', 'Th', 'expression']:
if key in param_list[0].keys():
output[key] = np.vstack([v[key] for v in param_list])
output['poses'] = np.concatenate((output['Rh'] , output['poses']),axis=1)
if share_shape:
print(output['poses'].shape)
output['shapes'] = output['shapes'].mean(axis=0, keepdims=True)
return output
I run the convert2bvh.py and I found the smpl file just have 69 poses. It should be 72.
The text was updated successfully, but these errors were encountered: