Lowlights map

版本 1.0.1 (949.0 KB) 作者: Geoffrey Schivre
Correct image background using 3d visibility operators.
61.0 次下载
更新时间 2019/4/28

查看许可证

Implementation of the algorithm of : Kligler, N., Katz, S., & Tal, A. (2018). Document Enhancement Using Visibility Detection. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 2374-2382).
This algorithm use the 3d visibility operator : Hidden point removal (HPR) or Target Point Occluding (TPO) to find deep valley points (black caracters) in a grayscale image.
The miniature is generated by :

I = imread('PR3.png');
Ilab = rgb2lab(I);
Img = mat2gray(Ilab(:, :, 1));
L = LowLight(Img, [5e-2, 1], 1e-4);
figure;
imshowpair(Img, L, 'montage')
title('Input and corrected image')

The 'PR3.png' image come from de DIBCO2011 database and is found here : http://utopia.duth.gr/~ipratika/DIBCO2011/benchmark/

引用格式

Geoffrey Schivre (2024). Lowlights map (https://www.mathworks.com/matlabcentral/fileexchange/71388-lowlights-map), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2018a
与 R2013a 及更高版本兼容
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Image Filtering and Enhancement 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.1

Correct the description of L in LowLight function.

1.0.0