├── LICENSE ├── README.md ├── dataset └── .placeholder ├── model ├── centroids.txt ├── comparisonMetric.py ├── fit_i3DMM_to_mesh.py ├── headModel │ ├── ModelParameters │ │ ├── latest_col.pth │ │ ├── latest_deform.pth │ │ └── latest_ref.pth │ ├── specs.json │ └── splits │ │ ├── referenceShapeSample.json │ │ ├── testingSamples.json │ │ └── trainingSamples.json ├── i3DMM │ ├── __init__.py │ ├── data.py │ ├── mesh.py │ ├── utils.py │ └── workspace.py ├── image_utils.py ├── meshToSDF.py ├── networks │ ├── i3dmm_color.py │ ├── i3dmm_geom.py │ └── posEncode.py ├── npz2pc.py ├── preprocessData.py ├── renderColorsFin.npy ├── sphereTracer.py └── train_i3DMM.py ├── repoimgs ├── earLeft.png ├── earRight.png ├── fullteaser.png └── lms.png └── utils └── obj_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/README.md -------------------------------------------------------------------------------- /dataset/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/dataset/.placeholder -------------------------------------------------------------------------------- /model/centroids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/centroids.txt -------------------------------------------------------------------------------- /model/comparisonMetric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/comparisonMetric.py -------------------------------------------------------------------------------- /model/fit_i3DMM_to_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/fit_i3DMM_to_mesh.py -------------------------------------------------------------------------------- /model/headModel/ModelParameters/latest_col.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/headModel/ModelParameters/latest_col.pth -------------------------------------------------------------------------------- /model/headModel/ModelParameters/latest_deform.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/headModel/ModelParameters/latest_deform.pth -------------------------------------------------------------------------------- /model/headModel/ModelParameters/latest_ref.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/headModel/ModelParameters/latest_ref.pth -------------------------------------------------------------------------------- /model/headModel/specs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/headModel/specs.json -------------------------------------------------------------------------------- /model/headModel/splits/referenceShapeSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/headModel/splits/referenceShapeSample.json -------------------------------------------------------------------------------- /model/headModel/splits/testingSamples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/headModel/splits/testingSamples.json -------------------------------------------------------------------------------- /model/headModel/splits/trainingSamples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/headModel/splits/trainingSamples.json -------------------------------------------------------------------------------- /model/i3DMM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/i3DMM/__init__.py -------------------------------------------------------------------------------- /model/i3DMM/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/i3DMM/data.py -------------------------------------------------------------------------------- /model/i3DMM/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/i3DMM/mesh.py -------------------------------------------------------------------------------- /model/i3DMM/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/i3DMM/utils.py -------------------------------------------------------------------------------- /model/i3DMM/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/i3DMM/workspace.py -------------------------------------------------------------------------------- /model/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/image_utils.py -------------------------------------------------------------------------------- /model/meshToSDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/meshToSDF.py -------------------------------------------------------------------------------- /model/networks/i3dmm_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/networks/i3dmm_color.py -------------------------------------------------------------------------------- /model/networks/i3dmm_geom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/networks/i3dmm_geom.py -------------------------------------------------------------------------------- /model/networks/posEncode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/networks/posEncode.py -------------------------------------------------------------------------------- /model/npz2pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/npz2pc.py -------------------------------------------------------------------------------- /model/preprocessData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/preprocessData.py -------------------------------------------------------------------------------- /model/renderColorsFin.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/renderColorsFin.npy -------------------------------------------------------------------------------- /model/sphereTracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/sphereTracer.py -------------------------------------------------------------------------------- /model/train_i3DMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/model/train_i3DMM.py -------------------------------------------------------------------------------- /repoimgs/earLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/repoimgs/earLeft.png -------------------------------------------------------------------------------- /repoimgs/earRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/repoimgs/earRight.png -------------------------------------------------------------------------------- /repoimgs/fullteaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/repoimgs/fullteaser.png -------------------------------------------------------------------------------- /repoimgs/lms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/repoimgs/lms.png -------------------------------------------------------------------------------- /utils/obj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarun738/i3DMM/HEAD/utils/obj_utils.py --------------------------------------------------------------------------------