├── .gitignore ├── 24 joint diagram.png ├── LICENSE ├── README.md ├── create_joint_regressor.py ├── joint2pose_optimizer.py ├── linear_regression.py ├── pose2mesh.py ├── preprocess.py ├── smpl_np.py ├── smpl_tf.py ├── smpl_torch.py ├── smpl_torch_batch.py ├── test.py ├── train_acos_regressor.py ├── train_acos_regressor_24_joints.py ├── train_regressor_joints_recon_loss.py ├── train_residual_regressor.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/.gitignore -------------------------------------------------------------------------------- /24 joint diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/24 joint diagram.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/README.md -------------------------------------------------------------------------------- /create_joint_regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/create_joint_regressor.py -------------------------------------------------------------------------------- /joint2pose_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/joint2pose_optimizer.py -------------------------------------------------------------------------------- /linear_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/linear_regression.py -------------------------------------------------------------------------------- /pose2mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/pose2mesh.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/preprocess.py -------------------------------------------------------------------------------- /smpl_np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/smpl_np.py -------------------------------------------------------------------------------- /smpl_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/smpl_tf.py -------------------------------------------------------------------------------- /smpl_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/smpl_torch.py -------------------------------------------------------------------------------- /smpl_torch_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/smpl_torch_batch.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/test.py -------------------------------------------------------------------------------- /train_acos_regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/train_acos_regressor.py -------------------------------------------------------------------------------- /train_acos_regressor_24_joints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/train_acos_regressor_24_joints.py -------------------------------------------------------------------------------- /train_regressor_joints_recon_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/train_regressor_joints_recon_loss.py -------------------------------------------------------------------------------- /train_residual_regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/train_residual_regressor.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lotayou/SMPL/HEAD/utils.py --------------------------------------------------------------------------------