Awesome
GaussNav
PyTorch implementation of paper: GaussNav: Gaussian Splatting for Visual Navigation
Project Page Paper Dataset<br />
Overview:
Our GaussNav framework consists of three stages, including Frontier Exploration, Semantic Gaussian Construction and Gaussian Navigation. First, the agent employs Frontier Exploration to collect observations of the unknown environment. Second, the collected observations are used to construct Semantic Gaussian. By leveraging semantic segmentation algorithms, we assign semantic labels to each Gaussian. We then cluster Gaussians with their semantic labels and 3D positions, segmenting objects in the scene into different instances under various semantic categories. This representation is capable of preserving not only the 3D geometry of the scene and the semantic labels of each Gaussian, but also the texture details of the scene, thereby enabling novel view synthesis. Third, we render descriptive images for object instances, matching them with the goal image to effectively locate the target object. Upon determining the predicted goal object’s position, we can efficiently transform our Semantic Gaussian into grid map and employ path planning algorithms to accomplish the navigation.
This repository now includes the implementation of Instance ImageGoal Navigation using GT goal object's pose and Semantic Gaussian Construction.
Installing Dependencies
- We use v0.2.3 of habitat-sim, please follow the instructions to complete installation
- Install habitat-lab:
cd GaussianNavigation\3rdparty\habitat-lab-0.2.3
pip install -e habitat-lab
- Install pytorch according to your system configuration
- cd to the root directory, install requirements
pip install -r requirements.txt
Downloading scene dataset and episode dataset
- Follow the instructions in habitat-lab
- Move the dataset or create a symlink at
GaussianNavigation/data
Test setup
To verify that the data is setup correctly, run:
cd GaussianNavigation
python run.py
We provide a test dataset using the rendered results from habitat. Download it from google drive and place it under GaussianConstruction/data/habitat/
. To build Semantic Gaussian, run:
cd GaussianConstruction
python scripts\\habitat_splatam.py configs\\habitat\\habitat_splatam.py
To visualize the Semantic Gaussian, run:
python viz_scripts/final_recon_sem.py configs/habitat/habitat_splatam.py
After running the command, you should be able to get the following result:
Some tips
- If you want to use our code base to build your own project, you can write your own envs in
GaussianNavigation\vector_env\envs
- If you have any questions, feel free to open issues
TODO list:
- release the code of Gaussian Navigation
- release the code of Semantic Gaussian Construction
- release the code of collecting dataset from Habitat simulator
- release the model of previously constructed Semantic Gaussian
This project is still under development. Please feel free to raise issues or submit pull requests to contribute to our codebase.
GaussianConstruction builds upon Splatam, thanks for their great work!
Bibtex:
@misc{lei2024gaussnavgaussiansplattingvisual,
title={GaussNav: Gaussian Splatting for Visual Navigation},
author={Xiaohan Lei and Min Wang and Wengang Zhou and Houqiang Li},
year={2024},
eprint={2403.11625},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2403.11625},
}