├── 3dfacecam.gif ├── LICENSE ├── README.md ├── arch.png ├── config.yml ├── data ├── __pycache__ │ └── edit_obj.cpython-36.pyc ├── base_mtl.mtl ├── edit_obj.py ├── face_v.npy ├── reduced_train_data_130.npy ├── template_mesh.obj └── zid_dictionary.pkl ├── environment.yml ├── gen_reduced_data.py ├── generate_faces.py ├── preprocess_traindata.py ├── shape_model ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-39.pyc │ ├── architectures.cpython-36.pyc │ ├── architectures.cpython-39.pyc │ ├── mesh_obj.cpython-36.pyc │ └── mesh_obj.cpython-39.pyc ├── ae │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── datasets.cpython-39.pyc │ ├── datasets.py │ ├── gen_reduced_data.py │ └── models │ │ ├── AE.py │ │ └── __pycache__ │ │ └── AE.cpython-39.pyc ├── architectures.py ├── gan3d │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── renderer_pt3d.cpython-36.pyc │ │ └── renderer_pt3d.cpython-39.pyc │ ├── renderer_pt3d.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── utils.cpython-36.pyc │ │ └── utils.cpython-39.pyc │ │ └── utils.py └── mesh_obj.py ├── test_gan3d.py ├── test_texture.py ├── texture_model ├── __pycache__ │ ├── preprocess.cpython-36.pyc │ ├── progan_modules.cpython-36.pyc │ ├── progan_modules.cpython-38.pyc │ ├── test_texture.cpython-36.pyc │ └── test_texture.cpython-38.pyc ├── assets │ └── texture_processing │ │ ├── __pycache__ │ │ ├── add_tex.cpython-36.pyc │ │ └── add_tex.cpython-38.pyc │ │ ├── add_tex.py │ │ └── base_tex.npy ├── preprocess.py └── progan_modules.py ├── train_ae.py ├── train_gan3d.py └── train_texture.py /3dfacecam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/3dfacecam.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/README.md -------------------------------------------------------------------------------- /arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/arch.png -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/config.yml -------------------------------------------------------------------------------- /data/__pycache__/edit_obj.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/data/__pycache__/edit_obj.cpython-36.pyc -------------------------------------------------------------------------------- /data/base_mtl.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/data/base_mtl.mtl -------------------------------------------------------------------------------- /data/edit_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/data/edit_obj.py -------------------------------------------------------------------------------- /data/face_v.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/data/face_v.npy -------------------------------------------------------------------------------- /data/reduced_train_data_130.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/data/reduced_train_data_130.npy -------------------------------------------------------------------------------- /data/template_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/data/template_mesh.obj -------------------------------------------------------------------------------- /data/zid_dictionary.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/data/zid_dictionary.pkl -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/environment.yml -------------------------------------------------------------------------------- /gen_reduced_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/gen_reduced_data.py -------------------------------------------------------------------------------- /generate_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/generate_faces.py -------------------------------------------------------------------------------- /preprocess_traindata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/preprocess_traindata.py -------------------------------------------------------------------------------- /shape_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shape_model/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /shape_model/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/__pycache__/architectures.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/__pycache__/architectures.cpython-36.pyc -------------------------------------------------------------------------------- /shape_model/__pycache__/architectures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/__pycache__/architectures.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/__pycache__/mesh_obj.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/__pycache__/mesh_obj.cpython-36.pyc -------------------------------------------------------------------------------- /shape_model/__pycache__/mesh_obj.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/__pycache__/mesh_obj.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/ae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shape_model/ae/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/ae/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/ae/__pycache__/datasets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/ae/__pycache__/datasets.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/ae/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/ae/datasets.py -------------------------------------------------------------------------------- /shape_model/ae/gen_reduced_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/ae/gen_reduced_data.py -------------------------------------------------------------------------------- /shape_model/ae/models/AE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/ae/models/AE.py -------------------------------------------------------------------------------- /shape_model/ae/models/__pycache__/AE.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/ae/models/__pycache__/AE.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/architectures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/architectures.py -------------------------------------------------------------------------------- /shape_model/gan3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shape_model/gan3d/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/__pycache__/renderer_pt3d.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/__pycache__/renderer_pt3d.cpython-36.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/__pycache__/renderer_pt3d.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/__pycache__/renderer_pt3d.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/renderer_pt3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/renderer_pt3d.py -------------------------------------------------------------------------------- /shape_model/gan3d/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shape_model/gan3d/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/utils/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/utils/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /shape_model/gan3d/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/gan3d/utils/utils.py -------------------------------------------------------------------------------- /shape_model/mesh_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/shape_model/mesh_obj.py -------------------------------------------------------------------------------- /test_gan3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/test_gan3d.py -------------------------------------------------------------------------------- /test_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/test_texture.py -------------------------------------------------------------------------------- /texture_model/__pycache__/preprocess.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/__pycache__/preprocess.cpython-36.pyc -------------------------------------------------------------------------------- /texture_model/__pycache__/progan_modules.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/__pycache__/progan_modules.cpython-36.pyc -------------------------------------------------------------------------------- /texture_model/__pycache__/progan_modules.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/__pycache__/progan_modules.cpython-38.pyc -------------------------------------------------------------------------------- /texture_model/__pycache__/test_texture.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/__pycache__/test_texture.cpython-36.pyc -------------------------------------------------------------------------------- /texture_model/__pycache__/test_texture.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/__pycache__/test_texture.cpython-38.pyc -------------------------------------------------------------------------------- /texture_model/assets/texture_processing/__pycache__/add_tex.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/assets/texture_processing/__pycache__/add_tex.cpython-36.pyc -------------------------------------------------------------------------------- /texture_model/assets/texture_processing/__pycache__/add_tex.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/assets/texture_processing/__pycache__/add_tex.cpython-38.pyc -------------------------------------------------------------------------------- /texture_model/assets/texture_processing/add_tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/assets/texture_processing/add_tex.py -------------------------------------------------------------------------------- /texture_model/assets/texture_processing/base_tex.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/assets/texture_processing/base_tex.npy -------------------------------------------------------------------------------- /texture_model/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/preprocess.py -------------------------------------------------------------------------------- /texture_model/progan_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/texture_model/progan_modules.py -------------------------------------------------------------------------------- /train_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/train_ae.py -------------------------------------------------------------------------------- /train_gan3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/train_gan3d.py -------------------------------------------------------------------------------- /train_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishrai3799/3DFaceCAM/HEAD/train_texture.py --------------------------------------------------------------------------------