You are currently viewing a new version of our website. To view the old version click .
Sensors
  • Article
  • Open Access

11 December 2019

Adaptive Binarization of QR Code Images for Fast Automatic Sorting in Warehouse Systems

,
,
,
,
and
1
School of Computer Science, Guangdong Polytechnic Normal University, Guangzhou 510665, China
2
School of Electronics and Information Technology, Sun Yat-Sen University, Guangzhou 510006, China
*
Authors to whom correspondence should be addressed.
This article belongs to the Special Issue Human-Machine Interaction and Sensors

Abstract

As the fundamental element of the Internet of Things, the QR code has become increasingly crucial for connecting online and offline services. Concerning e-commerce and logistics, we mainly focus on how to identify QR codes quickly and accurately. An adaptive binarization approach is proposed to solve the problem of uneven illumination in warehouse automatic sorting systems. Guided by cognitive modeling, we adaptively select the block window of the QR code for robust binarization under uneven illumination. The proposed method can eliminate the impact of uneven illumination of QR codes effectively whilst meeting the real-time needs in the automatic warehouse sorting. Experimental results have demonstrated the superiority of the proposed approach when benchmarked with several state-of-the-art methods.

1. Introduction

It is estimated that over 50 billion devices will be connected to the Internet by 2020. Accompanying the increasing popularity and wide applications of the Internet of Things (IoT), it will affect all areas of industry, including smart homes, advanced manufacturing, intelligent transportation and healthcare. The IoT can make a connection between the physical world and the virtual world through sensors, automatic identification, embedded systems and other technologies, which has become a new trend for the future Internet [,,,]. Moreover, the automatic identification technology represented by two-dimensional code is one of the most critical technologies in the IoT, which provides an entrance for the connection between the object and the network. Furthermore, the QR code is one of the most widely used two-dimensional bar codes, which has the advantages of large information capacity, strong error robustness, and low cost []. Since there are three position detection patterns with the same width ratio of the fixed module, it can be easily recognized at any viewing angle []. Therefore, the QR code is widely used to manage warehouse logistics. Herein, the main facility responsible for management is the automatic sorting system []. Under the coordination of the control system, the supply system sends the barcode-affixed goods to the sorting system via the conveying equipment. The sorting equipment obtains the predetermined result according to the cargo information to classify the goods accordingly. The workflow diagram of the automatic sorting system is shown in Figure 1.
Figure 1. Diagram of warehouse automatic sorting system.
Since the automatic sorting system sorts the goods according to the associated QR code, rapid and accurate classification of the QR code is the key to the supply system. How to identify the QR code quickly and accurately depends on the efficacy of the sorting system, as well as the capacity and scale of the warehouse. However, the complex and variable lighting environment often leads to uneven illumination of the QR code. Such nonuniform illumination affects the binarization and makes it difficult or inaccurate in identifying the QR code quickly and accurately. Thus, it adds much unnecessary time cost to warehouse management systems.
To address this challenging issue, many attempts have been proposed in recent years. Di et al. developed an improved local Wellner’s algorithm to identify the QR code label on the package in the auto-sorting system []. The principle of the algorithm is simple, while it will spend more time in processing, and the effect of processing the unevenly illuminated QR code images in complex lighting environments is far from the best. Yao et al. presented an algorithm that combines the improved Niblack’s algorithm with the Otsu’s algorithm []. The algorithm is faster but does not have good adaptive ability as it fails to adapt to the different uneven illumination of QR code images. Duan et al. put forward a method suitable for nonuniform illumination bar codes [], but the algorithm is more complex and does not handle well the boundaries of uneven lighting. Wu et al. came up with a method that separates the QR code into several small blocks by block truncation coding (BTC) [], but the steps of the algorithm are lengthy and the results are sensitive to the size of the block window. Yang et al. introduced an improved local threshold method based on the Bernsen’s method [], but the parameters need to be determined manually.
Therefore, we propose a fast-adaptive thresholding method based on symbol features of the QR code for further improvement toward practical expectations from the industry. It solves the issues of long-time cost, poor adaptive ability, and low robustness. The method takes the size of the dark module in the middle of the position detection patterns of the QR code as the selected image block and divides the QR code image into two parts by the window and processes adaptively as guided by the cognitive mechanism. The experimental results illustrate that the proposed approach has a strong adaptive ability, better processing speed, and higher detection accuracy than several existing methods.
The rest of the paper is organized as follows: Section 2 mainly introduces the related work in available threshold techniques. Section 3 presents the details of the proposed approach. The experimental results are given and compared in Section 4, including benchmarking with other approaches and also extended performance analysis under different testing conditions. Finally, Section 5 concludes the paper.

