hansen97 commited on
Commit
0128918
Β·
verified Β·
1 Parent(s): ba03214

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +119 -3
README.md CHANGED
@@ -1,3 +1,119 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ ---
4
+
5
+ # LRID-simplified Dataset
6
+
7
+ ## πŸ“– Overview
8
+ This is a **simplified version** of the **LRID (Long-Range Indoor/outdoor Dataset)** dataset, designed for low-light image denoising research. It is part of the PMN_TPAMI project.
9
+ Compared to the full LRID dataset, this version retains only the essential components for **validation purposes** while significantly reducing the size.
10
+
11
+ GitHub: https://github.com/megvii-research/PMN/tree/TPAMI
12
+
13
+ ## πŸ—‚οΈ Dataset Structure
14
+ ```
15
+ PMN_TPAMI
16
+ └─LRID_simplified # Simplified dataset for training & evaluation
17
+ β”œβ”€bias # Dark frames (sensor bias)
18
+ β”œβ”€bias-hot # Dark frames in hot mode of the sensor
19
+ β”‚
20
+ β”œβ”€indoor_x5 # Indoor scenes
21
+ β”‚ │─100 # Long-Exposure Raw Data (ISO-100)
22
+ β”‚ β”‚ β”œβ”€000 # Scene Number (only the first frame of the original 25 is kept)
23
+ β”‚ β”‚ └─...
24
+ β”‚ β”‚
25
+ β”‚ β”œβ”€6400 # Low-light noisy data (ISO-6400)
26
+ β”‚ β”‚ β”œβ”€1 # Digital gain (low-light ratio)
27
+ β”‚ β”‚ β”‚ β”œβ”€000 # Scene number (only the first frame of the original 10 is kept)
28
+ β”‚ β”‚ β”‚ └─...
29
+ β”‚ β”‚ └─...
30
+ β”‚ β”‚
31
+ β”‚ β”œβ”€npy # Binary data
32
+ β”‚ β”‚ └─GT_align_ours # Ground truth after multi-frame fusion
33
+ β”‚ β”‚
34
+ β”‚ β”œβ”€ref # Long-exposure reference data (ISO-100)
35
+ β”‚ β”‚ β”œβ”€000 # Scene number
36
+ β”‚ β”‚ β”‚ β”œβ”€β”€ *.dng # RAW reference frame (ISO-100)
37
+ β”‚ β”‚ β”‚ └── *.jpeg # JPEG image after camera ISP
38
+ β”‚ β”‚ └─...
39
+ β”‚ β”‚
40
+ β”‚ └─metadata_indoor_x5_gt.pkl # Metadata (white balance, CCM, etc.)
41
+ β”‚
42
+ β”œβ”€outdoor_x3 # Outdoor scenes
43
+ β”‚ └─... # (Structure similar to indoor_x5)
44
+ β”‚
45
+ β”œβ”€indoor_x3 # Indoor scenes with ND filter
46
+ β”‚ └─... # (Structure similar to indoor_x5)
47
+ β”‚
48
+ β”œβ”€outdoor_x5 # Outdoor scenes (abandon)
49
+ β”‚ └─... # (Structure similar to indoor_x5)
50
+ β”‚
51
+ └─resources # Noise calibration results (e.g., dark shading)
52
+ ```
53
+
54
+ ## 🎯 Key Features
55
+ - **Simplified version**:
56
+ - βœ… Only the **first noisy frame** per scene/setting is kept (originally 10 frames per scene for training).
57
+ - βœ… All ground truth images are retained.
58
+ - βœ… Dark frames (`bias`, `bias-hot`) are included for calibration.
59
+ - βœ… **Reference data** (`ref/`) provides ISO-100 long-exposure RAW and its camera-processed JPEG for each scene.
60
+ - ❌ Original images used for dataset creation are excluded.
61
+ - ❌ Intermediate results are excluded.
62
+ - ❌ Most noisy frames used for training are excluded.
63
+
64
+ ## πŸ“Š Scene Categories
65
+ | Subset | Description | Gain | Lighting Condition |
66
+ |--------|-------------|------|-------------------|
67
+ | `indoor_x5` | Indoor scenes | 5Γ— | Low-light |
68
+ | `outdoor_x3` | Outdoor scenes | 3Γ— | Low-light |
69
+ | `indoor_x3` | Indoor scenes with ND filter | 3Γ— | Controlled lighting |
70
+ | `outdoor_x5` (abandon) | Outdoor scenes | 5Γ— | Low-light (a little misalignment) |
71
+
72
+ ## πŸ” Contents Description
73
+ - **Noisy frames** (e.g., `indoor_x5/6400/1/000/`): contain the **first frame** of each burst in RAW format.
74
+ - **Ground truth** (`npy/GT_align_ours`): multi-frame fusion results stored as NumPy binaries (aligned and denoised).
75
+ - **Reference** (`ref/`): for each scene, an ISO-100 long-exposure RAW and its corresponding JPEG (processed by the camera ISP) are provided as ideal references.
76
+ - **Metadata** (`.pkl` files): include white balance gains, color correction matrices (CCM), and other camera parameters essential for accurate raw data processing.
77
+ - **Dark frames** (`bias/`, `bias-hot/`): sensor bias frames under normal and hot modes, useful for noise calibration and dark current subtraction.
78
+ - **Resources** (`resources/`): calibration data such as dark shading patterns.
79
+
80
+ ## βš™οΈ Usage Notes
81
+ - This dataset is intended for **validation or testing** rather than full training due to the reduced number of noisy frames.
82
+ - Each scene originally contained 10 frames; only the first frame (index `000`) is preserved in this simplified version.
83
+ - Ground truth images are generated by aligning and fusing multiple frames, providing high-quality clean references.
84
+ - The `ref/` folders contain the ISO-100 long-exposure captures, which serve as near-ideal clean references for evaluating denoising performance.
85
+ - Metadata files are crucial for correctly interpreting the raw sensor data; please refer to them when applying any ISP pipeline.
86
+
87
+ ## πŸ”— Access
88
+ **Full LRID Dataset**: The complete version with all training frames (10 frames per scene) is currently being uploaded and will be available soon.
89
+
90
+ URL: https://huggingface.co/datasets/hansen97/LRID_Simplified
91
+
92
+ ## πŸ“ Citation
93
+ If you use this dataset in your research, please cite:
94
+ ```
95
+ @inproceedings{feng2022learnability,
96
+ author = {Feng, Hansen and Wang, Lizhi and Wang, Yuzhi and Huang, Hua},
97
+ title = {Learnability Enhancement for Low-Light Raw Denoising: Where Paired Real Data Meets Noise Modeling},
98
+ booktitle = {Proceedings of the 30th ACM International Conference on Multimedia},
99
+ year = {2022},
100
+ pages = {1436–1444},
101
+ numpages = {9},
102
+ location = {Lisboa, Portugal},
103
+ series = {MM '22}
104
+ }
105
+
106
+ @ARTICLE{feng2023learnability,
107
+ author={Feng, Hansen and Wang, Lizhi and Wang, Yuzhi and Fan, Haoqiang and Huang, Hua},
108
+ journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
109
+ title={Learnability Enhancement for Low-Light Raw Image Denoising: A Data Perspective},
110
+ year={2024},
111
+ volume={46},
112
+ number={1},
113
+ pages={370-387},
114
+ doi={10.1109/TPAMI.2023.3301502}
115
+ }
116
+ ```
117
+
118
+ ## πŸ“§ Contact
119
+ For questions or issues, please contact Hansen at [hansen97@outlook.com](mailto:hansen97@outlook.com).