Datasets:

Modalities:
Image
Formats:
parquet
ArXiv:
License:
File size: 3,779 Bytes
17b24c2
 
 
 
 
3ccac81
 
 
 
 
 
8bbe278
ffc2939
3ccac81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17b24c2
 
 
 
 
e4e5887
 
 
 
 
 
17b24c2
 
 
e4e5887
 
 
 
 
17b24c2
 
 
 
e4e5887
 
 
17b24c2
 
8bbe278
17b24c2
 
 
 
 
8bbe278
17b24c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10e703d
17b24c2
 
 
 
 
 
 
 
 
 
 
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
97
98
99
100
101
102
---
license: bsd-3-clause
configs:
- config_name: indoor
  data_files:
  - split: train
    path: "data/indoor/train-*"
  - split: val
    path: "data/indoor/val-*"
  - split: test
    path: "data/indoor/test-*"
- config_name: nature
  data_files:
  - split: train
    path: "data/nature/train-*"
  - split: val
    path: "data/nature/val-*"
  - split: test
    path: "data/nature/test-*"
dataset_info:
- config_name: indoor
  features:
  - name: image
    dtype: image
  - name: depth
    dtype: binary
  - name: normals
    dtype: binary
- config_name: nature
  features:
  - name: image
    dtype: image
  - name: depth
    dtype: binary
  - name: normals
    dtype: binary
---

# 🗃️ Pano-Infinigen Dataset

<p align="center">
  <a title="Github" href="https://github.com/prs-eth/PaGeR" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
    <img src="https://img.shields.io/github/stars/prs-eth/PaGeR?label=GitHub%20%E2%98%85&logo=github&color=C8C" alt="Github">
</a>
  <a title="Website" href="https://pager360.github.io/" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
    <img src="https://img.shields.io/badge/%E2%99%A5%20Project%20-Website-blue" alt="Website">
</a>
<a title="arXiv" href="https://arxiv.org/abs/2505.09358" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
    <img src="https://img.shields.io/badge/%F0%9F%93%84%20Read%20-Paper-AF3436" alt="arXiv">
</a>
<a title="Hugging Face" href="https://huggingface.co/spaces/prs-eth/PaGeR" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
    <img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-FFD21E" alt="Hugging Face Spaces">
</a>
  <a title="License" href="https://opensource.org/licenses/BSD-3-Clause" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
  <img src="https://img.shields.io/badge/License-BSD_3--Clause-blue.svg" alt="License">
</a>
</p>


**Pano-Infinigen** is a synthetic dataset of high-resolution panoramic images in [ERP](https://en.wikipedia.org/wiki/Equirectangular_projection), featuring perfectly aligned RGB, Depth, and Surface Normals. This dataset was generated using a modified [Infinigen](https://infinigen.org/) framework to support wide-angle panoramic geometry.

It serves as the primary training data for [PaGeR](https://pager360.github.io/), a single-step diffusion model for zero-shot panoramic depth and normal estimation.

## Dataset Summary
- **Content:** Synthetic indoor and outdoor(nature) scenes.
- **Modality:** RGB (PNG), Depth (binary .npy), Surface Normals (binary .npy).
- **Projection:** Equirectangular (ERP).
- **Use Case:** Training and evaluating monocular panoramic depth and normal estimation models.

## Data Structure
The dataset is split into two configurations: `indoor` and `nature`. Each contains `train`, `validation`, and `test` splits.

| Feature | Type | Description |
| :--- | :--- | :--- |
| `image` | `PIL.Image` | 8-bit RGB Panoramic Image. |
| `depth` | `binary` | **float16** NumPy array. Range: [0, 75] meters. |
| `normals` | `binary` | **float16** NumPy array. Range: [-1, 1]. |



## How to Use
Since `depth` and `normals` are stored as binary blobs to preserve precision (float16), you need to use `io.BytesIO` to load them back into NumPy.

```python
import io
import numpy as np
from datasets import load_dataset

# Load the indoor training split
ds = load_dataset("prs-eth/PanoInfinigen", name="indoor", split="train")

sample = ds[0]

# 1. Get RGB Image
rgb = sample["image"]

# 2. Convert Binary Depth to NumPy (float16, 0-75m)
depth = np.load(io.BytesIO(sample["depth"]))

# 3. Convert Binary Normals to NumPy (float16, -1 to 1)
normals = np.load(io.BytesIO(sample["normals"]))