3. Proposed Method

According to the characteristics of the QR code symbol, the proposed method selects the size of the block window adaptively and then uses the window to divide the uneven illumination of the QR code image into several blocks. The following step is to perform threshold processing on each block image and then combine them in sequence. Finally, the complete QR code is reconstructed to achieve the binarization of the nonuniformly illuminated QR code image.

3.1. Preprocessing of QR Codes

Since the block window is closely related to the size of the position detection pattern, the proposed algorithm enhances the contrast of the QR code image to ensure the image finds the position detection pattern after preliminary binarization. The contrast of uneven illumination of the QR code is enhanced by the bottom hat transform, followed by the transformed image being preprocessed by the variable threshold algorithm based on local statistics.
The bottom hat transform is used to extract bright features from the darker background [], then the position detection pattern can be extracted from the uneven illumination of the QR code. The process of the bottom hat transform of a grayscale image I is:
B h a t I = I b I
where represents the morphological closing using the structural element b , and b is defined as follows:
b = max h , w 7
where h and w are the height and width of the QR code image, according to the ratio of 1:1:3:1:1 in position detection patterns of the QR code, the denominator is set to 7.
The basic method of the local threshold is to calculate the standard deviation σ x y and mean value m x y of the pixels around the pixel point and then to determine the threshold. The general form is:
T x y = c 1 σ x y + c 2 m x y
where c 1 and c 2 are non-negative constants. Based on our experiments, we found that c 1 can be an adaptive value in the range of 1–30, and the most appropriate value is 3, while c 2 is a fixed value which equals to 1.
The variable threshold algorithm based on local statistics is based on local threshold processing, which combines local characteristics by logic rather than arithmetic []. Its definition is:
g x , y = 1    f x , y > c 1 σ x y   A N D   f x , y > c 2 m x y 0    o t h e r
where g x , y represents the grayscale value of pixels in a binarized image. f x , y is the input image, and m x y is the mean of the image. A schematic diagram of the preprocessing is shown in Figure 2.
Figure 2. Diagram of preprocessing.

3.2. Adaptive Selection of Block Window

After the preprocessing of the unevenly illuminated QR code image, the position detection patterns can be observed. It has a unique proportion among modules, in the area, which is 1:1:3:1:1 and exists in horizontal, vertical and slanting directions, while the data and error correction code words in the QR code do not exhibit the specific ratio due to the masking operation.

3.2.1. Selection Process of Adaptive Block Window

We first detect the position detection patterns of QR code by the proportional characteristics, in the proposed method. Then, the algorithm determines the size of the block window based on the position detection patterns. The elaborated illustrations of the adaptive selecting block window are shown in Figure 3.
Figure 3. Process of the adaptive selection of the block window.
(1)
During the above process, it is necessary to convert the matrix of the preprocessed QR code image to a one-dimensional array, O _ d i m , in the order of rows, and the value equal to zero in O _ d i m is set to other identical numbers to facilitate the subsequent differential operation.
(2)
Perform a differential operation on the O _ d i m and record the obtained array with two columns as O _ d i f f , where the second column data of O _ d i f f represents the number of consecutive identical elements in the O _ d i m . The first column of data matches the starting position in the O _ d i m , which is defined as the index position.
(3)
Find the element that meets the ratio of 1 : 1 : 3 : 1 : 1 based on the last column data of O _ d i f f , then calculate the size of the dark module in the middle of the position detection pattern by the index position corresponding to the element in the first column data. Namely, the index position difference corresponding to the proportional value 3 is equal to the side length of the dark module. Accordingly, the algorithm selects the size of the block window W to be w × w adaptively.

