ARM4588 commited on
Commit
e078e0d
·
verified ·
1 Parent(s): 9697706

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -1
README.md CHANGED
@@ -5,4 +5,63 @@ tags:
5
  - low-light
6
  - denoising
7
  - real-world
8
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  - low-light
6
  - denoising
7
  - real-world
8
+ ---
9
+
10
+ # [WACV'26] Low-light Smartphone Dataset (LSD)
11
+
12
+ This is the official dataset proposed in our paper titled **"Illuminating Darkness: Learning to Enhance Low-light Images In-the-Wild"**
13
+
14
+ 📄 **Paper:** [arXiv](https://arxiv.org/abs/2503.06898)
15
+ 💻 **Code:** [GitHub - LSD-TFFormer](https://github.com/sharif-apu/LSD-TFFormer)
16
+
17
+ ## Overview
18
+
19
+ We introduce **LSD**, the largest in-the-wild Single-Shot Low-Light Image Enhancement (SLLIE) dataset to date.
20
+
21
+ ## Dataset Structure
22
+
23
+ This repository contains the following training data files:
24
+
25
+ - `patch_DLL_gtPatch.tar.gz`
26
+ - `patch_DLL_inputPatch.tar.gz`
27
+ - `patch_NLL_gtPatch.tar.gz`
28
+ - `patch_NLL_inputPatch.tar.gz`
29
+
30
+ ### Categories
31
+
32
+ - **DLL (Denoised Low-Light):** For low-light enhancement training
33
+ - **NLL (Noisy Low-Light):** For joint denoising + enhancement training
34
+
35
+ ### File Organization
36
+
37
+ - `inputPatch`: Low-light input images
38
+ - `gtPatch`: Ground truth (well-lit) reference images
39
+
40
+ ## Usage
41
+
42
+ Extract the archives to access the training patches:
43
+
44
+ ```bash
45
+ tar -xzf patch_DLL_gtPatch.tar.gz
46
+ tar -xzf patch_DLL_inputPatch.tar.gz
47
+ tar -xzf patch_NLL_gtPatch.tar.gz
48
+ tar -xzf patch_NLL_inputPatch.tar.gz
49
+ ```
50
+
51
+ ## Dataset Status
52
+
53
+ ✅ **Training Dataset:** Available (current files)
54
+ 🔄 **Test Dataset:** Coming soon
55
+
56
+
57
+ ## Citation
58
+ You can cite our preprint as:
59
+
60
+ ```bibtex
61
+ @article{sharif2025illuminating,
62
+ title={Illuminating darkness: Enhancing real-world low-light scenes with smartphone images},
63
+ author={Sharif, SMA and Rehman, Abdur and Abidin, Zain Ul and Naqvi, Rizwan Ali and Dharejo, Fayaz Ali and Timofte, Radu},
64
+ journal={arXiv preprint arXiv:2503.06898},
65
+ year={2025}
66
+ }
67
+ ```