├── .gitignore ├── LICENSE ├── README.md ├── configs ├── blender_constant.txt ├── blender_linear.txt ├── llff_constant.txt └── llff_linear.txt ├── depth_supervised_exps ├── data │ ├── __init__.py │ ├── dataset_sampling.py │ ├── error_sources.py │ └── load_scene_blender.py ├── metric │ ├── __init__.py │ └── rmse.py ├── model │ ├── __init__.py │ └── run_nerf_helpers.py ├── run_nerf_sample_based_depth.py └── train_utils │ ├── __init__.py │ ├── hyperparameter_update.py │ └── logging.py ├── environment.yml ├── images ├── grazing_angle_v4.pdf └── grazing_angle_v4.png ├── load_blender.py ├── load_dtu.py ├── load_llff.py ├── nerf_extract_mesh.py ├── run_nerf_helpers.py ├── run_nerf_vanilla.py └── run_plnerf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/README.md -------------------------------------------------------------------------------- /configs/blender_constant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/configs/blender_constant.txt -------------------------------------------------------------------------------- /configs/blender_linear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/configs/blender_linear.txt -------------------------------------------------------------------------------- /configs/llff_constant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/configs/llff_constant.txt -------------------------------------------------------------------------------- /configs/llff_linear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/configs/llff_linear.txt -------------------------------------------------------------------------------- /depth_supervised_exps/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/data/__init__.py -------------------------------------------------------------------------------- /depth_supervised_exps/data/dataset_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/data/dataset_sampling.py -------------------------------------------------------------------------------- /depth_supervised_exps/data/error_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/data/error_sources.py -------------------------------------------------------------------------------- /depth_supervised_exps/data/load_scene_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/data/load_scene_blender.py -------------------------------------------------------------------------------- /depth_supervised_exps/metric/__init__.py: -------------------------------------------------------------------------------- 1 | from .rmse import compute_rmse 2 | -------------------------------------------------------------------------------- /depth_supervised_exps/metric/rmse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/metric/rmse.py -------------------------------------------------------------------------------- /depth_supervised_exps/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/model/__init__.py -------------------------------------------------------------------------------- /depth_supervised_exps/model/run_nerf_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/model/run_nerf_helpers.py -------------------------------------------------------------------------------- /depth_supervised_exps/run_nerf_sample_based_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/run_nerf_sample_based_depth.py -------------------------------------------------------------------------------- /depth_supervised_exps/train_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/train_utils/__init__.py -------------------------------------------------------------------------------- /depth_supervised_exps/train_utils/hyperparameter_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/train_utils/hyperparameter_update.py -------------------------------------------------------------------------------- /depth_supervised_exps/train_utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/depth_supervised_exps/train_utils/logging.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/environment.yml -------------------------------------------------------------------------------- /images/grazing_angle_v4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/images/grazing_angle_v4.pdf -------------------------------------------------------------------------------- /images/grazing_angle_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/images/grazing_angle_v4.png -------------------------------------------------------------------------------- /load_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/load_blender.py -------------------------------------------------------------------------------- /load_dtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/load_dtu.py -------------------------------------------------------------------------------- /load_llff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/load_llff.py -------------------------------------------------------------------------------- /nerf_extract_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/nerf_extract_mesh.py -------------------------------------------------------------------------------- /run_nerf_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/run_nerf_helpers.py -------------------------------------------------------------------------------- /run_nerf_vanilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/run_nerf_vanilla.py -------------------------------------------------------------------------------- /run_plnerf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikacuy/PL-NeRF/HEAD/run_plnerf.py --------------------------------------------------------------------------------