3.2.2. Analysis of the Feasibility Principle of Adaptive Block Window

The paper corroborates the rationality and robustness of the proposed algorithm to select the block windows from two aspects. We tested the effect on the selection of different windows to binarize different sizes of QR code with the same type of uneven illumination conditions, for one thing. We also tested the effect selecting different uneven illumination QR codes of fixed size for binarization, for another. Moreover, the binarized images are evaluated by full reference objective quality metrics, including peak signal-to-noise ratio ( P S N R ) and structural similarity ( S S I M ).
P S N R is most simply defined via mean square error ( M S E ). Given an m × n monochrome image I and its approximate image K, the M S E and P S N R can be defined as:
M S E = 1 m n i   =   0 m     1 j   =   0 n     1 I i , j K i , j 2
P S N R = 10   ·   l o g 10 M A X I 2 M S E
Concerning Equations (2) and (3), I x , y and K x , y are the corresponding gray value or color value in the original image and the reconstructed image, respectively []. Considering the broad dynamic range, P S N R is usually expressed in the logarithmic decibel scale. Here, M A X I is the maximum pixel value of the image. Generally,   M A X I   is 2 B   1 . B is the color depth, which means several binary digits represent one pixel, and B is often taken as 8.
Unlike P S N R , S S I M is a method to compare the correlation between the distortion image and the reference image directly. Given two images x and y , the structural similarity is defined as:
S S I M x , y = l x , y α c x , y β s x , y γ
where l x , y ,   c x , y and s x , y are the comparison functions of luminance, contrast and structure, respectively. The definition is as follows []:
l x , y = 2 μ x μ y + C 1 μ x 2 + μ y 2 + C 1 , c x , y = 2 σ x σ y + C 2 σ x 2 + σ y 2 + C 2 , s x , y = σ x y + C 3 σ x σ y + C 3
The weights α ,   β and γ are greater than 0, which are parameters for adjusting the relative importance of the three comparison functions.   μ x and μ y are the average of the images x and y . σ x and σ y are their standard deviations. σ x y denotes the covariance of two images. C 1 ,   C 2 and C 3 are the constants to maintain the stability of the comparison functions.
The algorithm obtains the window size as w × w adaptively. The comparison experiments are performed by increasing and decreasing w to change the size of the block window. We selected one group of uneven illumination QR code images for experiments. This group of experiments only changed the resolution of images, in which the images with resolutions of 300 pixels × 300 pixels, 500 pixels × 500 pixels and 700 pixels × 700 pixels were selected as the experimental objects. The results in ascending order of image size are shown in Figure 4, and the line graphs corresponding to P S N R and S S I M values are shown in Figure 5. Then, we selected six kinds of unevenly illuminated QR code images for experiments, the resolution of which was 300 pixels × 300 pixels. The experimental results are shown in Figure 6 and the values corresponding to the P S N R and S S I M indicators are shown in Figure 7.
Figure 4. The experimental results in ascending order of image size. (a) Original image; (b) Block size w   – 10; (c) Block size w   – 5; (d) Block size w ; (e) Block size w   + 5; (f) Block size w   + 10.
Figure 5. The values of P S N R and S S I M of different sizes of QR codes under different windows processing. (a) The line graph corresponding to P S N R ; (b) The line graph corresponding to S S I M .
Figure 6. The experimental results of fixed image size. (a) Original image; (b) Block size w   – 10; (c) Block size w   – 5; (d) Block size w ; (e) Block size w   + 5; (f) Block size w + 10.
Figure 7. The values of P S N R and S S I M of QR codes in the same size under different window processing. (a) The line graph corresponding to P S N R ; (b) The line graph corresponding to S S I M .
The experimental results in Figure 4 demonstrate that even when the size of the same kind of uneven illumination of the QR code is changed, the effect of binarization is still the best with the same window size of w × w . Moreover, the corresponding P S N R and S S I M values are also the largest. While changing the size of w to split and binarize the QR code, the image will lose a part of the information and produce more noise, and the corresponding P S N R and S S I M will decrease definitely. The analyses of the experimental results in Figure 6 and Figure 7 reveal that different types of uneven illumination QR codes with the same size have the best performance of binarization when the window size is w × w , which means that the QR code contains more information. After changing the size of the window, the QR code reconstructed will generate more noise and the values of the P S N R and S S I M indicators will be correspondingly smaller.
The conclusion can be drawn from the experiments that the proposed algorithm is reasonable in the size selection of the block window, since the block window is closely related to the QR code, which results in the strong adaptive ability of the approach. Even if the size of the unevenly illuminated QR code image is changed, or different types of unevenly illuminated QR code images are selected, the algorithm can find the most suitable block window quickly. More importantly, the method offers a standard for the size selection of the block window, avoiding the arbitrariness and irrationality of window selection, and simultaneously improves the processing speed. Furthermore, in the case where the experimental effect allows, the size selection of the block window can be a range. As shown in the above experiments, when the window size length is w w ± 10 , the proposed algorithm also can have a better effect of binarization. It also confirms that the proposed method has better robustness in the selection of the block window.

