GGPS / datasets /README.md
Insta360-Research's picture
Init repo skeleton: README, datasets/ and ply/ structure
1a8136a verified
|
Raw
History Blame Contribute Delete
1.25 kB
# Datasets
Per-scene GGPS capture data. Each scene is uploaded as a **single archive** (e.g. `FTP.zip`),
which expands to the openMVG β†’ COLMAP layout consumed by the
[GGPS code repository](https://github.com/Insta360-Research-Team/GGPS).
## Scenes
| Scene | Archive | Panoramas | Notes |
|-------|---------|-----------|-------|
| FTP | `FTP.zip` | 354 | ERP panoramas + openMVG reconstruction |
| NSC | `NSC.zip` | 1862 | ERP panoramas + openMVG reconstruction |
| NSK | `NSK.zip` | 576 | ERP panoramas + openMVG reconstruction |
## Archive contents
```text
<scene>/
β”œβ”€β”€ images/ # ERP panoramas (.png)
└── reconstruction/
β”œβ”€β”€ sfm_data.bin # openMVG binary
β”œβ”€β”€ sfm_data.json # openMVG JSON (re-exportable from .bin)
β”œβ”€β”€ colorized.ply # colorized sparse point cloud (3DGS init)
β”œβ”€β”€ cloud_and_poses.ply
└── *_Report.html / *.svg
```
## Usage
Download and extract a scene, then point a config's `source_path` at it and run the
data-preparation pipeline (`scripts_new/prepare_data.sh`) from the code repo.
```bash
hf download Insta360-Research/GGPS datasets/FTP.zip --repo-type model --local-dir .
unzip datasets/FTP.zip -d data/
```