├── .gitignore ├── agreement.docx ├── figures ├── exp22.png └── teaser.png ├── readme.md ├── requirements.txt ├── sample ├── depth │ ├── 0 │ │ └── depth.png │ ├── 1 │ │ └── depth.png │ └── 2 │ │ └── depth.png └── mesh │ ├── 0 │ └── t.bmp │ ├── 1 │ └── t.bmp │ ├── 2 │ └── t.bmp │ └── fusion │ └── gt.mat └── util ├── convert_obj.py └── read_data.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/.gitignore -------------------------------------------------------------------------------- /agreement.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/agreement.docx -------------------------------------------------------------------------------- /figures/exp22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/figures/exp22.png -------------------------------------------------------------------------------- /figures/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/figures/teaser.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | -------------------------------------------------------------------------------- /sample/depth/0/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/sample/depth/0/depth.png -------------------------------------------------------------------------------- /sample/depth/1/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/sample/depth/1/depth.png -------------------------------------------------------------------------------- /sample/depth/2/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/sample/depth/2/depth.png -------------------------------------------------------------------------------- /sample/mesh/0/t.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/sample/mesh/0/t.bmp -------------------------------------------------------------------------------- /sample/mesh/1/t.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/sample/mesh/1/t.bmp -------------------------------------------------------------------------------- /sample/mesh/2/t.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/sample/mesh/2/t.bmp -------------------------------------------------------------------------------- /sample/mesh/fusion/gt.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/sample/mesh/fusion/gt.mat -------------------------------------------------------------------------------- /util/convert_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/util/convert_obj.py -------------------------------------------------------------------------------- /util/read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyg11/Pixel-Face/HEAD/util/read_data.py --------------------------------------------------------------------------------