Home

Awesome

HDRTVNet [Paper Link]

A New Journey from SDRTV to HDRTV

Xiangyu Chen*, Zhengwen Zhang*, Jimmy S. Ren, Lynhoo Tian, Yu Qiao and Chao Dong

(* indicates equal contribution)

:star:This paper is accepted to ICCV 2021.

:rocket:The repository of extended version HDRTVNet++ can be found here.

Overview

Simplified SDRTV/HDRTV formation pipeline:

<img src="https://raw.githubusercontent.com/chxy95/HDRTVNet/master/figures/Formation_Pipeline.png" width="600"/>

Overview of the method:

<img src="https://raw.githubusercontent.com/chxy95/HDRTVNet/master/figures/Network_Structure.png" width="900"/>

Getting Started

  1. Dataset
  2. Configuration
  3. How to test
  4. How to train
  5. Metrics
  6. Visualization

Dataset

We conduct a dataset using videos with 4K resolutions under HDR10 standard (10-bit, Rec.2020, PQ) and their counterpart SDR versions from Youtube. The dataset consists of a training set with 1235 image pairs and a test set with 117 image pairs. Please refer to the paper for the details on the processing of the dataset. The dataset can be downloaded from Baidu Netdisk (access code: 6qvu) or OneDrive (access code: HDRTVNet, , EXP: 2025.8.31). The training set is uploaded after subsection compression since it's too large. Please download the complete dataset to unzip.

We also provide the original Youtube links of these videos, which can be found in this file. Note that we cannot provide the download links since we do not have the copyright to distribute. If you have difficulty obtaining the video, please email to me. Please download this dataset only for academic use.

Configuration

Please refer to the requirements. Matlab is also used to process the data, but it is not necessary and can be replaced by OpenCV.

How to test

We provide the pretrained models to test, which can be downloaded from Baidu Netdisk (access code: 2me9) or OneDrive (access code: HDRTVNet, EXP: 2025.8.31). Since our method is casaded of three steps, the results also need to be inferenced step by step.

cd codes
python test.py -opt options/test/test_AGCM.yml
python test.py -opt options/test/test_LE.yml
python test.py -opt options/test/test_HG.yml

How to train

cd codes
python train.py -opt options/train/train_AGCM.yml
python train.py -opt options/train/train_LE.yml
python train.py -opt options/train/train_HG_Generator.yml
python train.py -opt options/train/train_HG_GAN.yml

Metrics

Five metrics are used to evaluate the quantitative performance of different methods, including PSNR, SSIM, SR_SIM, Delta E<sub>ITP</sub> (ITU Rec.2124) and HDR-VDP3. Since the latter three metrics are not very common in recent papers, we provide some reference codes in ./metrics for convenient usage.

Visualization

Since HDR10 is an HDR standard using PQ transfer function for the video, the correct way to visualize the results is to synthesize the image results into a video format and display it on the HDR monitor or TVs that support HDR. The HDR images in our dataset are generated by directly extracting frames from the original HDR10 videos, thus these images consisting of PQ values look relatively dark compared to their true appearances. We provide the reference commands of our extracting frames and synthesizing videos in ./scripts. Please use MediaInfo to check the format and the encoding information of synthesized videos before visualization. If circumstances permit, we strongly recommend to observe the HDR results and the original HDR resources by this way on the HDR dispalyer.

If the HDR displayer is not available, some media players with HDR render can play the HDR video and show a relatively realistic look, such as Potplayer. Note that this is only an approximate alternative, and it still cannot fully restore the appearance of HDR content on HDR monitors.

Citation

If our work is helpful to you, please cite our paper:

@InProceedings{chen2021hdrtvnet,
    author    = {Chen, Xiangyu and Zhang, Zhengwen and Ren, Jimmy S. and Tian, Lynhoo and Qiao, Yu and Dong, Chao},
    title     = {A New Journey From SDRTV to HDRTV},
    booktitle = {Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
    month     = {October},
    year      = {2021},
    pages     = {4500-4509}
}

Acknowledgment

The code is inspired by BasicSR.