3.3. Binarization of QR Codes

The detailed process of binarization is to use the window selected adaptively to divide the QR code image. Then, each piece of image is binarized by the Otsu method and combined sequentially to reconstruct the QR code. The method can eliminate the impact of the uneven illumination of the QR code effectively and achieve a better effect of binarization rapidly. The flow diagram of binarization is shown in Figure 8.
Figure 8. Process of QR code binarization.
(1)
The principle of using window w to split the QR code image after the bottom hat transform is as follows. The QR code image after the bottom hat transform is divided into blocks from left to right. When the total length of all the blocks exceeds the image width, the QR code is at most divided into the image height. Likewise, for the QR code image after the bottom hat transform is divided into blocks from top to bottom. When the total length of all the blocks exceeds the image height, the QR code is at most divided into the image width.
(2)
All the blocks are traversed, and each block is binarized by the Otsu’s method. However, it was found in the experiment that the image information at the first block location sometimes disappears. Through analysis, we found that the first block image contains an indefinite foreground and background after enhancing the contrast of the uneven illumination of the QR code. Therefore, the Otsu’s algorithm cannot obtain a better binarization effect after processing the image. The defect can be eliminated when the cyclic threshold algorithm processes the first block. The schematic diagram is shown in Figure 9.
Figure 9. Process of cyclic threshold algorithm.
(3)
All binarized QR code blocks are combined sequentially to reconstruct a whole QR code image.

4. Experiments

