| --- |
| license: cc0-1.0 |
| task_categories: |
| - image-to-3d |
| tags: |
| - art |
| --- |
| |
| # Reconstruction Scenes Dataset |
|
|
| A collection of real-world scenes designed for **Structure-from-Motion (SfM)**, **COLMAP pipelines**, and **Gaussian Splatting workflows**. |
|
|
| This dataset provides multiple levels of usability: |
|
|
| * Raw images for reconstruction |
| * Precomputed COLMAP outputs |
| * Optional **splat-ready exports** (no preprocessing required) |
|
|
| ## Highlights |
|
|
| * COLMAP-ready scenes (images + cameras + poses) |
| * Splat-ready export available (`gsplat/`) |
| * Modular per-scene structure with support for partial downloads |
|
|
| ## Scene Summary |
|
|
| | Scene | Images | COLMAP | Splat Ready | Viewer | |
| | ----------------- | ------ | ------ | ----------- | ------ | |
| | [chili-salmon-bowl](https://huggingface.co/datasets/promc/reconstruction-scenes/tree/main/chili-salmon-bowl) | 51 | Yes | [chili-salmon-bowl.ply](https://huggingface.co/datasets/promc/reconstruction-scenes/blob/main/chili-salmon-bowl/gsplat/chili-salmon-bowl.ply) | [Supersplat](https://superspl.at/scene/2079dae5) | |
| | [lawn-tree](https://huggingface.co/datasets/promc/reconstruction-scenes/tree/main/lawn-tree) | 205 | Yes | [lawn-tree.ply](https://huggingface.co/datasets/promc/reconstruction-scenes/blob/main/lawn-tree/gsplat/lawn-tree.ply) | | |
|
|
| ## Download |
|
|
| ### Prerequisites |
|
|
| ```bash |
| pip install -U "huggingface_hub[cli]" |
| ``` |
|
|
| ### Download Full Dataset |
|
|
| ```bash |
| hf download promc/reconstruction-scenes \ |
| --repo-type dataset \ |
| --local-dir reconstruction-scenes |
| ``` |
|
|
| ### Download Single Scene |
|
|
| ```bash |
| hf download promc/reconstruction-scenes \ |
| --repo-type dataset \ |
| --include "chili-salmon-bowl/**" \ |
| --local-dir reconstruction-scenes |
| ``` |
|
|
| --- |
|
|
| ### Python API |
|
|
| ```bash |
| pip install -U huggingface_hub |
| ``` |
|
|
| ```python |
| from huggingface_hub import snapshot_download |
| |
| snapshot_download( |
| repo_id="promc/reconstruction-scenes", |
| repo_type="dataset", |
| allow_patterns="chili-salmon-bowl/**", |
| local_dir="reconstruction-scenes", |
| ) |
| ``` |
|
|
| ## Author |
|
|
| Created by [promto-c](https://github.com/promto-c) (Charin Rungchaowarat) |
|
|