| --- |
| license: cc-by-4.0 |
| task_categories: |
| - image-to-3d |
| - depth-estimation |
| - image-to-image |
| language: |
| - en |
| tags: |
| - 3D |
| - multi-view-stereo |
| - SfM |
| - aerial-imagery |
| - aerial-to-ground |
| pretty_name: Uni10K |
| size_categories: |
| - 1K<n<10K |
| --- |
| |
| <div align="center"> |
| <h1> |
| Uni10K from |
| <a href="https://arxiv.org/abs/2507.01110"> |
| <i>A LoD of Gaussians: Unified Training and Rendering for Ultra-Large-Scale Reconstruction with External Memory</i> |
| </a> |
| </h1> |
| |
| <p> |
| <span class="author-block"> |
| <a href="https://scholar.google.com/citations?user=J_Jm3Y4AAAAJ&hl=en" target="_blank">Felix Windisch</a><sup>1</sup> |
| </span> |
| <span class="author-block"> |
| <a href="https://scholar.google.com/citations?user=pMDepi0AAAAJ&hl=en" target="_blank">Thomas Köhler</a><sup>1</sup> |
| </span> |
| <span class="author-block"> |
| <a href="https://scholar.google.com/citations?user=G_0ZsTIAAAAJ&hl=en" target="_blank">Lukas Radl</a><sup>1</sup> |
| </span> |
| <span class="author-block"> |
| <a href="https://scholar.google.com/citations?user=9FjTo3YAAAAJ&hl=en" target="_blank">Mattia D'Urso</a><sup>1</sup> |
| </span> |
| <span class="author-block"> |
| <a href="https://scholar.google.com/citations?user=Pbtgcz8AAAAJ&hl=en" target="_blank">Michael Steiner</a><sup>1</sup> |
| </span> |
| <span class="author-block"> |
| <a href="https://scholar.google.com/citations?user=xXu8K6IAAAAJ&hl=en" target="_blank">Dieter Schmalstieg</a><sup>1,2</sup> |
| </span> |
| <span class="author-block"> |
| <a href="https://scholar.google.com/citations?user=meRwdycAAAAJ&hl=en" target="_blank">Markus Steinberger</a><sup>1,3</sup> |
| </span> |
| </p> |
| |
| <p> |
| <span class="author-block"> |
| <sup>1</sup>Graz University of Technology, |
| <sup>2</sup>University of Stuttgart, |
| <sup>3</sup>Huawei Technologies |
| </span> |
| </p> |
| |
| <h3>SIGGRAPH 2026</h3> |
|
|
| <p align="center"> |
| <a href="https://felixwindisch.github.io/ALoDOfGaussians/"> |
| <img src="https://img.shields.io/badge/Project-Page-blue" alt="Project Page"> |
| </a> |
| |
| <a href="https://arxiv.org/abs/2507.01110"> |
| <img src="https://img.shields.io/badge/arXiv-Paper-red?logo=arxiv" alt="Paper"> |
| </a> |
| </p> |
| |
| <div style="display: flex; justify-content: center; gap: 5px;"> |
| <img src="assets/uni10k.png" alt="Uni10K COLMAP sparse reconstruction" width="98%"> |
| </div> |
| |
| <p><em>COLMAP sparse reconstruction with cameras from Uni10K.</em></p> |
| </div> |
|
|
| ## General Information |
|
|
| Uni10K is a large-scale outdoor reconstruction dataset of a university campus covering approximately 100,000 m². The scene is captured from both ground-level and aerial viewpoints and contains more than 10,000 4K-resolution images. |
|
|
| A standard COLMAP reconstruction at this scale would typically require weeks of computation because of the complexity of image matching and mapping. To make reconstruction feasible, we use spatial and temporal priors together with a coarse-to-fine reconstruction scheme. |
|
|
| First, GPS information is used to reduce the image-matching complexity from quadratic to near-linear by limiting image comparisons to a predefined spatial radius. Second, because the frames are sampled from video sequences, we initially reconstruct a baseline model from frames sampled uniformly at 1 frame per second. Camera coverage is then densified by incrementally registering, triangulating, and refining additional images using local bundle adjustment. The process concludes with several rounds of global bundle adjustment. |
|
|
| The final reconstruction contains more than 10,000 images, 6.2 million sparse points, and an overall mean reprojection error of approximately 0.63 pixels. Training is performed on the full-resolution images. Every 8th frame, sorted alphabetically, is held out as part of the test set. |
|
|
| ## Dataset Format |
|
|
| The dataset follows the structure below. Images are undistorted and ready for 3D Gaussian Splatting. |
|
|
| ```text |
| undistorted/ |
| ├── sparse/ # Structure-from-Motion outputs in COLMAP format |
| │ ├── cameras # Intrinsic camera parameters |
| │ ├── images # Extrinsic parameters / camera poses |
| │ └── points3D # Sparse 3D point cloud |
| | |
| └──images/ # Extracted video frames |
| ├── aerial/ |
| │ ├── frame_000000.jpg |
| │ └── ... |
| └── ... |
| |
| ```` |
|
|
| ## Citation |
|
|
| If you find this dataset useful in your research, please consider citing: |
|
|
| ```bibtex |
| @article{windisch2025lod, |
| title={A LoD of Gaussians: Unified Training and Rendering for Ultra-Large-Scale Reconstruction with External Memory}, |
| author={Windisch, Felix and K{\"o}hler, Thomas and Radl, Lukas and D'Urso, Mattia and Steiner, Michael and Schmalstieg, Dieter and Steinberger, Markus}, |
| journal={arXiv preprint arXiv:2507.01110}, |
| year={2025} |
| } |
| ``` |