The experimental settings have a significant influence on the recognition of the QR code. The higher the accuracy of the equipment used to collect the image, the better the effect of the algorithm. The experimental conditions can be divided into hardware equipment, software environment, and related experimental materials as shown in Table 1, Table 2 and Table 3, respectively. Moreover, each set of images collected with a mobile phone is uniformly processed using the popular image editing tool Adobe Photoshop to make them equal in sizes. Then, calculate the peak signal-to-noise ratio ( P S N R ) and structural similarity ( S S I M ) between the QR code image processed by different algorithms and the original image of the nonuniformly illuminated QR code. Concerning the experiment of the QR code recognition rate, first, the binarization images processed by different algorithms are printed, which are recognized by the barcode recognition software ZXing AndroidSDK and WeChat. Then, we count the recognition rates of different algorithms to complete the experiment.
Table 1. Hardware equipment.
Table 2. Software environment.
Table 3. Other experimental materials.
We selected five types of unevenly illuminated QR code images for testing, which showed the advantages of the proposed method in dealing with the uneven illumination of QR codes. The experimental effect of other algorithms is compared with the proposed algorithm, and the P S N R and S S I M indexes are used to evaluate the image quality after binarization.
(1)
The effect of different algorithms in dealing with the uneven illumination of the QR code in Di’s paper [] is shown in Figure 10. The reason why the phenomenon of uneven illumination occurs is lack of light in the acquisition resulting in a low local gray value of the image.
Figure 10. The original image and experimental results from different algorithms: (a) Original image; (b) Otsu’s algorithm; (c) Niblack’s algorithm; (d) Yao’s algorithm; (e) Di’s algorithm; (f) Proposed method.
(2)
The effect of different algorithms in dealing with the uneven illumination of the QR code in Yao’s paper [] is shown in Figure 11. The result of this uneven lighting phenomenon is due to the collection of light which is dark, or the limited acquisition by the device so that the overall gray value of the image is low.
Figure 11. The original image and experimental results from different algorithms: (a) Original image; (b) Otsu’s algorithm; (c) Niblack’s algorithm; (d) Yao’s algorithm; (e) Di’s algorithm; (f) Proposed method.
(3)
The effect of different algorithms in dealing with uneven QR codes with strong light spots is shown in Figure 12. The local light intensity is too loud when the image is collected, and the acquisition device has a focus on this area, which has led to this kind of phenomenon of uneven illumination.
Figure 12. The original image and experimental results from different algorithms: (a) Original image; (b) Otsu’s algorithm; (c) Niblack’s algorithm; (d) Yao’s algorithm; (e) Di’s algorithm; (f) Proposed method.
(4)
The effect of different algorithms to deal with the uneven illumination of the QR code with higher overall contrast is shown in Figure 13. The cause of uneven illumination is that the image is obscured, which results in partial shadows on the image.
Figure 13. The original image and experimental results from different algorithms: (a) Original image; (b) Otsu’s algorithm; (c) Niblack’s algorithm; (d) Yao’s algorithm; (e) Di’s algorithm; (f) Proposed method.
(5)
The effect of different algorithms to deal with the uneven illumination of the QR code with lower local contrast is shown in Figure 14. This phenomenon occurs when the local illumination is too intense.
Figure 14. The original image and experimental results from different algorithms: (a) Original image; (b) Otsu’s algorithm; (c) Niblack’s algorithm; (d) Yao’s algorithm; (e) Di’s algorithm; (f) Proposed method.
The values of P S N R and S S I M obtained by binarization of different uneven illuminations of the QR code images after the proposed method and other algorithms are listed in Table 4, and the broken line graph is shown in Figure 15.
Table 4. The values of P S N R and S S I M of different QR codes using different algorithms.
Figure 15. The values of P S N R and S S I M of different QR codes using different algorithms. (a) The line graph corresponding to P S N R ; (b) The line graph corresponding to S S I M .
Clearly, the proposed method has a better effect than the other comparison algorithms when dealing with multiple uneven illumination QR image types from Figure 10 to Figure 14. Especially in the case of over-illuminated and obscured QR code images, using the Otsu algorithm directly will cause large pieces of information to disappear, while using the Niblack’s algorithm will generate a lot of noise. Even though the noise can be eliminated by adjusting the size of the block window, the algorithm needs to test to find the appropriate window constantly and the operation time is too long. Yao’s algorithm is suitable for the binarization of QR code images with no intense illumination changes and no apparent change boundaries. When the illumination changes sharply at the boundary, the algorithm cannot classify the pixels in the boundary buffer region well, which leads to the reduced effect of binarization. Di’s algorithm causes black block or missing information at the position where the light intensity changes drastically. What is more, according to the information in Table 4 and Figure 15, the proposed algorithm is superior to other the comparison algorithms in P S N R and S S I M . It illustrates that the image binarized by the proposed method has a higher quality, which proves that the proposed method has consistent performance in subjective and objective evaluation.
Furthermore, several algorithms are compared for operation time and recognition rates. There are 80 experimental samples of QR code images under different illumination conditions, including 30 images with weak uneven illumination and 50 images with intense uneven illumination. The resolution of the image is 300 pixels × 300 pixels. Then, the barcode recognition software ZXing AndroidSDK and WeChat are used to decode and identify the binarized image, respectively. The comparison results are shown in Table 5.
Table 5. Comparison of average calculation time and recognition rate of five algorithms.
The analysis of Table 5 reveals that the speed of Otsu’s algorithm and Yao’s algorithm is faster, but the effect is not good enough, and even the recognition rate of Otsu’s algorithm is lower than that without the algorithms. The proposed algorithm determines the size of the block window by pre-processing, which shortens the time for the algorithm to traverse the image. Thus, the operation speed of the algorithm is improved greatly. Compared with the Niblack’s algorithm and Di’s algorithm, the proposed algorithm has a higher average calculation efficiency and recognition rate.
To summarize, compared with other algorithms, the experimental results demonstrate that the proposed method has better performance in QR code recognition and its binarization results and effectiveness are superior to other approaches.

