Xinyueliii commited on
Commit
db3fdee
·
verified ·
1 Parent(s): c147caf

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ readme: Rethinking Artifact Mitigation in HDR Reconstruction
3
+ license: mit
4
+ task_categories:
5
+ - image-to-image
6
+ - object-detection
7
+ - image-segmentation
8
+ language:
9
+ - en
10
+ tags:
11
+ - hdr
12
+ - artifact-detection
13
+ - image-restoration
14
+ - high-dynamic-range
15
+ pretty_name: HADataset
16
+ size_categories:
17
+ - 100B<n<1T
18
+ source_datasets:
19
+ - original
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/Training/**
25
+ - split: test
26
+ path: data/Test/**
27
+ ---
28
+
29
+
30
+ # Rethinking Artifact Mitigation in HDR Reconstruction: From Detection to Optimization
31
+ #### IEEE Transactions on Image Processing (TIP), 2025
32
+
33
+ [![Paper](https://img.shields.io/badge/Paper-IEEE%20TIP-blue)](https://ieeexplore.ieee.org/document/11301923)
34
+ [![GitHub](https://img.shields.io/badge/GitHub-Repository-black?logo=github)](https://github.com/xinyueliii/hdr-artifact-detect-optimize)
35
+ ## Dataset Description
36
+
37
+ **HADataset** is the first dedicated High Dynamic Range (HDR) artifact dataset designed to address the challenge of ghosting artifacts in HDR reconstruction. It explicitly provides per-pixel artifact annotations, enabling the development of detection-aware optimization strategies.
38
+
39
+ This dataset was introduced in the paper "Rethinking Artifact Mitigation in HDR Reconstruction: From Detection to Optimization". It serves two main purposes:
40
+ 1. **Artifact Detection:** Training models (like HADetector) to localize artifacts.
41
+ 2. **HDR Reconstruction:** providing diverse multi-exposure Low Dynamic Range (LDR) image sets for testing and training reconstruction algorithms.
42
+
43
+ ### Key Features
44
+ * **Total LDR Sets:** 1,213 diverse multi-exposure sets.
45
+ * **Annotated Pairs:** 1,765 HDR image pairs with per-pixel artifact annotations.
46
+ * **Diverse Sources:** Includes artifacts from Kalantari’s dataset, our own collected scenes, and Tel’s dataset.
47
+ * **Model-Agnostic:** Includes artifacts generated by various state-of-the-art models (AHDR, CA-ViT, SCTNet).
48
+
49
+ ## Dataset Structure
50
+
51
+ The HADataset consists of two main components:
52
+
53
+ ### 1. HADataset-LDRsets (Source LDR Images sets)
54
+ This component includes 1,216 LDR sets captured for HDR inference.
55
+ * **Training Set:** 970 sets
56
+ * **Test Set:** 243 sets
57
+
58
+ Each set typically contains 3 exposure brackets (short, medium, long) in `.tif` format along with an `exposure.txt` file.
59
+
60
+ ### 2. HADataset-HDRArtifactDetection (HDR images and Annotations)
61
+ This component is designed for the artifact detection task. It contains ground truth (GT) artifact maps and the corresponding HDR images (Tp). It is categorized into two perspectives:
62
+
63
+ #### Content Perspective (3 Subsets)
64
+ Based on the origin of the scene:
65
+ * `HADataset-content-Kal`: Scenes from Kalantari's dataset.
66
+ * `HADataset-content-Ours`: Scenes collected by the authors.
67
+ * `HADataset-content-Tel`: Scenes from Tel's dataset.
68
+
69
+ #### Model Perspective (3 Subsets)
70
+ Based on the model that generated the artifacts:
71
+ * `HADataset-content-AHDR`
72
+ * `HADataset-content-CaViT`
73
+ * `HADataset-content-SCTNet`
74
+
75
+ ## Citation
76
+
77
+ If you use this dataset in your research, please cite our paper:
78
+
79
+ ```bibtex
80
+ @ARTICLE{11301923,
81
+ author={Li, Xinyue and Ni, Zhangkai and Wu, Hang and Yang, Wenhan and Wang, Hanli and He, Lianghua and Kwong, Sam},
82
+ journal={IEEE Transactions on Image Processing},
83
+ title={Rethinking Artifact Mitigation in HDR Reconstruction: From Detection to Optimization},
84
+ year={2025},
85
+ volume={34},
86
+ pages={8435-8446},
87
+ doi={10.1109/TIP.2025.3642557}
88
+ }