├── .gitignore ├── .gitmodules ├── GAN ├── dataset_singlefit.py ├── model.py ├── trainer_fitskull.py └── utils.py ├── README.md ├── assets ├── deca_lmk_ids2.json ├── dense_face_fids2.npy ├── king │ ├── Wallace_Monument_20080505_Bust_Robert_the_Bruce.jpg │ ├── king_face.png │ ├── lmk_pos.ply │ ├── royalfamily.jpg │ ├── skull.ply │ └── skull_lmks.txt ├── lmk_depth_pca100.pkl └── lmks_dict.npy ├── configs └── fit_skull_real_robert.yaml ├── fit_skull_real.py ├── landmark ├── candidates.py ├── dataset.py ├── evaluator.py ├── model.py ├── trainer.py └── umeyama.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/.gitmodules -------------------------------------------------------------------------------- /GAN/dataset_singlefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/GAN/dataset_singlefit.py -------------------------------------------------------------------------------- /GAN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/GAN/model.py -------------------------------------------------------------------------------- /GAN/trainer_fitskull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/GAN/trainer_fitskull.py -------------------------------------------------------------------------------- /GAN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/GAN/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/README.md -------------------------------------------------------------------------------- /assets/deca_lmk_ids2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/deca_lmk_ids2.json -------------------------------------------------------------------------------- /assets/dense_face_fids2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/dense_face_fids2.npy -------------------------------------------------------------------------------- /assets/king/Wallace_Monument_20080505_Bust_Robert_the_Bruce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/king/Wallace_Monument_20080505_Bust_Robert_the_Bruce.jpg -------------------------------------------------------------------------------- /assets/king/king_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/king/king_face.png -------------------------------------------------------------------------------- /assets/king/lmk_pos.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/king/lmk_pos.ply -------------------------------------------------------------------------------- /assets/king/royalfamily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/king/royalfamily.jpg -------------------------------------------------------------------------------- /assets/king/skull.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/king/skull.ply -------------------------------------------------------------------------------- /assets/king/skull_lmks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/king/skull_lmks.txt -------------------------------------------------------------------------------- /assets/lmk_depth_pca100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/lmk_depth_pca100.pkl -------------------------------------------------------------------------------- /assets/lmks_dict.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/assets/lmks_dict.npy -------------------------------------------------------------------------------- /configs/fit_skull_real_robert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/configs/fit_skull_real_robert.yaml -------------------------------------------------------------------------------- /fit_skull_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/fit_skull_real.py -------------------------------------------------------------------------------- /landmark/candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/landmark/candidates.py -------------------------------------------------------------------------------- /landmark/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/landmark/dataset.py -------------------------------------------------------------------------------- /landmark/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/landmark/evaluator.py -------------------------------------------------------------------------------- /landmark/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/landmark/model.py -------------------------------------------------------------------------------- /landmark/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/landmark/trainer.py -------------------------------------------------------------------------------- /landmark/umeyama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/landmark/umeyama.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmlyqing00/skull-to-face/HEAD/requirements.txt --------------------------------------------------------------------------------