├── .gitignore ├── LICENSE ├── Readme.md ├── img └── teaser.png ├── material ├── RelitVidgrace_probe.gif ├── ligImgVidgrace_probe.gif ├── relighting.gif ├── video_ani.gif ├── video_ani_facecover.gif └── video_ani_toytrain.gif └── src ├── blenderProcess_less_trainval.py ├── cam_view.py ├── dataloader.py ├── demo_relight_oneView.py ├── model.py ├── train_nelf_blender_multilight_normalalbedo_roughness_Fast_val.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/Readme.md -------------------------------------------------------------------------------- /img/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/img/teaser.png -------------------------------------------------------------------------------- /material/RelitVidgrace_probe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/material/RelitVidgrace_probe.gif -------------------------------------------------------------------------------- /material/ligImgVidgrace_probe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/material/ligImgVidgrace_probe.gif -------------------------------------------------------------------------------- /material/relighting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/material/relighting.gif -------------------------------------------------------------------------------- /material/video_ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/material/video_ani.gif -------------------------------------------------------------------------------- /material/video_ani_facecover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/material/video_ani_facecover.gif -------------------------------------------------------------------------------- /material/video_ani_toytrain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/material/video_ani_toytrain.gif -------------------------------------------------------------------------------- /src/blenderProcess_less_trainval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/src/blenderProcess_less_trainval.py -------------------------------------------------------------------------------- /src/cam_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/src/cam_view.py -------------------------------------------------------------------------------- /src/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/src/dataloader.py -------------------------------------------------------------------------------- /src/demo_relight_oneView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/src/demo_relight_oneView.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/src/model.py -------------------------------------------------------------------------------- /src/train_nelf_blender_multilight_normalalbedo_roughness_Fast_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/src/train_nelf_blender_multilight_normalalbedo_roughness_Fast_val.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oppo-us-research/RelitNeuLF/HEAD/src/utils.py --------------------------------------------------------------------------------