This project the PyTorch implementation of NeRF-Loc, a visual-localization pipeline based on conditional NeRF.
git clone --recursive https://github.com/JenningsL/nerf-loc.git
pip install -r requirements.txt
Cambridge
, 12scenes
, 7scenes
and Onepose
following their instructions. python3 datasets/video/preprocess_cambridge.py ${CAMBRIDGE_DATA_ROOT}
python3 datasets/video/preprocess_12scenes.py ${12SCENES_DATA_ROOT}
python3 datasets/video/preprocess_7scenes.py ${7SCENES_DATA_ROOT}
python3 models/image_retrieval/run.py --config ${CONFIG}
replace {CONFIG}
with configs/cambridge_all.txt
| configs/12scenes_all.txt
| configs/7scenes_all.txt
| etc.
First, train scene-agnostic NeRF-Loc across different scenes:
python3 pl/train.py --config ${CONFIG} --num_nodes ${HOST_NUM}
replace {CONFIG}
with configs/cambridge_all.txt
| configs/12scenes_all.txt
| configs/7scenes_all.txt
| etc.
Then, finetune on a certain scene to get scene-specific NeRF-Loc model.
python3 pl/train.py --config ${CONFIG} --num_nodes ${HOST_NUM}
replace {CONFIG}
with configs/cambridge/KingsCollege.txt
| configs/12scenes/apt1_kitchen.txt
| configs/7scenes/chess.txt
| etc.
To evaluate NeRF-Loc:
python3 pl/test.py --config ${CONFIG} --ckpt ${CKPT}
replace {CONFIG}
with configs/cambridge/KingsCollege.txt
| configs/12scenes/apt1_kitchen.txt
| configs/7scenes/chess.txt
| etc.
replace {CKPT}
with the path of checkpoint file.
The 2d backbone weights of COTR can be downloaded here, please put it in models/COTR/default/checkpoint.pth.tar
.
You can download the NeRF-Loc pre-trained models [here](). TODO:
Our codes are largely borrowed from the following works, thanks for their excellent contributions!
@misc{liu2023nerfloc,
title={NeRF-Loc: Visual Localization with Conditional Neural Radiance Field},
author={Jianlin Liu and Qiang Nie and Yong Liu and Chengjie Wang},
year={2023},
eprint={2304.07979},
archivePrefix={arXiv},
primaryClass={cs.CV}
}