Dataset Viewer (First 5GB)
Auto-converted to Parquet Duplicate
Search is not available for this dataset
The dataset viewer is not available for this split.
Parquet error: Scan size limit exceeded: attempted to read 1114584379 bytes, limit is 300000000 bytes Make sure that 1. the Parquet files contain a page index to enable random access without loading entire row groups2. otherwise use smaller row-group sizes when serializing the Parquet files
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.

PanoCity Dataset

A Large-Scale Aerial Panoramic Dataset for 3D Scene Understanding


πŸ“Š Dataset Statistics

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

πŸ“‚ Data Structure

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/

πŸš€ Quick Start

1. Installation

pip install datasets

2. Load Dataset

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

πŸ“œ Citation

@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}
}

πŸ“§ Contact

For questions or issues, please open an issue in this repository.

Downloads last month
302

Paper for YijingGuo/PanoCity