This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.
1. Introduction
Image segmentation which extracts objects of interest from background is a fundamental technology for various image processing tasks. It has been widely used in various kinds of applications including text detection [1], medical image processing [2], document binarization [3], remote sensing [4], and object detection [5]. Thresholding method is one of the most well-known segmentation algorithms due to its simplicity and effectiveness [6]. The main goal of the image thresholding is to divide the pixels of an image into several subsets by selecting some intensity values. While we can choose more than one threshold values for multilevel segmentation, in this paper, we only focus on a single threshold segmentation which separates the whole image into two parts, and each corresponds to the background and foreground. In the past decades, there were many threshold selection methods presented including histogram shape-based methods [7–9], clustering-based methods [10–12], and entropy-based methods [13, 14]. The thresholding algorithms can be generally categorized into the global thresholding and the local thresholding. In the global thresholding, all pixels of the processed image use the same threshold value. Among all existing global thresholding algorithms, Otsu’s technique [6] which was first proposed by Otsu in 1979 is still one of the most frequently used clustering-based global thresholding methods [15]. Due to simplicity and effectiveness, Otsu’s technique is usually used as the preprocessing step in complex applications [16, 17]. The main idea behind the Otsu’s algorithm is to maximize the between-class variance to determine the optimal threshold value. When meeting the assumption that the gray level distributions of both the foreground and background are Gaussian distributions with equal variance, Otsu’s method can produce satisfactory results on real-world images [18, 19]. However, most real-world images do not satisfy this applicable condition. Therefore, the performance of Otsu’s method may degrade when the gray level histogram of the image is close to unimodal or the variances of the foreground and background are significantly different. Figure 1 shows segmentation results of Otsu’s method on real cell images with a unimodal histogram and large between-class variance.
[figures omitted; refer to PDF]
Due to the limitations mentioned above, a lot of research efforts have been put into analyzing and improving the Otsu’s method. Ng [20] introduced a valley emphasis term into the objective function of Otsu’s method and proposed a valley emphasis algorithm (VE) to ensure the threshold value locating at the valley of the histogram. Based on the fact that histogram valley corresponds to a low grayscale probability, Ng took the grayscale probability as the valley metric and demonstrated the effectiveness of Ng’s method on some test images. However, its valley metric does not take the neighborhood information into consideration. Fan and Lei [21] modified the valley metric using smoothed grayscale probability and proposed a new method named NVE to improve Otsu’s method. The valley metrics used in VE and NVE depend on the grayscale probability. To better represent the histogram valley, Xing et al. [22] proposed an improved valley emphasis method using second-order derivative-based valley metric.
Hu and Gong [23] proposed a two-stage method to further expand the application scenarios of Otsu’s method. In the first stage, the method detects the peaks of the histogram close to left and right boundary and smooths the image pixels whose intensities are between the corresponding intensities of the two peaks. In the second stage, Otsu’s method is applied on the preprocessed image. The experimental results showed that Hu’s method can provide better segmentation results than Otsu’s algorithm. To better understand the limitations of Otsu’s method, Xu et al. [24] studied its characteristics and proposed a two-round Otsu’s algorithm. The main conclusion of Xu’s work is the threshold value computed using Otsu’s method tends to bias toward the class with a larger within-class variance. Inspired by Xu’s work, Yuan et al. [25] introduced a weighted object variance (WOV) parameter to the Otsu’s objective function and proposed an improved Otsu’s method for detection. Also motivated by Xu’s work, Yang et al. [26] analyzed the relationship between pixel intensity and cumulative pixel number and gave a postadjusting strategy for the threshold value acquired by Otsu’s method. Not only the improved one dimensional Otsu’s methods were developed which mentioned above but also many two-dimensional Otsu’s algorithms have been proposed [27–30]. Cao et al. [31] claimed that the existing improved Otsu’s methods could not process images with a broad histogram or a flat valley. Many of the existing methods, especially two-dimensional Otsu’s methods, are not parameter free. To overcome this challenge, Cao et al. [31] proposed a novel parameter-free method which can achieve a more accurate and robust performance. In addition, there are also studies trying to improve the performance of Otsu’s method in the case of multiple thresholds [32]. A typical way is to use bionic algorithms (e.g., artificial bee colony algorithm [32, 33]) to search optimal multiple thresholds instead of using brute force methods. In this paper, we are mainly focusing on the bilevel image thresholding, and we will not further review the multilevel thresholding methods.
While a large number of improved Otsu’s methods have been proposed, there are a few studies focusing on the performance analysis of the algorithms in-depth. Goh et al. [34] studied the performance of Otsu’s technique using Monte Carlo statistical method. However, the performance comparison among different Otsu-based algorithms is still understudied, and also the test images used in existing studies are significantly different. To the best of our knowledge, there is no existing study on the categorization strategy of a various Otsu-based algorithms. In this paper, we first give a categorization method for different Otsu-based methods based on the objective functions, preprocessing, and postprocessing strategies. Second, a real-world image dataset and a Monte Carlo-based image synthetic method are employed for the evaluation of Otsu-based thresholding algorithms. Furthermore, several typical corruptions are adopted to test different algorithms. The main contributions of the paper are as follows:
(1) We propose a categorization method for different improved Otsu-based algorithms based on their objective functions, preprocessing, and postprocessing strategies
(2) The characteristics of each Otsu-based method are analyzed in-depth. More specifically, the effect of variance and distance between mean values of foreground and background, the ratio of foreground object in the whole image are discussed using a Monte Carlo-based image synthetic method
(3) The robustness of each Otsu-based method to two typical kinds of corruptions is studied on a real-world cell image dataset, and the performance of each algorithm corresponding to different noise intensities is analyzed
(4) We compare the time cost of all test algorithms and find that preprocessing or postprocessing steps may significantly increase algorithm’s consuming time when implementing by Matlab if the preprocessing or postprocessing does not meet the language characteristics
The remainder of the paper is organized as follows. Section 2 introduces the basic principle of Otsu’s method and reviews the recent improved algorithms based on the Otsu’s method using a categorization strategy. Section 3 presents the characteristics and performance analytics for the compared Otsu-based algorithms by conducting experiments on the synthetic images and real-world cell images. Section 4 presents the discussion and conclusion.
2. Overview of Otsu-Based Thresholding Methods
Otsu’s method is one of the most frequently used automatic thresholding algorithms. In this section, we introduce the basic principle of Otsu’s algorithm and give a brief review of recently improved Otsu-based thresholding methods.
Suppose
With the above definitions, we can compute the optimal threshold
The objective function described in equation (4) indicates that the best threshold of Otsu’s method maximizes the weighted sum of the square of distance between mean intensity of foreground and the whole image and the square of distance between mean intensity of background and the whole image, which is also known as the interclass variance.
There are two main improvement strategies for the original Otsu’s method. One is to modify the objective function to make the threshold value more reasonable, and the other is to add preprocessing and/or postprocessing steps. Table 1 lists algorithms and their corresponding objective functions for the performance comparison purpose in this paper. Following the two main improvement strategies, we can roughly divide the eight methods in Table 1 into two categories. Methods including VE [20], NVE [21], Xing’s, WOV, and Cao’s are only focusing on improving the objective function, and Hu’s, Xu’s, and Yang’s methods introduce preprocessing and/or postprocessing steps. In the following, we will give a brief introduction to the other eight Otsu-based algorithms.
Table 1
A description of each Otsu-based algorithm discussed in this paper.
Method | Objective function | Preprocessing | Postprocessing |
Otsu’s [6] | — | — | |
VE [20] | — | — | |
NVE [21] | — | — | |
Xing’s [22] | — | — | |
WOV [25] | — | — | |
Cao’s [31] | — | — | |
Hu’s [23] | √ | — | |
Xu’s [24] | √ | — | |
Yang’s [26] | — | √ |
As described in Table 1, the first improved algorithm VE modified the objective function of Otsu’s method by adding a new valley metric term
A new second-order derivative based valley metric was proposed by Xing et al. [22] in which the valley metric proposed was defined as equation (7) below:
Besides the three valley emphasis methods above, Cao’s method and WOV algorithm also belong to the first category which are focusing on modifying the objective function. In WOV, the influence of the foreground variance is increased, and the weight of the first term of Otsu’s method is changed from
The second category is based on adding preprocessing and/or postprocessing steps. In Hu’s study, a preprocessing scheme is applied on the processed gray level image before implementing standard Otsu’s method. The image preprocessing can be described as:
Different from Hu’s preprocessing strategy, Xu et al. proposed a two-round Otsu’s method which applied a preprocessing step on intensity probability of the processed gray image. Xu et al. assumed that the pixel intensity of foreground in an image is larger than background, the interclass variance of foreground is significantly large, and the real optimal threshold value should be smaller than Otsu’s result. To make the threshold value sounder, Xu et al. proposed to apply the following preprocessing strategy on pixel intensity probability and calculate the optimal threshold value using Otsu’s algorithm based on new pixel intensity probabilities in.
Yang et al. also proposed a postprocessing strategy for threshold tuning based on the relationship between
As we discussed, two different improvement ideas are employed in the eight improved Otsu’s methods. The first category of improved Otsu’s methods is aimed at forming a more suitable objection function by adding various kinds of constraint components, which provides some helpful clues for the optimal threshold value searching. Another kind of improved algorithms does preprocessing or postprocessing either on the input image or on its histogram instead of directly modifying the objection function, which, as a matter of fact, is a hybrid technology. In the following sections, experiments will be conducted to compare the performance of each algorithm introduced above.
3. Performance Analysis of Otsu-Based Thresholding Methods
In this section, the performance of each Otsu-based algorithm will be evaluated. All experiments are implemented using Matlab R2012b on a PC with Windows 7. The experiments are conducted on two kinds of images which are synthetic images and real world images. The following influenced factors will be discussed on synthetic images and real world images:
(1) Variance and Distance between Mean Values of Foreground and Background. We will generate different synthetic images whose pixel intensity distributions of foreground and background are approximately normal distribution, and the effect of variance and distance between mean values will be discussed
(2) The Ratio of Foreground Object in the Whole Image. The foreground object size is another important factor that will influence the thresholding results. Images with different foreground ratios will be generated and used to study the effect of foreground ratio on segmentation results
(3) Image corruption noises including Salt&Pepper noise and Gaussian noise are applied to test the robustness of each algorithm
3.1. Testing on Synthetic Images
In this section, we will study the relationship between algorithms’ performance and variances and distance of mean values of foreground and background. The segmentation ratio measurement is adopted as the evaluation metric [34], which is defined as:
From the definition, it is obvious that if the segmentation is completely correct, the segmentation ratio will be 1, other values are corresponding to under segmentation
To study the first two items of the above three affecting factors, we generate appropriate images using different parameters. The intensities of foreground and background of the generated images are all approximately normally distributed as follows:
Figure 2 shows the binarization results of each algorithm on two synthetic images with different parameters. The foreground ratios of the two images are both 20%, and the variances of foreground and background are fixed as 10. The first synthetic image is almost bimodal, and the foreground and background distributions of the second synthetic image are significantly overlapped. From Figure 2, we can see that most methods obtain good segmentation results on the first synthetic image except Xing’s, Xu’s, and Yang’s. However, the segmentation results become worse on the second synthetic image. The segmentation results indicate that the distance of mean values of foreground and background will significantly affect the algorithms’ performance, and more details will be discussed next.
[figures omitted; refer to PDF]
Figure 3 demonstrates the relationship between
[figure omitted; refer to PDF]
To test the influence of foreground object size, we further conduct experiments to verify the performance of algorithms on synthetic images with different foreground ratio
[figure omitted; refer to PDF]
In this part, synthetic images with different foreground variances are generated and tested to verify the influence of different foreground variances. The mean values of foreground and background are set as
[figure omitted; refer to PDF]
Table 2 illustrates the threshold values of each algorithm on synthetic images as shown in Figure 5. From Table 2, we find that the threshold value increases as the foreground variance increases for most algorithms, which is consistent with the conclusion in Xu’s work that the threshold value tends to be close to the class with larger variance.
Table 2
Threshold values of each algorithm on different synthetic images.
Otsu | Cao’s | VE | NVE | WOV | Xing’s | Xu’s | Hu’s | Yang’s | |
10 | 92 | 91 | 90 | 92 | 91 | 46 | 36 | 90 | 53 |
20 | 93 | 97 | 88 | 89 | 94 | 45 | 36 | 90 | 54 |
30 | 94 | 98 | 89 | 90 | 94 | 119 | 37 | 90 | 65 |
40 | 96 | 101 | 96 | 93 | 97 | 44 | 38 | 90 | 85 |
50 | 99 | 106 | 96 | 96 | 100 | 58 | 39 | 90 | 89 |
Figure 6 demonstrates the segmentation ratio of each method under different foreground variances on synthetic images. Although the foreground variance can influence the threshold value, it seems the segmentation ratio is not affected for most algorithms. One reason could be the distance between the mean values of foreground and background is large enough.
[figure omitted; refer to PDF]
Next, two kinds of noises are tested. First one is Salt&Pepper noise which is one of the most common noises. We test the influence of Salt&Pepper noise on each method on cell images. The ME values are calculated on original images and noise corrupted images with the noise intensity ranging from 0.1 to 0.7, and the relationship between average ME value of each algorithm and noise intensity can be found in Figure 8. It is obvious that all algorithms are significantly affected by Salt&Pepper noise, and the ME value grows almost linearly with increasing noise intensity
[figure omitted; refer to PDF]
Gaussian noise is another type of common noise. In this study, we evaluate the performance of all methods on Gaussian corrupted cell images. The mean value of Gaussian is always set to 0 in this section, and the variance changes from 0 to 0.1. Figure 9 shows the relation curves between ME and
3.3. Algorithm Time Cost Testing
In this section, we compare the time cost of all tested algorithms. Following the analysis method introduced in Xing’s study [22], it is not difficult for us to draw a conclusion that the time complexity of all test methods in this work is
Figure 10 shows the relationship between the consuming time of each method and the image size, and the results are the average of ten runs. It is obvious that the consuming time of methods with no preprocessing and postprocessing changes slowly with increasing image size. On the other hand, Hu’s, Xu’s, and Yang’s methods consume more time than other methods, and this becomes increasing significant with the increase of image size. As each algorithm has the same time complexity, the significant difference in time cost is related to whether the implementation code meets the language characteristics of Matlab.
[figure omitted; refer to PDF]4. Conclusion
In this study, the performance of nine Otsu-based thresholding algorithms is analyzed. Experiments on synthetic images indicate that the distance between the mean values of foreground and background
Acknowledgments
This work is partly supported by the National Natural Science Foundation of China (Grant no. 61866031) and the Science Technology Foundation for Middle-aged and Young Scientist of Qinghai University (2018-QGY6).
[1] B. Epshtein, E. Ofek, Y. Wexler, "Detecting text in natural scenes with stroke width transform," Proceedings of IEEE Conference on Computer Vision and Pattern Recognition, vol. 13-18, pp. 2963-2970, .
[2] L. Lin, W. Yang, C. Li, J. Tang, X. Cao, "Inference with collaborative model for interactive tumor segmentation in medical image sequences," IEEE Transactions on Cybernetics, vol. 46, pp. 2796-2809, 2017.
[3] S. He, L. Schomaker, "DeepOtsu: document enhancement and binarization using iterative deep learning," Pattern Recognition, vol. 91, pp. 379-390, DOI: 10.1016/j.patcog.2019.01.025, 2019.
[4] B. Han, Y. Wu, "A novel active contour model based on modified symmetric cross entropy for remote sensing river image segmentation," Pattern Recognition, vol. 67, pp. 396-409, DOI: 10.1016/j.patcog.2017.02.022, 2017.
[5] R. Cucchiara, C. Grana, M. Piccardi, A. Prati, "Detecting moving objects, ghosts, and shadows in video streams," IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 25 no. 10, pp. 1337-1342, DOI: 10.1109/TPAMI.2003.1233909, 2003.
[6] M. Sezgin, B. Sankur, "Survey over image thresholding techniques and quantitative performance evaluation," Journal of Electronic Imaging, vol. 13, pp. 146-168, 2004.
[7] R. Azreal, D. Pilar, "Histogram concavity analysis as an aid in threshold selection," IEEE Transactions on Systems, Man, and Cybernetics, vol. 13, pp. 231-235, 1983.
[8] R. Guo, S. Pandit, "Automatic threshold selection based on histogram modes and a discriminant criterion," Machine Vision Applications, vol. 10 no. 5-6, pp. 331-338, DOI: 10.1007/s001380050083, 1998.
[9] M. J. Carlotto, "Histogram analysis using a scale-space approach," IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. PAMI-9 no. 1, pp. 121-129, DOI: 10.1109/TPAMI.1987.4767877, 1987.
[10] T. W. Ridler, "Picture thresholding using an iterative selection method," IEEE Transactions on Systems, Man, and Cybernetics, vol. 8, pp. 630-632, 1978.
[11] N. Otsu, "A threshold selection method from gray-level histograms," IEEE Transactions on Systems, Man, and Cybernetics, vol. 9 no. 1, pp. 62-66, DOI: 10.1109/TSMC.1979.4310076, 1979.
[12] C. V. Jawahar, P. K. Biswas, A. K. Ray, "Investigations on fuzzy thresholding based on fuzzy clustering," Pattern Recognition, vol. 30 no. 10, pp. 1605-1613, DOI: 10.1016/S0031-3203(97)00004-6, 1997.
[13] H. D. Cheng, Y. Cheng, Y. Sun, "A novel fuzzy entropy approach to image enhancement and thresholding," Signal Processing, vol. 75 no. 3, pp. 277-301, DOI: 10.1016/S0165-1684(98)00239-4, 1999.
[14] P. K. Sahoo, C. Wilkins, J. Yeager, "Threshold selection using Renyi's entropy," Pattern Recognition, vol. 30 no. 1, pp. 71-84, DOI: 10.1016/S0031-3203(96)00065-9, 1997.
[15] Z. Hou, Q. Hu, W. L. Nowinski, "On minimum variance thresholding," Pattern Recognition Letters, vol. 27 no. 14, pp. 1732-1743, DOI: 10.1016/j.patrec.2006.04.012, 2006.
[16] M. Zortea, E. S. Flores, J. Scharcanski, "A simple weighted thresholding method for the segmentation of pigmented skin lesions in macroscopic images," Pattern Recognition, vol. 64, pp. 92-104, DOI: 10.1016/j.patcog.2016.10.031, 2017.
[17] L. He, X. Ren, Q. Gao, X. Zhao, B. Yao, Y. Chao, "The connected-component labeling problem: a review of state-of-the-art algorithms," Pattern Recognition, vol. 70, pp. 25-43, DOI: 10.1016/j.patcog.2017.04.018, 2017.
[18] J. Kittler, J. Illingworth, "On threshold selection using clustering criteria," IEEE Transactions on Systems, Man, and Cybernetics, vol. SMC-15 no. 5, pp. 652-655, DOI: 10.1109/TSMC.1985.6313443, 1985.
[19] T. Kurita, N. Otsu, N. N. Abdelmalek, "Maximum likelihood thresholding based on population mixture models," Pattern Recognition, vol. 25 no. 10, pp. 1231-1240, DOI: 10.1016/0031-3203(92)90024-D, 1992.
[20] H. Ng, "Automatic thresholding for defect detection," Pattern Recognition Letters, vol. 27 no. 14, pp. 1644-1649, DOI: 10.1016/j.patrec.2006.03.009, 2006.
[21] J. L. Fan, B. Lei, "A modified valley-emphasis method for automatic thresholding," Pattern Recognition Letters, vol. 33 no. 6, pp. 703-708, DOI: 10.1016/j.patrec.2011.12.009, 2012.
[22] G. W. Xing, P. Yang, L. T. Qingge, "Automatic thresholding using a modified valley emphasis," IET Image Processing, vol. 14 no. 3, pp. 536-544, 2019.
[23] B. Hu, N. Gong, "An improved Otsu’s thresholding segmentation method," Microelectronics and Computer, vol. 26, pp. 153-155, 2009.
[24] X. Y. Xu, S. Z. Xu, L. H. Jin, E. M. Song, "Characteristic analysis of Otsu threshold and its applications," Pattern Recognition Letters, vol. 32 no. 7, pp. 956-961, DOI: 10.1016/j.patrec.2011.01.021, 2011.
[25] X. C. Yuan, L. S. Wu, Q. J. Peng, "An improved Otsu method using the weighted object variance for defect detection," Applied Surface Science, vol. 349, pp. 472-484, DOI: 10.1016/j.apsusc.2015.05.033, 2015.
[26] P. Yang, W. Song, X. B. Zhao, R. Zheng, L. T. Qingge, "An improved Otsu threshold segmentation algorithm," International Journal of Computational Science and Engineering, vol. 22, pp. 146-153, DOI: 10.1504/IJCSE.2020.107266, 2020.
[27] J. Z. Liu, W. Q. Li, "The automatic thresholding of gray-level pictures via two-dimensional Otsu method," Acta Automatica Sinica, vol. 19, pp. 101-105, 1993.
[28] J. L. Fan, F. Zhao, "Two-dimensional Otsu's curve thresholding segmentation method for gray-level images," Acta Electronica Sinica, vol. 35, pp. 751-755, 2007.
[29] Q. Chen, L. Zhao, J. Lu, G. Kuang, N. Wang, Y. Jiang, "Modified two-dimensional Otsu image segmentation algorithm and fast realisation," IET Image Processing, vol. 6 no. 4, pp. 426-433, DOI: 10.1049/iet-ipr.2010.0078, 2012.
[30] C. S. Sha, J. Hou, H. X. Cui, "A robust 2D Otsu's thresholding method in image segmentation," Journal of Visual Communication and Image Representation, vol. 41, pp. 339-351, DOI: 10.1016/j.jvcir.2016.10.013, 2016.
[31] X. H. Cao, T. H. Li, H. L. Li, S. R. Xia, F. J. Ren, Y. Sun, X. Y. Xu, "A robust parameter-free thresholding method for image segmentation," IEEE Access, vol. 7, pp. 3448-3458, DOI: 10.1109/ACCESS.2018.2889013, 2019.
[32] H. Gao, Y. Shi, C. M. Pun, S. Kwong, "An improved artificial bee colony algorithm with its application," IEEE Transactions on Industrial Informatics, vol. 15 no. 4, pp. 1853-1865, 2019.
[33] H. Gao, Z. Fu, C. M. Pun, J. Zhang, S. Kwong, "An efficient artificial bee colony algorithm with an improved linkage identification method," IEEE transactions on cybernetics,DOI: 10.1109/TCYB.2020.3026716, 2020.
[34] T. Y. Goh, S. N. Basah, H. Yazid, M. J. Safar, F. S. Saad, "Performance analysis of image thresholding: Otsu technique," Measurement, vol. 114, pp. 298-307, DOI: 10.1016/j.measurement.2017.09.052, 2018.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
Copyright © 2021 Qinglin Cao et al. This is an open access article distributed under the Creative Commons Attribution License (the “License”), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License. https://creativecommons.org/licenses/by/4.0/
Abstract
Image thresholding is a widely used technology for a lot of computer vision applications, and among various global thresholding algorithms, Otsu-based approaches are very popular due to their simplicity and effectiveness. While the usage of Otsu-based thresholding methods is well discussed, the performance analyses of these methods are rather limited. In this paper, we first review nine Otsu-based approaches and categorize them based on their objective functions, preprocessing, and postprocessing strategies. Second, we conduct several experiments to analyze the model characteristics using different scene parameters both on synthetic images and real-world cell images. We put more attention to examine the variance of foreground object and the effect of the distance between mean values of foreground and background. Third, we explore the robustness of algorithms by introducing two typical kinds of noises under different intensities and compare the running time of each method. Experimental results show that NVE, WOV, and Xing’s methods are more robust to the distance of mean values of foreground and background. The large foreground variance will cause a larger threshold value. Experiments on cell images show that foreground miss detection becomes serious when the intensities of foreground pixels change drastically. We conclude that almost all algorithms are significantly affected by Salt&Pepper and Gaussian noises. Interestingly, we find that ME increases almost linearly with the intensity of Salt&Pepper noise. In terms of algorithms’ time cost, methods with no preprocessing and postprocessing steps have more advantages. All these findings can serve as a guideline for image thresholding when using Otsu-based thresholding approaches.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
Details

1 Xining Urban Vocational & Technical College, Xining 810012, China
2 Department of Computer Science, North Carolina A&T State University, Greensboro, NC 27411, USA
3 Department of Computer Technology and Application, Qinghai University, Xining 810016, China