Views
No views yet
.ply Gaussian models for
PanoLOG / GGPS — panoramic (equirectangular / ERP) outdoor 3D Gaussian Splatting
reconstruction. For training and rendering code, see the
GGPS code repository.datasets/ — per-scene capture data (ERP panoramas + openMVG reconstruction), one archive per scene.ply/ — pretrained / reconstructed Gaussian Splatting .ply models.| 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 |
.png.1GGPS/
2├── datasets/ # per-scene archives (FTP.zip, NSC.zip, NSK.zip, ...)
3│ └── README.md
4└── ply/ # pretrained .ply Gaussian models
5 └── README.md1<scene>/
2├── images/ # ERP panoramas
3└── reconstruction/
4 ├── sfm_data.bin # openMVG binary (sfm_data.json can be re-exported from this)
5 ├── sfm_data.json # openMVG JSON
6 ├── colorized.ply # colorized sparse point cloud (3DGS init)
7 └── cloud_and_poses.ply1pip install -U "huggingface_hub[cli]"
2
3# whole repo
4hf download Insta360-Research/GGPS --repo-type model --local-dir GGPS
5
6# a single scene archive
7hf download Insta360-Research/GGPS datasets/FTP.zip --repo-type model --local-dir .1@article{panolog2026,
2 title = {Geometry and Gradient-based Partitioning for Panoramic Outdoor Reconstruction},
3 author = {Chen, Weijian and Yao, Weibo and Zhang, Yuhang and Tang, Xiaolin and
4 Wang, Guo and Zhang, Weijun and Gao, Xitong and Chen, Yihao and
5 Qin, Hongde and Qi, Lu},
6 journal = {arXiv preprint arXiv:2607.08769},
7 year = {2026}
8}