File size: 3,161 Bytes
1a8136a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b0e7431
 
 
 
 
 
 
 
 
 
 
1a8136a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
license: cc-by-nc-4.0
tags:
  - 3d-gaussian-splatting
  - panorama
  - equirectangular
  - 3d-reconstruction
  - gaussian-splatting
---

<div align="center">

# GGPS β€” Datasets & Pretrained Models

**Geometry and Gradient-based Partitioning for Panoramic Outdoor Reconstruction**

[![Code](https://img.shields.io/badge/GitHub-Code-181717?logo=github&logoColor=white)](https://github.com/Insta360-Research-Team/GGPS)
[![arXiv](https://img.shields.io/badge/arXiv-Paper-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2607.08769)
[![Homepage](https://img.shields.io/badge/Project-Homepage-1a73e8?logo=googlechrome&logoColor=white)](https://insta360-research-team.github.io/GGPS-Website/)

</div>

## πŸ“¦ Overview

This repository hosts the **datasets** and **pretrained `.ply` Gaussian models** for
PanoLOG / GGPS β€” panoramic (equirectangular / ERP) outdoor 3D Gaussian Splatting
reconstruction. For training and rendering code, see the
[GGPS code repository](https://github.com/Insta360-Research-Team/GGPS).

- `datasets/` β€” per-scene capture data (ERP panoramas + openMVG reconstruction), one archive per scene.
- `ply/` β€” pretrained / reconstructed Gaussian Splatting `.ply` models.

## πŸ”’ Dataset overview

| Scene | Archive | Panoramas | Reconstruction |
|-------|---------|----------:|----------------|
| FTP   | `datasets/FTP.zip` | 354  | openMVG (`sfm_data.bin`/`.json`, `colorized.ply`, `cloud_and_poses.ply`) |
| NSC   | `datasets/NSC.zip` | 1862 | openMVG (same as above) |
| NSK   | `datasets/NSK.zip` | 576  | openMVG (same as above) |
| **Total** | | **2792** | |

All panoramas are equirectangular (ERP) `.png`.

## πŸ—‚οΈ Layout

```text
GGPS/
β”œβ”€β”€ datasets/            # per-scene archives (FTP.zip, NSC.zip, NSK.zip, ...)
β”‚   └── README.md
└── ply/                 # pretrained .ply Gaussian models
    └── README.md
```

Each dataset archive expands to the openMVG β†’ COLMAP layout expected by the code repo:

```text
<scene>/
β”œβ”€β”€ images/                  # ERP panoramas
└── reconstruction/
    β”œβ”€β”€ sfm_data.bin         # openMVG binary (sfm_data.json can be re-exported from this)
    β”œβ”€β”€ sfm_data.json        # openMVG JSON
    β”œβ”€β”€ colorized.ply        # colorized sparse point cloud (3DGS init)
    └── cloud_and_poses.ply
```

## ⬇️ Download

With the Hugging Face CLI:

```bash
pip install -U "huggingface_hub[cli]"

# whole repo
hf download Insta360-Research/GGPS --repo-type model --local-dir GGPS

# a single scene archive
hf download Insta360-Research/GGPS datasets/FTP.zip --repo-type model --local-dir .
```

## πŸ“„ License

Released under **CC BY-NC 4.0** (non-commercial use only), consistent with the GGPS code repository.

## πŸ“Œ Citation

```bibtex
@article{panolog2026,
  title   = {Geometry and Gradient-based Partitioning for Panoramic Outdoor Reconstruction},
  author  = {Chen, Weijian and Yao, Weibo and Zhang, Yuhang and Tang, Xiaolin and
             Wang, Guo and Zhang, Weijun and Gao, Xitong and Chen, Yihao and
             Qin, Hongde and Qi, Lu},
  journal = {arXiv preprint arXiv:2607.08769},
  year    = {2026}
}
```