PanoVGGT: Feed-Forward 3D Reconstruction from Panoramic Imagery
Paper β’ 2603.17571 β’ Published
Error code: TooBigContentError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
A Large-Scale Aerial Panoramic Dataset for 3D Scene Understanding
| Attribute | Value |
|---|---|
| Total Size | 1.4 TB |
| Cities | Beijing (20 blocks), Jinan (76 blocks), Ningbo (41 blocks) |
| Panoramic RGB Images | 119,537 (2048Γ4096) |
| Panoramic Depth Maps | 119,537 (2048Γ4096) |
| Total Images | 239,074 |
| Image Format | PNG |
PanoCity/
βββ splits_config.json # Official train/test splits
βββ beijing/
β βββ beijing_block0/
β β βββ pano_images/ # RGB panoramic images
β β βββ panodepth_images/ # Depth panoramic images
β β βββ beijing_block0_poses.json # Pinhole camera poses
β β βββ beijing_Pano_block0_poses.json # Panoramic camera poses
β βββ ...
βββ jinan/
βββ ningbo/
pip install datasets
from datasets import load_dataset
# Load dataset (streaming recommended if storage is limited)
dataset = load_dataset("USERNAME/PanoCity", streaming=True)
# Iterate through samples
for sample in dataset["train"]:
rgb_image = sample["rgb"] # PIL Image
depth_map = sample["depth"] # PIL Image
pose = sample["pose"] # dict with transformation_matrix
break
@article{guo2026panovggt,
title={PanoVGGT: Feed-Forward 3D Reconstruction from Panoramic Imagery},
author={Guo, Yijing and Chao, Mengjun and Wang, Luo and Zhao, Tianyang and Dai, Haizhao and Zhang, Yingliang and Yu, Jingyi and Shi, Yujiao},
journal={arXiv preprint arXiv:2603.17571},
year={2026}
}
For questions or issues, please open an issue in this repository.