fix read smpl bug

This commit is contained in:
Qing Shuai 2022-08-23 21:05:35 +08:00
parent 0175f07290
commit de973d4047

View File

@ -152,6 +152,8 @@ def read_smpl(outname):
assert os.path.exists(outname), outname
datas = read_json(outname)
outputs = []
if isinstace(datas, dict):
datas = datas['annots']
for data in datas:
for key in ['Rh', 'Th', 'poses', 'shapes']:
data[key] = np.array(data[key])