Accurate height control without variation of arm span, inseam height, chest, waist and hip
pytorch
numpy
trimesh
pyrender
smplx
You need to put SMPLX_MALE.npz into data/body_models/smplx folder.
1: modify height2: modify inseam height3: modify arm span4: modify chest5: modify waist6: modify hip-: decrease 0.5cm+: increase 0.5cmspace: new random shape
- SMPL-X shape control
- SMPL shape control
- SMPL-H shape control
- Female shape control
when paper is available(maybe a long long time):
- SMPL shape generation
- semantically controllable SMPL shape parameter generation
import torch
import numpy as np
# ...
height = torch.from_numpy(np.load('data/smplx_params/smplx_params_height_1cm_b10.npz')['betas']) # [1, 10]
modified_betas = betas + height * 3.0 # increase height by 3.0 cm
