├── 59.jpg ├── 71.jpg ├── RBMP.p ├── README.md ├── TS_RBMP.pdf └── run_RBMP.m /59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qi-zohair/Retinex-Based-Multiphase-Algorithm-for-Low-Light-Image-Enhancement/02f978cb55d92a39c629cb13e75dd47e50120de3/59.jpg -------------------------------------------------------------------------------- /71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qi-zohair/Retinex-Based-Multiphase-Algorithm-for-Low-Light-Image-Enhancement/02f978cb55d92a39c629cb13e75dd47e50120de3/71.jpg -------------------------------------------------------------------------------- /RBMP.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qi-zohair/Retinex-Based-Multiphase-Algorithm-for-Low-Light-Image-Enhancement/02f978cb55d92a39c629cb13e75dd47e50120de3/RBMP.p -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Retinex-Based-Multiphase-Algorithm-for-Low-Light-Image-Enhancement 2 | 3 | Please report bugs and/or send comments to Zohair Al-Ameen. 4 | Email: qizohair@uomosul.edu.iq 5 | 6 | When you use this code or any part of it, please cite the following article: 7 | Mohammad Abid Al-Hashim and Zohair Al-Ameen. "Retinex-Based Multiphase Algorithm for Low-Light Image Enhancement." Traitement du Signal, vol. 37, no. 5, (2020): pp. 733-743. DOI: 10.18280/ts.370505 8 | -------------------------------------------------------------------------------- /TS_RBMP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qi-zohair/Retinex-Based-Multiphase-Algorithm-for-Low-Light-Image-Enhancement/02f978cb55d92a39c629cb13e75dd47e50120de3/TS_RBMP.pdf -------------------------------------------------------------------------------- /run_RBMP.m: -------------------------------------------------------------------------------- 1 | %% Title: Retinex-Based Multiphase Algorithm for Low-Light Image Enhancement 2 | 3 | %% Created by Zohair Al-Ameen. 4 | % Department of Computer Science, 5 | % College of Computer Science and Mathematics, 6 | % University of Mosul, Mosul, Nineveh, Iraq 7 | 8 | %% Please report bugs and/or send comments to Zohair Al-Ameen. 9 | % Email: qizohair@uomosul.edu.iq 10 | 11 | %% When you use this code or any part of it, please cite the following article: 12 | % Mohammad Abid Al-Hashim and Zohair Al-Ameen. 13 | % "Retinex-Based Multiphase Algorithm for Low-Light Image Enhancement." 14 | % Traitement du Signal, vol. 37, no. 5, (2020): pp. 733-743. 15 | % DOI: 10.18280/ts.370505 16 | 17 | %% INPUTS 18 | % x --> is a given unclear image 19 | % delta --> is an enhancement parameter 20 | 21 | %% OUTPUT 22 | % out --> an enhanced image. 23 | 24 | %% Starting implementation %% 25 | clear all; clc; close all; 26 | 27 | x=im2double(imread('71.jpg')); 28 | figure; imshow(x); title('Original') 29 | 30 | delta=0.25; 31 | tic; out = RBMP(x, delta); toc; 32 | figure; imshow(out); title('Improved by RBMP') 33 | % imwrite(out,'RBMP_out.jpg') --------------------------------------------------------------------------------