Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
The dataset viewer is not available for this split.
Server error while post-processing the rows. Please report the issue.
Error code:   RowsPostProcessingError

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.

HDR-4D: Benchmark for Dynamic Novel View Synthesis in High Dynamic Range

This dataset repository contains the official benchmark datasets (HDR-4D-Syn and HDR-4D-Real) introduced in the ICLR 2026 paper:

Dynamic Novel View Synthesis in High Dynamic Range
Paper: arXiv:2410.02476
Official Codebase: Surrey-UP-Lab/HDR-4DGS


πŸ“Œ Dataset Overview

High Dynamic Range Dynamic Novel View Synthesis (HDR DNVS) aims to reconstruct 4D dynamic radiance fields from sparse, multi-exposure Low Dynamic Range (LDR) observations while synthesizing photorealistic High Dynamic Range (HDR) views across continuous viewpoints and time steps.

This benchmark provides two complementary suites designed for both quantitative benchmarking and real-world evaluation:

Benchmark Subset Scenes Count Total Size Modality Primary Use
HDR-4D-Syn 8 scenes ~27 GB Synthetic multi-exposure video + GT HDR frames Controlled quantitative evaluation & benchmark
HDR-4D-Real 4 scenes ~14 GB Multi-camera indoor capture (6x iPhone 14 Pro) Real-world dynamic scene validation

πŸ“‚ Dataset Hierarchy & Structure

Each scene is packaged as an independent .zip archive for fast, modular, and resumable downloads.

HDR-4DGS/
β”œβ”€β”€ README.md
β”œβ”€β”€ HDR-4D-Real/
β”‚   β”œβ”€β”€ bed.zip             (~4.0 GB)
β”‚   β”œβ”€β”€ excavator.zip       (~6.8 GB)
β”‚   β”œβ”€β”€ tank.zip            (~2.4 GB)
β”‚   └── toys.zip            (~1.1 GB)
└── HDR-4D-Syn/
    β”œβ”€β”€ airplane.zip        (~3.6 GB)
    β”œβ”€β”€ deer.zip            (~818 MB)
    β”œβ”€β”€ hook.zip            (~5.4 GB)
    β”œβ”€β”€ jump.zip            (~3.9 GB)
    β”œβ”€β”€ lego.zip            (~2.8 GB)
    β”œβ”€β”€ mutant.zip          (~4.7 GB)
    β”œβ”€β”€ standup.zip         (~4.8 GB)
    └── tank.zip            (~1.3 GB)

Extracted File Structure

1. HDR-4D-Syn Scenes

<scene_name>/
β”œβ”€β”€ train/
β”‚   β”œβ”€β”€ exr/                # High-fidelity Ground Truth HDR frames (.exr)
β”‚   └── png/                # Multi-exposure LDR training frames (.png)
β”œβ”€β”€ test/
β”‚   β”œβ”€β”€ exr/                # Ground Truth evaluation HDR frames (.exr)
β”‚   └── png/                # Ground Truth evaluation LDR frames (.png)
β”œβ”€β”€ transforms_train.json   # Camera parameters & time-stamped poses for training
└── transforms_test.json    # Camera parameters & time-stamped poses for testing

2. HDR-4D-Real Scenes

<scene_name>/
β”œβ”€β”€ exr/                    # Fused Ground Truth HDR frames (.exr)
β”œβ”€β”€ images/                 # Synchronized multi-camera LDR captures (.jpeg/.png)
β”œβ”€β”€ transforms_train.json   # Calibrated training camera poses & intrinsics
└── transforms_test.json    # Test camera trajectory & evaluation settings

πŸš€ Download Guide

1. Using huggingface-cli (Recommended)

Install huggingface_hub

pip install -U "huggingface_hub[cli]"

Download Entire Dataset

huggingface-cli download Prinasi/HDR-4DGS \
    --repo-type dataset \
    --local-dir ./HDR-4DGS

Download Specific Scene (Selective Download)

To download only a specific scene (e.g. HDR-4D-Syn/lego.zip or HDR-4D-Real/bed.zip):

# Download synthetic Lego scene
huggingface-cli download Prinasi/HDR-4DGS \
    HDR-4D-Syn/lego.zip \
    --repo-type dataset \
    --local-dir ./HDR-4DGS

# Download real-world Bed scene
huggingface-cli download Prinasi/HDR-4DGS \
    HDR-4D-Real/bed.zip \
    --repo-type dataset \
    --local-dir ./HDR-4DGS

(Optional for users in Mainland China): You can prepend HF_ENDPOINT=https://hf-mirror.com before the command for accelerated download.


2. Using Python API

from huggingface_hub import hf_hub_download, snapshot_download

# Download a single scene archive
file_path = hf_hub_download(
    repo_id="Prinasi/HDR-4DGS",
    filename="HDR-4D-Syn/lego.zip",
    repo_type="dataset",
    local_dir="./HDR-4DGS"
)

# Download the full dataset
snapshot_download(
    repo_id="Prinasi/HDR-4DGS",
    repo_type="dataset",
    local_dir="./HDR-4DGS"
)

3. Extracting Archives

Once downloaded, extract archives into your target workspace:

cd ./HDR-4DGS

# Extract all scenes in place
find . -name "*.zip" -execdir unzip -q {} \;

πŸ“· Camera & Metadata Conventions

The camera parameters follow standard NeRF / Blender convention formatted in JSON:

  • camera_angle_x: Horizontal field of view in radians.
  • frames: List of dynamic frame metadata:
    • file_path: Relative path to the image/exr file.
    • transform_matrix: 4x4 camera-to-world transformation matrix.
    • time / index: Dynamic sequence temporal index.

πŸ“– Citation

If you use this benchmark in your research, please cite the original ICLR 2026 paper:

@inproceedings{hdr4dgs2026,
  title     = {Dynamic Novel View Synthesis in High Dynamic Range},
  booktitle = {International Conference on Learning Representations (ICLR)},
  year      = {2026}
}

πŸ“„ License

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

Downloads last month
17

Paper for Prinasi/HDR-4D-Real