├── .gitignore ├── LICENSE ├── README.md ├── configs ├── meetroom.json ├── meetroom_full.json ├── meetroom_init.json ├── n3dv.json ├── n3dv_full.json ├── n3dv_full_hightv.json └── n3dv_init.json ├── opt.py ├── prepare_dataset.py ├── render_delta.py ├── train_video_n3dv_base.py ├── train_video_n3dv_full.py ├── train_video_n3dv_pilot.py └── util ├── __init__.py ├── co3d_dataset.py ├── config_util.py ├── dataset.py ├── dataset_base.py ├── llff_dataset.py ├── load_llff.py ├── nerf_dataset.py ├── nsvf_dataset.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/README.md -------------------------------------------------------------------------------- /configs/meetroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/configs/meetroom.json -------------------------------------------------------------------------------- /configs/meetroom_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/configs/meetroom_full.json -------------------------------------------------------------------------------- /configs/meetroom_init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/configs/meetroom_init.json -------------------------------------------------------------------------------- /configs/n3dv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/configs/n3dv.json -------------------------------------------------------------------------------- /configs/n3dv_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/configs/n3dv_full.json -------------------------------------------------------------------------------- /configs/n3dv_full_hightv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/configs/n3dv_full_hightv.json -------------------------------------------------------------------------------- /configs/n3dv_init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/configs/n3dv_init.json -------------------------------------------------------------------------------- /opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/opt.py -------------------------------------------------------------------------------- /prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/prepare_dataset.py -------------------------------------------------------------------------------- /render_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/render_delta.py -------------------------------------------------------------------------------- /train_video_n3dv_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/train_video_n3dv_base.py -------------------------------------------------------------------------------- /train_video_n3dv_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/train_video_n3dv_full.py -------------------------------------------------------------------------------- /train_video_n3dv_pilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/train_video_n3dv_pilot.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/co3d_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/co3d_dataset.py -------------------------------------------------------------------------------- /util/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/config_util.py -------------------------------------------------------------------------------- /util/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/dataset.py -------------------------------------------------------------------------------- /util/dataset_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/dataset_base.py -------------------------------------------------------------------------------- /util/llff_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/llff_dataset.py -------------------------------------------------------------------------------- /util/load_llff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/load_llff.py -------------------------------------------------------------------------------- /util/nerf_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/nerf_dataset.py -------------------------------------------------------------------------------- /util/nsvf_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/nsvf_dataset.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgoHunt/StreamRF/HEAD/util/util.py --------------------------------------------------------------------------------