HVI-CIDNet+: Beyond Extreme Darkness for Low-Light Image Enhancement
May 17, 2026 Β· View on GitHub
Β
HVI-CIDNet+: Beyond Extreme Darkness for Low-Light Image Enhancement
Qingsen Yan, Kangbiao Shi, Yixu Feng, Tao Hu, Peng Wu, Guansong Pang
News π
- 2025.07.11Β Upgraded version paper as "HVI-CIDNet+: Beyond Extreme Darkness for Low-Light Image Enhancement" inΒ Arxiv. The new code, models and results will be uploaded soon. (code_linkοΌGithub) π₯
Proposed HVI-CIDNet+ β
HVI-CIDNet+ pipeline:

Visual Comparison πΌ
LOL-v1, LOL-v2-real, and LOL-v2-synthetic:

DICM, LIME, MEF, NPE, and VV:

1. Get Started π
Dependencies and Installation
(1) Clone Repo
git clone git@github.com:shikangbiao/CIDNet_extension.git
(2) Install Dependencies
conda env create -f HVI-CIDNet+.yaml
Data Preparation
You can refer to the following links to download the datasets.
- LOLv1
- LOLv2: Baidu Pan (code:
yixu) and One Drive (code:yixu) - DICM,LIME,MEF,NPE,VV: Baidu Pan(code:
yixu) and One Drive(code:yixu) - SICE: Baidu Pan(code:
yixu) and One Drive(code:yixu) - Sony-Total-Dark(SID): Baidu Pan(code:
yixu) and One Drive(code:yixu)
Then, put them in the following folder:
datasets (click to expand)
βββ datasets
βββ DICM
βββ LIME
βββ LOLdataset
βββ our485
βββlow
βββhigh
βββ eval15
βββlow
βββhigh
βββ LOLv2
βββ Real_captured
βββ Train
βββ Low
βββ Normal
βββ Test
βββ Low
βββ Normal
βββ Synthetic
βββ Train
βββ Low
βββ Normal
βββ Test
βββ Low
βββ Normal
βββ MEF
βββ NPE
βββ SICE
βββ Dataset
βββ eval
βββ target
βββ test
βββ label
βββ train
βββ 1
βββ 2
...
βββ SICE_Grad
βββ SICE_Mix
βββ SICE_Reshape
βββ Sony_total_dark
βββ eval
βββ long
βββ short
βββ test
βββ long
βββ 10003
βββ 10006
...
βββ short
βββ 10003
βββ 10006
...
βββ train
βββ long
βββ 00001
βββ 00002
...
βββ short
βββ 00001
βββ 00002
...
βββ VV
2. Testing π
Download our weights from [Google Drive]
- You can test our HVI-CIDNet+ as followed, all the results will saved in
./outputfolder:
(click to expand)
# LOLv1
python eval.py --lol
# LOLv2-real
python eval.py --lol_v2_real
# LOLv2-syn
python eval.py --lol_v2_syn
# SICE
python eval.py --SICE_grad # output SICE_grad
python eval.py --SICE_mix # output SICE_mix
# Sony-Total-Dark
python eval_SID.py --SID
# five unpaired datasets DICM, LIME, MEF, NPE, VV.
# You can change "--DICM" to the other unpaired datasets "LIME, MEF, NPE, VV".
python eval.py --unpaired --DICM
- Also, you can test all the metrics mentioned in our paper as follows:
(click to expand)
# LOLv1
python measure.py --lol
# LOLv2-real
python measure.py --lol_v2_real
# LOLv2-syn
python measure.py --lol_v2_syn
# Sony-Total-Dark
python measure_SID.py --SID
# SICE-Grad
python measure.py --SICE_grad
# SICE-Mix
python measure.py --SICE_mix
# five unpaired datasets DICM, LIME, MEF, NPE, VV.
# You can change "--DICM" to the other unpaired datasets "LIME, MEF, NPE, VV".
python measure_niqe_bris.py --DICM
# Note: Following LLFlow, KinD, and Retinxformer, we have also adjusted the brightness of the output image produced by the network, based on the average value of GroundTruth (GT). This only works in paired datasets. If you want to measure it, please add "--use_GT_mean".
#
# e.g.
python measure.py --lol --use_GT_mean
- Evaluating the Parameters, FLOPs, and running time of HVI-CIDNet+:
python net_test.py
3. Training π
The training code will be uploaded soon.
4. Contacts π
If you have any questions, please contact us or submit an issue to the repository!
Kangbiao Shi (18334840904@163.com)
5. Citation π
If you find our work useful for your research, please cite our paper
@article{yan2025hvi,
title={HVI-CIDNet+: Beyond Extreme Darkness for Low-Light Image Enhancement},
author={Yan, Qingsen and Shi, Kangbiao and Feng, Yixu and Hu, Tao and Wu, Peng and Pang, Guansong and Zhang, Yanning},
journal={arXiv preprint arXiv:2507.06814},
year={2025}
}
@inproceedings{yan2025hvi,
title={Hvi: A new color space for low-light image enhancement},
author={Yan, Qingsen and Feng, Yixu and Zhang, Cheng and Pang, Guansong and Shi, Kangbiao and Wu, Peng and Dong, Wei and Sun, Jinqiu and Zhang, Yanning},
booktitle={Proceedings of the Computer Vision and Pattern Recognition Conference},
pages={5678--5687},
year={2025}
}