promc commited on
Commit
bb2ec30
·
verified ·
1 Parent(s): 7debc89

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -1
README.md CHANGED
@@ -4,4 +4,75 @@ task_categories:
4
  - image-to-3d
5
  tags:
6
  - art
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - image-to-3d
5
  tags:
6
  - art
7
+ ---
8
+
9
+ # Reconstruction Scenes Dataset
10
+
11
+ A collection of real-world scenes designed for **Structure-from-Motion (SfM)**, **COLMAP pipelines**, and **Gaussian Splatting workflows**.
12
+
13
+ This dataset provides multiple levels of usability:
14
+
15
+ * Raw images for reconstruction
16
+ * Precomputed COLMAP outputs
17
+ * Optional **splat-ready exports** (no preprocessing required)
18
+
19
+ ## Highlights
20
+
21
+ * COLMAP-ready scenes (images + cameras + poses)
22
+ * Splat-ready export available (`gsplat/`)
23
+ * Modular per-scene structure with support for partial downloads
24
+
25
+ ## Scene Summary
26
+
27
+ | Scene | Images | COLMAP | Splat Ready | Viewer |
28
+ | ----------------- | ------ | ------ | ----------- | ------ |
29
+ | [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) |
30
+ | [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) | |
31
+
32
+ ## Download
33
+
34
+ ### Prerequisites
35
+
36
+ ```bash
37
+ pip install -U "huggingface_hub[cli]"
38
+ ```
39
+
40
+ ### Download Full Dataset
41
+
42
+ ```bash
43
+ hf download promc/reconstruction-scenes \
44
+ --repo-type dataset \
45
+ --local-dir reconstruction-scenes
46
+ ```
47
+
48
+ ### Download Single Scene
49
+
50
+ ```bash
51
+ hf download promc/reconstruction-scenes \
52
+ --repo-type dataset \
53
+ --include "chili-salmon-bowl/**" \
54
+ --local-dir reconstruction-scenes
55
+ ```
56
+
57
+ ---
58
+
59
+ ### Python API
60
+
61
+ ```bash
62
+ pip install -U huggingface_hub
63
+ ```
64
+
65
+ ```python
66
+ from huggingface_hub import snapshot_download
67
+
68
+ snapshot_download(
69
+ repo_id="promc/reconstruction-scenes",
70
+ repo_type="dataset",
71
+ allow_patterns="chili-salmon-bowl/**",
72
+ local_dir="reconstruction-scenes",
73
+ )
74
+ ```
75
+
76
+ ## Author
77
+
78
+ Created by [promto-c](https://github.com/promto-c) (Charin Rungchaowarat)