Official code release accompanying the paper "Simple-RF: Regularizing Sparse Input Radiance Fields with Simpler Solutions"
Note
This repository contains the code for Simple-ZipNeRF only. The integrated code for Simple-NeRF and Simple-TensoRF can be found at NagabhushanSN95/Simple-RF.
Environment details are available in EnvironmentData/SimpleZipNeRF.yml
. The environment can be created using conda
cd EnvironmentData
bash Install_SimpleZipNeRF.sh
cd ..
Caution
Sometimes the new environment doesn't activate when done through a bash script. Please ensure that that SimpleZipNeRF environment is activated before the other packages installation begins otherwise the packages get installed in the base environment.
export PYTHONPATH=<ABSOLUTE_PATH_TO_SIMPLERF_DIR>/src:$PYTHONPATH
Please follow the instructions in database_utils/README.md file to set up various databases. Instructions for custom databases are also included here.
The files TrainerTester08_MipNeRF360.sh
, TrainerTester04_NeRF_Synthetic.sh
contain the code for training, testing and quality assessment along with the configs for the respective databases.
cd src/
bash TrainerTester08_MipNeRF360.sh ../runs/training/train7140/Configs.gin train_set_num=4
bash TrainerTester04_NeRF_Synthetic.sh ../runs/training/train3012/Configs.gin train_set_num=2
cd ../
The train configs are also provided in runs/training/train****
folders for each of the scenes. Please download the trained models from runs/training
directory in the published data (link available at the top) and place them in the appropriate folders. Disable the train call in the TrainerTester files and run the respective files. This will run inference using the pre-trained models and also evaluate the synthesized images and reports the performance.
Evaluation of the rendered images will be automatically done after rendering the images. To compute depth based metrics, ground truth depth maps are needed. We obtain (pseudo) ground truth depth maps by training the vanilla ZipNeRF with dense input views. Download these depth maps from data
directory in the published data (link available at the top) and place them in the appropriate folders.
MIT License
Copyright (c) 2024 Nagabhushan Somraj, Sai Harsha Mupparaju, Adithyan Karanayil, Rajiv Soundararajan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
If you use this code for your research, please cite our paper
@article{somraj2024simplerf,
title = {{Simple-RF}: Regularizing Sparse Input Radiance Fields with Simpler Solutions},
author = {Somraj, Nagabhushan and Mupparaju, Sai Harsha and Karanayil, Adithyan and Soundararajan, Rajiv},
journal = {arXiv: 2404.19015},
month = {May},
year = {2024},
doi = {10.48550/arXiv.2404.19015},
}
If you use outputs/results of Simple-RF model in your publication, please specify the version as well. The current version is 1.0.
Our code is built on top of zipnerf-pytorch and SimpleNeRF codebases.
For any queries or bugs regarding Simple-ZipNeRF, please raise an issue.