Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
image
imagewidth (px)
1.02k
2.05k
End of preview. Expand in Data Studio

🏠 OmniRooms

OmniRooms is a large-scale synthetic indoor dataset for panoramic 3D perception, depth estimation, and monocular view synthesis. It is designed for research on 3D reconstruction and 3D Gaussian Splatting from universal camera inputs, especially equirectangular panoramas and wide-FoV fisheye images.

The dataset contains 16 large indoor scenes and each scene contains multiple rooms. In total, the current release contains 271k equirectangular RGB panoramas and paired depth maps, plus 11,880 derived fisheye images for OmniRooms-Wide.

πŸ–ΌοΈ Scene Preview

🏘️ 16 Scenes

OmniRooms scene AIUE5 vol8 03 OmniRooms scene AIUE5 vol8 04 OmniRooms scene AIUE5 vol8 05 OmniRooms scene AIUE V01 001 OmniRooms scene AIUE V01 003 OmniRooms scene AIUE V01 004 OmniRooms scene AIUE V02 001 OmniRooms scene AI vol3 01 OmniRooms scene AI vol3 02 OmniRooms scene AI vol3 03 OmniRooms scene AI vol3 04 OmniRooms scene AI vol4 01 OmniRooms scene AI vol4 02 OmniRooms scene AI vol4 03 OmniRooms scene AI vol4 04 OmniRooms scene AI vol4 05

🎯 One Group

One Group

βš™οΈ Data Generation

OmniRooms is collected in AirSim environments. Anchor points are sampled on a 0.5 m voxel grid. For each anchor point, we render one central camera and 29 cameras randomly sampled within a local axis-aligned 30 cm cube centered on the source camera. To isolate translation-induced synthesis controlled, all cameras share a fixed orientation in the panorama release. Because this is a panorama, you can manually create rotations through code. OmniRooms-Wide is generated by projecting OmniRooms panoramas into 130-degree equidistant fisheye views.

Each panorama frame is rendered as a 1024 x 2048 equirectangular RGB image. Depth maps are provided at the same resolution.

πŸ“ Directory Structure

The dataset root is organized by scene:

OmniRooms/
β”œβ”€β”€ <scene_name>/
β”‚   β”œβ”€β”€ Original/
β”‚   β”‚   β”œβ”€β”€ Panoramagram0.jpg
β”‚   β”‚   β”œβ”€β”€ Panoramagram1.jpg
β”‚   β”‚   └── ...
β”‚   └── Depth/
β”‚       β”œβ”€β”€ Depth0.h5
β”‚       β”œβ”€β”€ Depth1.h5
β”‚       └── ...
└── 30cm (pose)/
    β”œβ”€β”€ AI_vol3_01.csv
    └── ...

RGB panoramas

RGB panoramas are stored as JPEG files:

<scene_name>/Original/Panoramagram{index}.jpg

Each RGB panorama is a 2048 x 1024 equirectangular image in standard RGB color space.

Depth maps

Depth files are stored as HDF5 files:

<scene_name>/Depth/Depth{index}.h5

Each HDF5 depth file contains:

  • depth: float32 array with shape (1024, 2048).
  • alpha: float32 array with shape (1024, 2048).

Camera positions

Camera positions are provided as CSV files:

30cm/<scene_name>.csv

The CSV files use columns:

,X,Y,Z

πŸ’» Loading Example

The following example loads one RGB panorama and its paired depth map:

from pathlib import Path

import h5py
from PIL import Image

root = Path("/path/to/OmniRooms")
scene = "AI_vol3_01"
frame_idx = 0

rgb_path = root / scene / "Original" / f"Panoramagram{frame_idx}.jpg"
depth_path = root / scene / "Depth" / f"Depth{frame_idx}.h5"

rgb = Image.open(rgb_path).convert("RGB")

with h5py.File(depth_path, "r") as f:
    depth = f["depth"][:]

print(rgb.size)       # (2048, 1024)
print(depth.shape)    # (1024, 2048)

πŸ“œ License

This dataset is released under the Creative Commons Attribution-NonCommercial 4.0 International license (CC BY-NC 4.0).

You may use the dataset for non-commercial research and education. Commercial use is not permitted without additional permission.

πŸ“š Citation

If you use OmniRooms or OmniRooms-Wide in your research, please cite the corresponding UniSHARP project:

@article{song2026unisharp,
  title={UniSHARP: Universal Sharp Monocular View Synthesis},
  author={Song, Meixi and Zhang, Dizhe and Ren, Hao and Zhang, Ruiyang and Du, Bo and Yang, Ming-Hsuan and Qi, Lu},
  journal={arXiv},
  year={2026}
}
Downloads last month
126

Space using Insta360-Research/OmniRooms 1