├── README.md
├── docs
├── index.html
├── paper_preview.PNG
├── paper_preview.jpg
├── supp2.mp4
├── vid.mp4
└── w3.css
└── nerface_code
├── environment.yml
├── nerf-pytorch
├── __init__.py
├── average.off
├── average_scaled.off
├── commands_ablation.txt
├── commands_eval_ablation.txt
├── commands_final_trains.txt
├── commands_geom_vis.txt
├── commands_rebuttal_videos.txt
├── commands_reenact.txt
├── commands_results_figures.txt
├── config
│ ├── andrei_2
│ │ ├── andrei_2_dvp_lcode_fixed_bg_256_paper_model.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_dave_driving.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_driven.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_half_data.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_nerf.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_bg.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_dynamics.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_expr.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_lcode.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_quarter_data.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_regularize100_lcode.yml
│ │ ├── andrei_2_dvp_lcode_fixed_bg_512_paper_model_regularize_lcode.yml
│ │ ├── andrei_2_dvp_nolcode_fixed_bg_256_compressed.yml
│ │ ├── andrei_2_lcode_fixed_bg.yml
│ │ ├── andrei_2_lcode_fixed_bg_normalized_512.yml
│ │ └── andrei_2_lcode_fixed_bg_paper_model.yml
│ ├── barbara
│ │ ├── barbara_lcode_fixed_bg_paper_model_512.yml
│ │ ├── manuel_lcode_fixed_bg_paper_model_512.yml
│ │ └── manuel_nolcode_fixed_bg_256_compressed.yml
│ ├── dave
│ │ ├── dave_dvp_lcode_fixed_bg_256_paper_model.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_driven.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_half_data.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_mouth.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_nerf.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_no_bg.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_no_dynamics.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_no_expr.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_no_lcode.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_quarter_data.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_regularize100_lcode.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_regularize_lcode.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_teaser.yml
│ │ ├── dave_dvp_lcode_fixed_bg_512_paper_model_vid.yml
│ │ ├── dave_dvp_nolcode_fixed_bg_256_compressed.yml
│ │ └── dave_lcode_fixed_bg_normalized_256.yml
│ └── ji
│ │ ├── ji_lcode_fixed_bg_paper_model.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_driven.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_half_data.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_nerf.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_no_bg.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_no_dynamics.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_no_expr.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_no_lcode.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_quarter_data.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_regularize100_lcode.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_regularize_lcode.yml
│ │ ├── ji_lcode_fixed_bg_paper_model_512_result_fig.yml
│ │ ├── ji_lcode_fixed_bg_smaller_paper_model_256.yml
│ │ ├── ji_lcode_fixed_bg_smaller_paper_model_256_train_cams.yml
│ │ ├── ji_nolcode_fixed_bg_256.yml
│ │ └── ji_nolcode_fixed_bg_256_train_cams.yml
├── environment.yml
├── eval_nerf.py
├── eval_transformed_rays.py
├── lieutils.py
├── nerf
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-38.pyc
│ │ ├── cfgnode.cpython-38.pyc
│ │ ├── load_blender.cpython-38.pyc
│ │ ├── load_flame.cpython-38.pyc
│ │ ├── load_llff.cpython-38.pyc
│ │ ├── models.cpython-38.pyc
│ │ ├── nerf_helpers.cpython-38.pyc
│ │ ├── train_utils.cpython-38.pyc
│ │ └── volume_rendering_utils.cpython-38.pyc
│ ├── cfgnode.py
│ ├── load_blender.py
│ ├── load_flame.py
│ ├── load_llff.py
│ ├── metrics.py
│ ├── models.py
│ ├── nerf_helpers.py
│ ├── renders
│ │ ├── dave_dvp_256_580k
│ │ │ └── metrics.txt
│ │ └── final
│ │ │ └── dave_ours
│ │ │ └── metrics.txt
│ ├── train_utils.py
│ └── volume_rendering_utils.py
├── real_to_nerf.py
├── requirements.txt
├── test.py
├── tiny_nerf.py
├── train_transformed_rays.py
├── videos.txt
└── vis_utils.py
├── nerf.yml
├── rendering
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-38.pyc
│ ├── options.cpython-38.pyc
│ └── spherical_sampler.cpython-38.pyc
├── options.py
├── pyrender_data.py
├── render_trimesh.py
└── spherical_sampler.py
└── requirements_pip.txt
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/README.md
--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/docs/index.html
--------------------------------------------------------------------------------
/docs/paper_preview.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/docs/paper_preview.PNG
--------------------------------------------------------------------------------
/docs/paper_preview.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/docs/paper_preview.jpg
--------------------------------------------------------------------------------
/docs/supp2.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/docs/supp2.mp4
--------------------------------------------------------------------------------
/docs/vid.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/docs/vid.mp4
--------------------------------------------------------------------------------
/docs/w3.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/docs/w3.css
--------------------------------------------------------------------------------
/nerface_code/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/environment.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/average.off:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/average.off
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/average_scaled.off:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/average_scaled.off
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/commands_ablation.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/commands_ablation.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/commands_eval_ablation.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/commands_eval_ablation.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/commands_final_trains.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/commands_final_trains.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/commands_geom_vis.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/commands_geom_vis.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/commands_rebuttal_videos.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/commands_rebuttal_videos.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/commands_reenact.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/commands_reenact.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/commands_results_figures.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/commands_results_figures.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_256_paper_model.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_256_paper_model.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_dave_driving.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_dave_driving.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_driven.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_driven.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_half_data.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_half_data.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_nerf.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_nerf.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_bg.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_bg.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_dynamics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_dynamics.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_expr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_expr.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_no_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_quarter_data.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_quarter_data.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_regularize100_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_regularize100_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_regularize_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_lcode_fixed_bg_512_paper_model_regularize_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_nolcode_fixed_bg_256_compressed.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_dvp_nolcode_fixed_bg_256_compressed.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_lcode_fixed_bg.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_lcode_fixed_bg.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_lcode_fixed_bg_normalized_512.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_lcode_fixed_bg_normalized_512.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_lcode_fixed_bg_paper_model.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/andrei_2/andrei_2_lcode_fixed_bg_paper_model.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/barbara/barbara_lcode_fixed_bg_paper_model_512.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/barbara/barbara_lcode_fixed_bg_paper_model_512.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/barbara/manuel_lcode_fixed_bg_paper_model_512.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/barbara/manuel_lcode_fixed_bg_paper_model_512.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/barbara/manuel_nolcode_fixed_bg_256_compressed.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/barbara/manuel_nolcode_fixed_bg_256_compressed.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_256_paper_model.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_256_paper_model.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_driven.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_driven.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_half_data.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_half_data.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_mouth.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_mouth.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_nerf.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_nerf.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_bg.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_bg.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_dynamics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_dynamics.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_expr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_expr.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_no_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_quarter_data.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_quarter_data.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_regularize100_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_regularize100_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_regularize_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_regularize_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_teaser.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_teaser.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_vid.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_lcode_fixed_bg_512_paper_model_vid.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_dvp_nolcode_fixed_bg_256_compressed.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_dvp_nolcode_fixed_bg_256_compressed.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/dave/dave_lcode_fixed_bg_normalized_256.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/dave/dave_lcode_fixed_bg_normalized_256.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_driven.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_driven.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_half_data.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_half_data.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_nerf.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_nerf.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_bg.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_bg.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_dynamics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_dynamics.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_expr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_expr.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_no_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_quarter_data.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_quarter_data.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_regularize100_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_regularize100_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_regularize_lcode.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_regularize_lcode.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_result_fig.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_paper_model_512_result_fig.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_smaller_paper_model_256.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_smaller_paper_model_256.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_smaller_paper_model_256_train_cams.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_lcode_fixed_bg_smaller_paper_model_256_train_cams.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_nolcode_fixed_bg_256.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_nolcode_fixed_bg_256.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/config/ji/ji_nolcode_fixed_bg_256_train_cams.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/config/ji/ji_nolcode_fixed_bg_256_train_cams.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/environment.yml
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/eval_nerf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/eval_nerf.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/eval_transformed_rays.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/eval_transformed_rays.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/lieutils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/lieutils.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__init__.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/cfgnode.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/cfgnode.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/load_blender.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/load_blender.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/load_flame.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/load_flame.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/load_llff.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/load_llff.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/models.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/models.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/nerf_helpers.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/nerf_helpers.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/train_utils.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/train_utils.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/__pycache__/volume_rendering_utils.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/__pycache__/volume_rendering_utils.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/cfgnode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/cfgnode.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/load_blender.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/load_blender.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/load_flame.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/load_flame.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/load_llff.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/load_llff.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/metrics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/metrics.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/models.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/nerf_helpers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/nerf_helpers.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/renders/dave_dvp_256_580k/metrics.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/renders/final/dave_ours/metrics.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/renders/final/dave_ours/metrics.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/train_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/train_utils.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/nerf/volume_rendering_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/nerf/volume_rendering_utils.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/real_to_nerf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/real_to_nerf.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/requirements.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/test.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/tiny_nerf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/tiny_nerf.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/train_transformed_rays.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/train_transformed_rays.py
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/videos.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/videos.txt
--------------------------------------------------------------------------------
/nerface_code/nerf-pytorch/vis_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf-pytorch/vis_utils.py
--------------------------------------------------------------------------------
/nerface_code/nerf.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/nerf.yml
--------------------------------------------------------------------------------
/nerface_code/rendering/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nerface_code/rendering/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/rendering/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/rendering/__pycache__/options.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/rendering/__pycache__/options.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/rendering/__pycache__/spherical_sampler.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/rendering/__pycache__/spherical_sampler.cpython-38.pyc
--------------------------------------------------------------------------------
/nerface_code/rendering/options.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/rendering/options.py
--------------------------------------------------------------------------------
/nerface_code/rendering/pyrender_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/rendering/pyrender_data.py
--------------------------------------------------------------------------------
/nerface_code/rendering/render_trimesh.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/rendering/render_trimesh.py
--------------------------------------------------------------------------------
/nerface_code/rendering/spherical_sampler.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/rendering/spherical_sampler.py
--------------------------------------------------------------------------------
/nerface_code/requirements_pip.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gafniguy/4D-Facial-Avatars/HEAD/nerface_code/requirements_pip.txt
--------------------------------------------------------------------------------