File size: 5,329 Bytes
b763851 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | ---
license: cc-by-nc-4.0
---
# LRID Dataset
## π Overview
This is the **full version** of the **Low-light Raw Image Denoising (LRID)** dataset, designed for low-light image denoising research. It is part of the PMN_TPAMI project (Learnability Enhancement for Low-light Raw Denoising: A Data Perspective, TPAMI 2024).
GitHub: https://github.com/megvii-research/PMN/tree/TPAMI
## ποΈ Dataset Structure
```
PMN_TPAMI
ββLRID # Full LRID Dataset (Raw Data)
ββbias # Dark Frames
ββbias-hot # Dark Frames in hot mode of the sensor
β
ββindoor_x5 # Indoor Scenes
β ββ100 # Long-Exposure Raw Data (ISO-100)
β β ββ000 # Scene Number (25 frames per scene)
β β ββ...
β β
β ββ6400 # Low-Light Noisy Data (ISO-6400)
β β ββ1 # Digital Gain (Low-Light Ratio)
β β β ββ000 # Scene Number (10 frames per scene)
β β β ββ...
β β ββ...
β β
β ββref # Long-Exposure Raw Data (ISO-100)
β β ββ000 # Scene Number (ISO-100 reference frame and its JPEG image after *camera ISP*)
β β ββ...
β β
β ββGT # Visualization of Scenes and Our Fusion Process
β β
β ββnpy # Binary Data
β β ββGT_flow # Optical Flows for Alignment (by HDR+)
β β ββGT_aligns # ISO-100 Frames after Alignment
β β ββGT_align_ours # GT after Multi-Frame Fusion
β β
β ββmetadata_indoor_x5_gt.pkl # Metadata such as WB, CCM, etc.
β
ββoutdoor_x3 # Outdoor Scenes
β ββ... # (Structure similar to indoor_x5)
β
ββindoor_x3 # Indoor Scenes with ND Filter
β ββ... # (Structure similar to indoor_x5)
β
ββoutdoor_x5 # [Abandon] Extremely Dark Outdoor Scenes with Ultra-Long Exposure
β ββ... # (Structure similar to indoor_x5)
β
ββresources # (Noise calibration results such as dark shading)
```
## π― Key Features
- **Full version**:
- β
Original images used for dataset creation are included.
- β
Intermediate results are included.
- β
All noisy frames used for training are included.
- β
Dark frames (`bias`, `bias-hot`) are included for calibration.
- β
Reference data (`ref/`) provides ISO-100 long-exposure RAW and its camera-processed JPEG for each scene.
## π Scene Categories
| Subset | Description | Gain | Lighting Condition |
|--------|-------------|------|-------------------|
| `indoor_x5` | Indoor scenes | 5Γ | Low-light |
| `outdoor_x3` | Outdoor scenes | 3Γ | Low-light |
| `indoor_x3` | Indoor scenes with ND filter | 3Γ | Controlled lighting |
| `outdoor_x5` (abandon) | Outdoor scenes | 5Γ | Low-light (a little misalignment) |
## π Contents Description
- **Noisy frames** (e.g., `indoor_x5/6400/1/000/`): contain the **first frame** of each burst in RAW format.
- **Ground truth** (`npy/GT_align_ours`): multi-frame fusion results stored as NumPy binaries (aligned and denoised).
- **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.
- **Metadata** (`.pkl` files): include white balance gains, color correction matrices (CCM), and other camera parameters essential for accurate raw data processing.
- **Dark frames** (`bias/`, `bias-hot/`): sensor bias frames under normal and hot modes, useful for noise calibration and dark current subtraction.
- **Resources** (`resources/`): calibration data such as dark shading patterns.
## βοΈ Usage Notes
- Ground truth images are generated by aligning and fusing multiple frames, providing high-quality clean references.
- The `ref/` folders contain the ISO-100 long-exposure captures, which serve as near-ideal clean references for evaluating denoising performance.
- Metadata files are crucial for correctly interpreting the raw sensor data; please refer to them when applying any ISP pipeline.
## π Access
**Simplified LRID Dataset**: The simplified version with all evaluation frames (1 frames per scene) has been uploaded to https://huggingface.co/datasets/hansen97/LRID_simplified
## π Citation
If you use this dataset in your research, please cite:
```
@inproceedings{feng2022learnability,
author = {Feng, Hansen and Wang, Lizhi and Wang, Yuzhi and Huang, Hua},
title = {Learnability Enhancement for Low-Light Raw Denoising: Where Paired Real Data Meets Noise Modeling},
booktitle = {Proceedings of the 30th ACM International Conference on Multimedia},
year = {2022},
pages = {1436β1444},
numpages = {9},
location = {Lisboa, Portugal},
series = {MM '22}
}
@ARTICLE{feng2023learnability,
author={Feng, Hansen and Wang, Lizhi and Wang, Yuzhi and Fan, Haoqiang and Huang, Hua},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
title={Learnability Enhancement for Low-Light Raw Image Denoising: A Data Perspective},
year={2024},
volume={46},
number={1},
pages={370-387},
doi={10.1109/TPAMI.2023.3301502}
}
```
## π§ Contact
For questions or issues, please contact Hansen at [hansen97@outlook.com](mailto:hansen97@outlook.com). |