├── .gitignore ├── README.md ├── assets ├── blur_7.png ├── mean_texture.jpg └── output.png ├── data ├── SMPL-X__FLAME_vertex_ids.npy ├── head_template.obj ├── mean_texture.jpg └── smplx-addon.obj └── src ├── main.py ├── post_process.py └── utils ├── file_op.py └── texture_match.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/README.md -------------------------------------------------------------------------------- /assets/blur_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/assets/blur_7.png -------------------------------------------------------------------------------- /assets/mean_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/assets/mean_texture.jpg -------------------------------------------------------------------------------- /assets/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/assets/output.png -------------------------------------------------------------------------------- /data/SMPL-X__FLAME_vertex_ids.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/data/SMPL-X__FLAME_vertex_ids.npy -------------------------------------------------------------------------------- /data/head_template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/data/head_template.obj -------------------------------------------------------------------------------- /data/mean_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/data/mean_texture.jpg -------------------------------------------------------------------------------- /data/smplx-addon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/data/smplx-addon.obj -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/src/main.py -------------------------------------------------------------------------------- /src/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/src/post_process.py -------------------------------------------------------------------------------- /src/utils/file_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/src/utils/file_op.py -------------------------------------------------------------------------------- /src/utils/texture_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CvHadesSun/FLame2SMPLX/HEAD/src/utils/texture_match.py --------------------------------------------------------------------------------