5. Conclusions

An adaptive binarization approach based on QR code symbol features was proposed to solve the problem of QR code scanning under uneven illuminations in warehouse management applications. The algorithm automatically calculates the size of the image block according to the QR code position detection pattern, based on which binarization is applied block-by-block. Intrinsically, we successfully solved the problem and helped to extract a complete QR code, even when the illumination varied unevenly, particularly for the binarization of the uneven illumination of the QR code under intense local illumination and obscured image. The algorithm is suitable for QR code binarization in complex illumination environments, such as warehouse auto-sorting systems, even in a real-time manner. Intensive experiments have fully validated the efficacy and robustness of the proposed approach.

Author Contributions

Conceptualization, R.C., H.Z. and H.-Z.T.; Funding acquisition, R.C., H.Z. and H.-Z.T.; Methodology, R.C. and X.X.; Project administration, H.Z.; Resources, H.-Z.T.; Software, Y.Y.; Validation, Y.Y. and X.X.; Writing—original draft, Y.Y. and R.C.; Writing—review & editing, R.C., L.W., H.Z. and H.-Z.T.

Funding

This work was supported by the National Natural Science Foundation of China(NO.61672008), the Innovation Team Project of the Education Department of Guangdong Province(NO.2017KCXTD021), the Project for Distinctive Innovation of Ordinary Universities of Guangdong Province (NO.2018KTSCX120), the Ph.D. Start-up Fund of Natural Science Foundation of Guangdong Province (NO.2016A030310335), the Science and Technology Planning Project of Guangdong Province(NO.76120-42020022).

Acknowledgments

The authors would like to appreciate the contributions from Digital Content Processing and Security Technology of Guangzhou Key Laboratory of School of Computer Science, Guangdong Polytechnic Normal University.

Conflicts of Interest

The authors declare that they have no conflicts of interest.

