Add dataset card for GS3LAM
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-segmentation
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# GS3LAM: Gaussian Semantic Splatting SLAM
|
| 8 |
+
|
| 9 |
+
This dataset repository contains the semantic labels and processed data associated with the paper [GS3LAM: Gaussian Semantic Splatting SLAM](https://huggingface.co/papers/2603.27781).
|
| 10 |
+
|
| 11 |
+
GS3LAM is a Gaussian Semantic Splatting SLAM framework that processes multimodal data (RGB, depth, and semantics) to render consistent, dense semantic maps in real-time. This repository primarily provides semantic labels for existing benchmarks where they were previously unavailable or required consistent processing.
|
| 12 |
+
|
| 13 |
+
- **Project Page:** [https://lif314.github.io/projects/gs3lam/](https://lif314.github.io/projects/gs3lam/)
|
| 14 |
+
- **Repository:** [https://github.com/lif314/GS3LAM](https://github.com/lif314/GS3LAM)
|
| 15 |
+
- **Paper:** [arXiv:2603.27781](https://arxiv.org/abs/2603.27781)
|
| 16 |
+
|
| 17 |
+
## Dataset Description
|
| 18 |
+
|
| 19 |
+
The project utilizes and provides enhancements for several SLAM benchmarks:
|
| 20 |
+
|
| 21 |
+
- **Replica:** The original Replica dataset lacks semantic labels. This version includes semantic labels obtained from vMAP to enable semantic SLAM evaluation.
|
| 22 |
+
- **TUM-RGBD:** Includes pseudo-semantic labels generated by DEVA for the `freiburg1_desk` sequence to evaluate semantic consistency in real-world scenarios.
|
| 23 |
+
- **ScanNet:** Uses standard sequences (e.g., `scene0000_00`, `scene0059_00`) for benchmarking tracking and reconstruction.
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
To use this dataset with the GS3LAM framework, please follow the installation instructions in the [official GitHub repository](https://github.com/lif314/GS3LAM).
|
| 28 |
+
|
| 29 |
+
Example command to run GS3LAM on a Replica scene:
|
| 30 |
+
|
| 31 |
+
```bash
|
| 32 |
+
python run.py configs/Replica/office0.py
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
## Citation
|
| 36 |
+
|
| 37 |
+
```bibtex
|
| 38 |
+
@inproceedings{li2024gs3lam,
|
| 39 |
+
author = {Li, Linfei and Zhang, Lin and Wang, Zhong and Shen, Ying},
|
| 40 |
+
title = {GS3LAM: Gaussian Semantic Splatting SLAM},
|
| 41 |
+
year = {2024},
|
| 42 |
+
publisher = {Association for Computing Machinery},
|
| 43 |
+
address = {New York, NY, USA},
|
| 44 |
+
booktitle = {Proceedings of the 32nd ACM International Conference on Multimedia},
|
| 45 |
+
pages = {3019–3027},
|
| 46 |
+
numpages = {9},
|
| 47 |
+
location = {Melbourne VIC, Australia},
|
| 48 |
+
series = {MM '24}
|
| 49 |
+
}
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## License
|
| 53 |
+
This work relies on SplaTAM; please adhere to the guidelines set forth in the [SplaTAM license](https://github.com/spla-tam/SplaTAM/blob/main/LICENSE).
|