promc's picture
Update README.md
bb2ec30 verified
metadata
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 51 Yes chili-salmon-bowl.ply Supersplat
lawn-tree 205 Yes lawn-tree.ply

Download

Prerequisites

pip install -U "huggingface_hub[cli]"

Download Full Dataset

hf download promc/reconstruction-scenes \
  --repo-type dataset \
  --local-dir reconstruction-scenes

Download Single Scene

hf download promc/reconstruction-scenes \
  --repo-type dataset \
  --include "chili-salmon-bowl/**" \
  --local-dir reconstruction-scenes

Python API

pip install -U huggingface_hub
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 (Charin Rungchaowarat)