References

  1. Yao, L.; Sheng, Q.Z.; Dustdar, S. Web-based management of the internet of things. IEEE Internet Comput. 2015, 19, 60–67. [Google Scholar] [CrossRef]
  2. Li, D.X.; He, W.; Li, S. Internet of things in industries: A survey. IEEE Trans. Ind. Inform. 2014, 10, 2233–2243. [Google Scholar]
  3. Raja, S.; Rajkumar, T.D.; Raj, V.P. Internet of things: Challenges, issues and applications. J. Circuits Syst. Comput. 2018, 27, 1830007. [Google Scholar] [CrossRef]
  4. Miorandi, D.; Sicari, S.; De Pellegrini, F.; Chlamtac, I. Internet of things: Vision, applications and research challenges. Ad hoc Netw. 2012, 10, 1497–1516. [Google Scholar] [CrossRef]
  5. McCullouch, B.G.; Lueprasert, K. 2D bar-code applications in construction. J. Constr. Eng. Manag. 1994, 120, 739–752. [Google Scholar] [CrossRef]
  6. Soon, T.J. QR code. Synth. J. 2008, 2008, 59–78. [Google Scholar]
  7. Park, J.H.; Park, J.H.; Lee, B.H. RFID application system for postal logistics. In Proceedings of the PICMET′07—2007 Portland International Conference on Management of Engineering & Technology, Portland, OR, USA, 5–9 August 2007; pp. 2345–2352. [Google Scholar]
  8. Di, Y.J.; Shi, J.P.; Mao, G.Y. A QR code identification technology in package auto-sorting system. Mod. Phys. Lett. B 2017, 31, 19–21, 1740035. [Google Scholar] [CrossRef]
  9. Yao, S.; Li, P.; He, L.; Li, Y. Uneven Illumination Two-Dimensional Code Image Recognition Algorithm Research. In Proceedings of the 2018 2nd IEEE Advanced Information Management, Communicates, Electronic and Automation Control Conference (IMCEC), Xi’an, China, 23 March 2018; pp. 2043–2046. [Google Scholar]
  10. Duan, Z.; Zhang, Y.; Li, S. Binarization of Nonuniform Illumination Barcode. In Proceedings of the International Conference on Machine Vision and Applications, Singapore, 23–25 April 2018; pp. 18–21. [Google Scholar]
  11. Wu, Y.; Yu, S.; Yang, M. Quick Response Code Binary Research Based on Basic Image Processing. Sens. Mater. 2019, 31, 859–871. [Google Scholar] [CrossRef]
  12. Yang, L.; Feng, Q. The Improvement of Bernsen Binarization Algorithm for QR Code Image. Proceeding of the 2018 5th IEEE International Conference on Cloud Computing and Intelligence Systems (CCIS), Nanjing, China, 23–25 November 2018; pp. 931–934. [Google Scholar]
  13. Kim, H.; Lee, J.; Ahn, E.; Cho, S.; Shin, M.; Sim, S.H. Concrete crack identification using a UAV incorporating hybrid image processing. Sensors 2017, 17, 2052. [Google Scholar] [CrossRef]
  14. Weszka, J.S. A survey of threshold selection techniques. Comput. Graph. Image Process. 1978, 7, 259–265. [Google Scholar] [CrossRef]
  15. Otsu, N. A threshold selection method from gray-level histograms. IEEE Trans. Syst. Man Cybern. 1979, 9, 62–66. [Google Scholar] [CrossRef]
  16. Niblack, W. An Introduction to Digital Image Processing; Strandberg Publishing Company: Birkeroed, Denmark, 1985. [Google Scholar]
  17. Hadjadj, Z.; Meziane, A.; Cherfa, Y.; Cheriet, M.; Setitra, I. ISauvola: Improved Sauvola’s algorithm for document image binarization. In Proceedings of the International Conference on Image Analysis and Recognition, Póvoa de Varzim, Portugal, 13–15 July 2016; pp. 737–745. [Google Scholar]
  18. Mustafa, W.A.; Yazid, H.; Jaafar, M. An improved sauvola approach on document images binarization. J. Telecommun. Electron. Comput. Eng. 2018, 10, 43–50. [Google Scholar]
  19. Saddami, K.; Munadi, K.; Away, Y.; Arnia, F.J.H. Effective and fast binarization method for combined degradation on ancient documents. Heliyon 2019, 5, e02613. [Google Scholar] [CrossRef] [PubMed]
  20. Lu, D.; Huang, X.; Sui, L. Binarization of degraded document images based on contrast enhancement. Int. J. Doc. Anal. Recognit. 2018, 21, 123–135. [Google Scholar] [CrossRef]
  21. Adhikari, G.; Mukherjee, R.; Dasgupta, T. A Local Adaptive Region-Wise Histogram Correction and Thresholding Technique for Very Poorly Illuminated Images. In Proceedings of the 2018 International Conference on Wireless Communications, Signal Processing and Networking (WiSPNET), Chennai, India, 22–24 March 2018; pp. 1–5. [Google Scholar]
  22. Bhabatosh, C. Digital image processing and analysis, 2nd ed.; PHI Learning Pvt. Ltd: Kolkata, India, 2011. [Google Scholar]
  23. Gonzalez, R.C.; Woods, R.E. Digital Image Processing, 4th ed.; Pearson Education Ltd: New York, NY, USA, 2018. [Google Scholar]
  24. Tong, Y.; Zhang, Q.; QI, Y. Image quality assessing by combining PSNR with SSIM. J. Image Graph. 2006, 12, 1758–1763. [Google Scholar]
  25. Wang, Z.; Simoncelli, E.P.; Bovik, A.C. Multiscale structural similarity for image quality assessment. In Proceedings of the Thrity-Seventh Asilomar Conference on Signals, Systems & Computers, Pacific Grove, CA, USA, 9–12 November 2003; pp. 1398–1402. [Google Scholar]

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.