@article{Ramos2020,
doi = {10.21105/joss.01822},
url = {https://doi.org/10.21105/joss.01822},
year = {2020},
month = jan,
publisher = {The Open Journal},
volume = {5},
number = {45},
pages = {1822},
author = {V{\'{\i}}tor Ramos},
title = {{SIHR}: a {MATLAB}/{GNU} {Octave} toolbox for single image highlight removal},
journal = {Journal of Open Source Software}
}
An ongoing effort of developing new and implementing established single image highlight removal (SIHR) methods on MATLAB/GNU Octave.
Highlight, specularity, or specular reflection removal (see 1 for a proper Web of Science expression, see [1] for a reference work entry, see [2], [3] for survey on this problem) concerns the following decomposition.
I welcome and encourage contributions to this project upon review. Please check CONTRIBUTING.md
for more details.
Disclaimer 1: this repository is intended for research purposes only.
Disclaimer 2: some most of these methods are based on chromaticity analysis, they fail miserably for grayscale images.
1 ((remov* NEAR/1 (highlight* OR specular*)) OR (separat* NEAR/1 (reflect* OR specular*)))
I started out this repository by implementing, translating and collecting code snippets from the rare available2,3,4,5 codes. Oftentimes papers are cryptical, codes are in C/C++ (requires compilation and major source code modification for general testing), or are just unavailable. See, e.g. this CSDN post6 that has no valid links at all.
In this context, this repository aims to be a continous algorithmic aid for ongoing research and development of SIHR methods.
2 Tan and Ikeuchi. [Online]. Available: http://tanrobby.github.io/code/highlight.zip
3 Shen et al. [Online]. Available: http://ivlab.org/publications/PR2008_code.zip
4 Yang et al. [Online]. Available: http://www6.cityu.edu.hk/stfprofile/qiyang.htm
5 Shen and Zheng. [Online]. Available: http://ivlab.org/publications/AO2013_code.zip
6 https://blog.csdn.net/nvidiacuda/article/details/8078167
Calling this toolbox's functions is very straightforward:
I_d = AuthorYEAR(I); % I is a double-valued input image of dimension
% m×n×3 containing linear RGB values and
% I_d is the calculated diffuse reflection
% using AuthorYEAR method.
% The specular component is simply
% I_s = I - I_d;
The following methods are available.
Year | Method | Function |
---|---|---|
2005 | Tan and Ikeuchi [4] | Tan2005 |
2006 | Yoon et al. [5] | Yoon2006 |
2008 | Shen et al. [6] | Shen2008 |
2009 | Shen and Cai [7] | Shen2009 |
2010 | Yang et al. [8] | Yang2010 |
2013 | Shen and Zheng [9] | Shen2013 |
2016 | Akashi and Okatani [10] | Akashi2016 |
The following improvement is available.
Year | Method | Function |
---|---|---|
2019 | Yamamoto and Nakazawa [11] | Yamamoto2019 |
The environment this repository is being developed is:
- MATLAB
- GNU Octave
- Image package
pkg install -forge image
- Image package
Octave 4.2 Ubuntu 18.04
Octave 5.1 (latest) Windows 10 1903
MATLAB 9.1 (R2016b) Windows 10 1903
MATLAB 9.6 (R2019a) Windows 10 1903 Ubuntu 16.04 (MATLAB Online)
git clone https://github.com/vitorsr/SIHR.git
or download a copy of the repository.- Start Octave or MATLAB.
cd('path/to/SIHR')
, i.e. change current folder toSIHR
root (whereSIHR.m
is located).run SIHR.m
for session path setup.help SIHR
ordoc SIHR
provides a summary of the methods available.
To install the image
package from Octave Forge, build-essential
and liboctave-dev
need to be present. Install them via apt
, then proceed with package installation.
sudo apt-get install -qq -y build-essential liboctave-dev
octave --eval "pkg install -forge image"
This section aims to clarify how well (or not) the methods reproduced in this project were at reproducing results in literature.
Note: Akashi and Okatani's [10] method has highly fluctuating results because of random initialization.
In technical literature, there exist two ground truth datasets commonly used right now. One by Shen and Zheng [9] which is distributed alongside their code, and one by Grosse et al. [12] in a dedicated page7.
Other test images are included alongside the code for Shen et al. [6] and Yang et al. [8].
Follow the instructions in images
in order to download a local copy of these images from the respective authors' pages.
7 Grosse et al. [Online]. Available: http://www.cs.toronto.edu/~rgrosse/intrinsic/
Quantitative results reported are usually regarding the quality of the recovered diffuse component with respect to the ground truth available in the Shen and Zheng [9] test image set.
Reproduced results below are available in the utils/automated_testing.m
script.
Note: ssim
is not available in Octave Forge image
.
Year | Method | animals | cups | fruit | masks | Reproduced | animals | cups | fruit | masks |
---|---|---|---|---|---|---|---|---|---|---|
2005 | Tan and Ikeuchi | 30.2 | 30.1 | 29.6 | 25.6 | Tan2005 |
30.4 | 31.6 | 30.4 | 25.8 |
2006 | Yoon et al. | - | - | - | - | Yoon2006 |
32.9 | 33.3 | 36.6 | 34.1 |
2008 | Shen et al. | 34.6 | 37.7 | 37.6 | 31.7 | Shen2008 |
34.2 | 37.5 | 38.0 | 32.1 |
2009 | Shen and Cai | 34.8 | 37.6 | 36.9 | 34.0 | Shen2009 |
34.9 | 37.6 | 36.7 | 34.0 |
2010 | Yang et al. | 37.2 | 38.0 | 37.6 | 32.2 | Yang2010 |
36.5 | 37.5 | 36.2 | 33.5 |
2013 | Shen and Zheng | 37.3 | 39.3 | 38.9 | 34.1 | Shen2013 |
37.5 | 38.3 | 38.2 | 32.7 |
2015 | Liu et al. | 33.4 | 37.6 | 35.1 | 34.5 | - | - | - | - | - |
2016 | Akashi and Okatani | 26.8 | 35.7 | 30.8 | 32.3 | Akashi2016 |
32.7 | 35.9 | 34.8 | 34.0 |
2016 | Suo et al. | - | - | 40.4 | 34.2 | - | - | - | - | - |
2017 | Ren et al. | - | 38.0 | 37.7 | 34.5 | - | - | - | - | - |
2018 | Guo et al. | 35.7 | 39.1 | 36.4 | 34.4 | - | - | - | - | - |
Year | Method | animals | cups | fruit | masks | Reproduced | animals | cups | fruit | masks |
---|---|---|---|---|---|---|---|---|---|---|
2005 | Tan and Ikeuchi | 0.929 | 0.767 | 0.912 | 0.789 | Tan2005 |
0.928 | 0.895 | 0.907 | 0.821 |
2006 | Yoon et al. | - | - | - | - | Yoon2006 |
0.980 | 0.961 | 0.961 | 0.953 |
2008 | Shen et al. | 0.974 | 0.962 | 0.961 | 0.943 | Shen2008 |
0.975 | 0.962 | 0.961 | 0.943 |
2009 | Shen and Cai | - | - | - | - | Shen2009 |
0.985 | 0.970 | 0.962 | 0.961 |
2010 | Yang et al. | 0.970 | 0.941 | 0.939 | 0.899 | Yang2010 |
0.952 | 0.937 | 0.916 | 0.896 |
2013 | Shen and Zheng | 0.971 | 0.966 | 0.960 | 0.941 | Shen2013 |
0.985 | 0.964 | 0.958 | 0.935 |
2015 | Liu et al. | - | - | - | - | - | - | - | - | - |
2016 | Akashi and Okatani | 0.802 | 0.937 | 0.765 | 0.657 | Akashi2016 |
0.7340 | 0.9190 | 0.9010 | 0.8710 |
2016 | Suo et al. | - | - | - | - | - | - | - | - | - |
2017 | Ren et al. | 0.896 | 0.957 | 0.952 | 0.913 | - | - | - | - | - |
2018 | Guo et al. | 0.975 | 0.963 | 0.930 | 0.955 | - | - | - | - | - |
Note: results for MATLAB R2019b, Intel i5-8250U CPU, and 24 GB DDR4 2400 MHz RAM.
Year | Reproduced | animals | cups | fruit | masks |
---|---|---|---|---|---|
2005 | Tan2005 |
67.0 | 170.0 | 210.0 | 190.0 |
2006 | Yoon2006 |
2.8 | 1.6 | 2.6 | 3.4 |
2008 | Shen2008 |
1.9 | 7.8 | 4.3 | 4.9 |
2009 | Shen2009 |
0.9 | 0.05 | 0.041 | 0.029 |
2010 | Yang2010 |
0.31 | 0.13 | 0.11 | 0.081 |
2013 | Shen2013 |
0.043 | 0.071 | 0.083 | 0.056 |
2016 | Akashi2016 |
140.0 | 170.0 | 230.0 | 200.0 |
- R. T. Tan, “Specularity, Specular Reflectance,” in Computer Vision, Springer US, 2014, pp. 750–752 [Online]. Available: http://dx.doi.org/10.1007/978-0-387-31439-6_538
- A. Artusi, F. Banterle, and D. Chetverikov, “A Survey of Specularity Removal Methods,” Computer Graphics Forum, vol. 30, no. 8, pp. 2208–2230, Aug. 2011 [Online]. Available: http://dx.doi.org/10.1111/J.1467-8659.2011.01971.X
- H. A. Khan, J.-B. Thomas, and J. Y. Hardeberg, “Analytical Survey of Highlight Detection in Color and Spectral Images,” in Lecture Notes in Computer Science, Springer International Publishing, 2017, pp. 197–208 [Online]. Available: http://dx.doi.org/10.1007/978-3-319-56010-6_17
- R. T. Tan and K. Ikeuchi, “Separating reflection components of textured surfaces using a single image,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 27, no. 2, pp. 178–193, Feb. 2005 [Online]. Available: http://dx.doi.org/10.1109/TPAMI.2005.36
- K. Yoon, Y. Choi, and I. S. Kweon, “Fast Separation of Reflection Components using a Specularity-Invariant Image Representation,” in 2006 International Conference on Image Processing, 2006 [Online]. Available: http://dx.doi.org/10.1109/ICIP.2006.312650
- H.-L. Shen, H.-G. Zhang, S.-J. Shao, and J. H. Xin, “Chromaticity-based separation of reflection components in a single image,” Pattern Recognition, vol. 41, no. 8, pp. 2461–2469, Aug. 2008 [Online]. Available: http://dx.doi.org/10.1016/J.PATCOG.2008.01.026
- H.-L. Shen and Q.-Y. Cai, “Simple and efficient method for specularity removal in an image,” Applied Optics, vol. 48, no. 14, p. 2711, May 2009 [Online]. Available: http://dx.doi.org/10.1364/AO.48.002711
- Q. Yang, S. Wang, and N. Ahuja, “Real-Time Specular Highlight Removal Using Bilateral Filtering,” in Computer Vision – ECCV 2010, Springer Berlin Heidelberg, 2010, pp. 87–100 [Online]. Available: http://dx.doi.org/10.1007/978-3-642-15561-1_7
- H.-L. Shen and Z.-H. Zheng, “Real-time highlight removal using intensity ratio,” Applied Optics, vol. 52, no. 19, p. 4483, Jun. 2013 [Online]. Available: http://dx.doi.org/10.1364/AO.52.004483
- Y. Akashi and T. Okatani, “Separation of reflection components by sparse non-negative matrix factorization,” Computer Vision and Image Understanding, vol. 146, pp. 77–85, May 2016 [Online]. Available: http://dx.doi.org/10.1016/j.cviu.2015.09.001
- T. Yamamoto and A. Nakazawa, “General Improvement Method of Specular Component Separation Using High-Emphasis Filter and Similarity Function,” ITE Transactions on Media Technology and Applications, vol. 7, no. 2, pp. 92–102, 2019 [Online]. Available: http://dx.doi.org/10.3169/mta.7.92
- R. Grosse, M. K. Johnson, E. H. Adelson, and W. T. Freeman, “Ground truth dataset and baseline evaluations for intrinsic image algorithms,” in 2009 IEEE 12th International Conference on Computer Vision, 2009 [Online]. Available: http://dx.doi.org/10.1109/ICCV.2009.5459428