XT5un / P2NeRF

[CVPR2024] Global and Hierarchical Geometry Consistency Priors for Few-shot NeRFs in Indoor Scenes
10 stars 1 forks source link

[CVPR2024] Global and Hierarchical Geometry Consistency Priors for Few-shot NeRFs in Indoor Scenes

Installation

We use cuda-11.1 in our experiments.

conda create -n p2nerf python=3.6.15
conda activate p2nerf
pip install --upgrade pip
pip install --upgrade jaxlib==0.1.68+cuda111 -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
pip install -r requirements.txt

Data

You can download the data we processed from here and unzip the downloaded zip into the data/ folder.

Keypoints Prior [Optional]

If you want to generate keypoint prior data, you first need to install torch, plyfile and kornia, and then run the get_kpts_prior.py script.

# install
pip install torch==1.10.0+cu111 -f https://download.pytorch.org/whl/torch_stable.html
pip install kornia plyfile
# generate keypoints prior
python get_kpts_prior.py --data_dir data/P2NeRF/DDP --out_dir data/P2NeRF/prior2/DDP

Running

Scannet dataset

chmod +x ./scripts/ddp.sh
./scripts/ddp.sh

Replica dataset

chmod +x ./scripts/replica.sh
./scripts/replica.sh

Citation

@InProceedings{Sun2024P2NeRF,
    author = {Xiaotian Sun and Qingshan Xu and Xinjie Yang and Yu Zang and Cheng Wang}, 
    title = {Global and Hierarchical Geometry Consistency Priors for Few-shot NeRFs in Indoor Scenes},
    booktitle = {Proc. IEEE Conf. on Computer Vision and Pattern Recognition (CVPR)},
    year = {2024},
}

Acknowledgments

This code heavily references the FreeNeRF and RegNeRF codebases, and the authors are thanked for their open source behaviour.