├── .gitattributes ├── .gitignore ├── README.md ├── checkpoints └── latest.pth.txt ├── data_root ├── front_part_v.txt ├── partAllpca200_icp.npy ├── pca200_icp.model.txt └── warehouse_0.obj ├── datasets.py ├── env.yaml ├── fig ├── 2d.jpg └── 3d.jpg ├── models └── models.py ├── pipeline ├── cari_pipeline.py ├── color_complete │ ├── Makefile │ ├── main.cpp │ └── obj.h └── eye_complete │ ├── eye_rank.txt │ ├── main.cpp │ └── mesh.h ├── train.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/latest.pth.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_root/front_part_v.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/data_root/front_part_v.txt -------------------------------------------------------------------------------- /data_root/partAllpca200_icp.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/data_root/partAllpca200_icp.npy -------------------------------------------------------------------------------- /data_root/pca200_icp.model.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_root/warehouse_0.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/data_root/warehouse_0.obj -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/datasets.py -------------------------------------------------------------------------------- /env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/env.yaml -------------------------------------------------------------------------------- /fig/2d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/fig/2d.jpg -------------------------------------------------------------------------------- /fig/3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/fig/3d.jpg -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/models/models.py -------------------------------------------------------------------------------- /pipeline/cari_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/pipeline/cari_pipeline.py -------------------------------------------------------------------------------- /pipeline/color_complete/Makefile: -------------------------------------------------------------------------------- 1 | g++ main.cpp -o color -std=c++11 -------------------------------------------------------------------------------- /pipeline/color_complete/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/pipeline/color_complete/main.cpp -------------------------------------------------------------------------------- /pipeline/color_complete/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/pipeline/color_complete/obj.h -------------------------------------------------------------------------------- /pipeline/eye_complete/eye_rank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/pipeline/eye_complete/eye_rank.txt -------------------------------------------------------------------------------- /pipeline/eye_complete/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/pipeline/eye_complete/main.cpp -------------------------------------------------------------------------------- /pipeline/eye_complete/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/pipeline/eye_complete/mesh.h -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq775193759/3D-CariGAN/HEAD/utils.py --------------------------------------------------------------------------------