Next Article in Journal
A Corrected Adaptive Balancing Approach of Motorized Spindle Considering Air Gap Unbalance
Previous Article in Journal
Optics Based Label-Free Techniques and Applications in Brain Monitoring
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Parallel Compact Differential Evolution for Optimization Applied to Image Segmentation

1
College of Computer Science and Engineering, Shandong University of Science and Technology, No. 579, QianWanGang Road, Qingdao 266590, China
2
College of Science and Engineering, Flinders University, 1284 South Road, Clovelly Park, SA 5042, Australia
3
School of Aeronautics and Astronautics, Yuquan Campus, Zhejiang University, No. 38, ZheDa Road, Hangzhou 310027, China
*
Author to whom correspondence should be addressed.
Appl. Sci. 2020, 10(6), 2195; https://doi.org/10.3390/app10062195
Submission received: 17 February 2020 / Revised: 12 March 2020 / Accepted: 18 March 2020 / Published: 24 March 2020
(This article belongs to the Section Computing and Artificial Intelligence)

Abstract

:
A parallel compact Differential Evolution (pcDE) algorithm is proposed in this paper. The population is separated into multiple groups and the individual is run by using the method of compact Differential Evolution. The communication is implemented after predefined iterations. Two communication strategies are proposed in this paper. The first one is to replace the local optimal solution by global optimal solution in all groups, which is called optimal elite strategy (oe); the second one is to replace the local optimal solution by mean value of the local optimal solution in all groups, which is called mean elite strategy (me). Considering that the pcDE algorithm does not need to store a large number of solutions, the algorithm can adapt to the environment with weak computing power. In order to prove the feasibility of pcDE, several groups of comparative experiments are carried out. Simulation results based on the 25 test functions demonstrate the efficacy of the proposed two communication strategies for the pcDE. Finally, the proposed pcDE is applied to image segmentation and experimental results also demonstrate the superior quality of the pcDE compared with some existing methods.

1. Introduction

Differential Evolution (DE) has prove to be an useful optimization algorithm applied in many areas [1,2,3]. In many practical application scenarios, it may be less likely to use high-performance computing equipment due to various reasons, but it is necessary to solve varieties of optimization problems. The traditional optimization algorithm often needs to store a lot of solutions, and to calculate each solution’s corresponding value. The huge amount of calculation conflicts with the performance of the computing equipment. Whereas, the compact evolutionary algorithm (cEA) which belongs to the estimation of distribution algorithm is proposed to overcome this dilemma. The compact evolutionary algorithm uses only one individual solution with the statistical characteristics of the population to optimize the related problem. Therefore, the method demands less computing power and memory compared with traditional methods.
Several versions of compact evolutionary algorithm have been proposed. The compact genetic algorithm (cGA) [4] is the first compact concept of the genetic algorithm (GA), which only processes one solution, but it gets the similar result when compared with the traditional genetic algorithm. The convergence of compact genetic algorithm is proved in [5] and an extended compact genetic algorithm (ecGA) can be found in [6]. The study of the scalability for extended compact genetic algorithm can be found in [7] and the compact genetic algorithm is also applied to the training of natural network [8].
A compact differential evolution (cDE) algorithm is proposed in [9]. The principle of compact differential evolution algorithm is similar to that of compact genetic algorithm, but there are still two obvious differences. The first is survivor selection scheme. cDE adopts one-to-one generation logic and selects survivors by comparing the fitness of parents and offspring, which is different from the typical selection mechanism of the genetic algorithm. The second difference lies in that the number of DE search operations is limited, which will most likely result in failure when efforts are made to find the highest quality solution (see [10,11,12]). To solve this problem, randomness is added to the search logic of the basic DE algorithm, and cDE introduces certain randomness because it uses the statistical characteristics of the population. This feature not only makes it easier for the algorithm to find better solutions, but also reduces stability.
In this paper, we propose an improved version of cDE, which is called parallel compact differential evolution algorithm (pcDE). In cDE, only one individual is generated in per iteration, so it is easy to cause a large experimental error. The stability of the cDE algorithm is not strong, and the experimental results fluctuate widely. In the pcDE algorithm, multiple groups are parallelized, and the results of different groups are fused through the communication strategies after fixed number of iterations so as to obtain a reliable solution. Hence, the stability and efficiency of the algorithm are enhanced. It is found that the performance of pcDE is better than that of cDE.
Image segmentation is still a hot topic in image processing and computer vision research. The goal of image segmentation is to separate the target from its background, which is the basis of image classification and recognition. Frequently-used image segmentation methods include threshold segmentation, region tracking, and edge detection. The method of threshold segmentation is the most frequently-used image segmentation method. At present, there are many threshold selection methods, like maximum inter-class variance method (Otsu method) [13], best histogram entropy method (KSW entropy method) [14], and minimum error thresholding method [15] etc. Most existing methods use the one-dimensional gray histogram to select segmentation threshold. However, these segmentation methods will cause a lot of errors when the signal-to-noise ratio (SNR) of image decreases. Therefore, the image segmentation method based on a two-dimensional gray histogram appeared. This method is called two-dimensional maximum entropy threshold segmentation [16,17]. It uses gray information and the related information of the neighborhood space, so its effect is significantly improved by comparing with the traditional method. Different algorithms are used to select the segmentation threshold, and the results are analyzed and compared. The analysis of the experimental results shows that the threshold found by the pcDE algorithm is better for image segmentation comparing with some existing methods.

2. Background

For the optimization problem, we employ some kind of optimization algorithm to get the optimal approximate solution, which is usually the minimum value of the objective function f ( X ) , that is, min f ( X ) , where X = ( x 1 , x 2 , x 3 , x D ) is the vector we want to solve in the solution space D ( x i [ x i m i n , x i m a x ]). Optimization algorithms could be applied in a wide range of areas, like wireless sensor networks [18,19,20,21,22,23,24], transportation optimization issues [25], high-dimensional expensive problems [26] etc. The search range of the problem is arranged to be [−1,1]. To obtain the true target solution, we need to perform the following transformations:
x i = ( x i + 1 ) ( x i m a x x i m i n ) / 2 + x i m i n
where x i [ x i m i n , x i m a x ], x i [−1,1].

2.1. DE Algorithm

The original definition of DE can be found in [10,27]. A Gaussian bare-bones differential evolution algorithm can be found in [28]. The steps of DE algorithm include:
  • Initialization: { X i ( 0 ) | x i , j ( 0 ) [ x i , j m i n , x i , j m a x ] , i [ 1 , N p ] N , j [ 1 , D ] N } , where X i ( 0 ) represents the i-th individual of the 0-th generation, and x i , j represents the j-th dimension of the i-th individual. Initialize the population through an uniform distribution method:
    x i , j ( 0 ) = x i , j m i n + r a n d ( 0 , 1 ) ( x i , j m a x x i , j m i n )
    rand () represents a random number.
  • Variation: The DE algorithm implements the mutation of individuals through a difference mechanism. A frequently-used difference mechanism is to randomly select two individuals from the population and add their scaled vector difference to the individual vector to be mutated:
    X o f f ( g t h + 1 ) = X t ( g t h ) + F ( X r ( g t h ) X s ( g t h ) )
    where X t ( g t h ) is the individual to be mutated in the g-th generation, X r ( g t h ) and X s ( g t h ) are two individuals randomly selected from g-th generation. F [0, 2] as a constant, represents the scaling factor. r , s , t [1, Np] and r s t . X o f f ( g t h + 1 ) is a temporary offspring produced by mutation. This difference mechanism is called rand/1/bin. Other difference mechanisms are proposed in [27].
  • Crossover: The binomial crossover mechanism is implemented for each individual of the g-th generation population { x i ( g t h ) } and its temporary offspring { x o f f i ( g t h + 1 ) } to obtain the final offspring. The formula is as follows:
    x o f f i , j ( g t h + 1 ) = x o f f i , j ( g t h + 1 ) , i f r a n d ( 0 , 1 ) C r x i , j ( g t h ) , o t h e r w i s e
    where C r [0, 1] is a predefined constant, which is called the crossover rate.
  • Selection: The DE algorithm employs a greedy algorithm to choose individuals for the next generation:
    x i ( g t h + 1 ) = x o f f i ( g t h + 1 ) , i f f i t ( x o f f i ( g t h + 1 ) ) f i t ( x i ( g t h ) ) x i ( g t h ) , o t h e r w i s e
    f i t ( ) is a fitness function. In the process of evolution, the individual with higher fitness value will be preserved. The pseudocode of the DE algorithm is shown in Algorithm 1.

2.2. Compact Differential Evolution Algorithm

The cDE algorithm inherits the probability vector ( P V ) and elites mechanism from rcGA [9,29]. In cDE, P V is an n 2 matrix and is not a vector [30]:
P V = [ μ , σ ]
where n is the dimension of the problem. μ and σ are n 1 vectors. μ i and σ i respectively represent the mean value and standard deviation of the normal distribution. The normal probability distribution function (PDF) is truncated on the interval [−1,1]. To make the area of the probability distribution function equal to 1, we normalize the height of the probability distribution function.
P D F μ i , σ i ( x ) = e ( x μ i ) 2 2 σ i 2 2 π σ i ( e r f ( μ i + 1 2 σ i ) e r f ( μ i 1 2 σ i ) )
where e r f ( ) is the error function [31]. According to the description in [32], cumulative distribution function (CDF) can be constructed from Chebyshev polynomials. The specific steps of sampling can be expressed as follows:
  • Construct a PDF with P V as a parameter.
  • Construct a cumulative distribution function through Chebyshev polynomials.
  • Generate a random number r over the (0, 1) interval, which is uniformly distributed.
  • Get the corresponding x through inverse cumulative distribution function (ICDF) according to r.
Algorithm 1: DE algorithm pseudocode (rand/1/bin)
Applsci 10 02195 i001
The sketch map of the sampling mechanism is shown in Figure 1.
At the beginning of the cDE algorithm, μ is initialized to 0, σ is initialized to 10. A solution is sampled from the solution space as elite. During each iteration, a new temporary offspring will be generated through the new P V . The temporary offspring will be compared with the elite. The one with higher fitness will be recorded as the winner, while the one with lower fitness as a loser. P V update rules are as follows:
μ i ( g t h + 1 ) = μ i ( g t h ) + ( w i n n e r i l o s e r i ) N p
σ i ( g t h + 1 ) = ( σ i ( g t h ) ) 2 + ( μ i ( g t h ) ) 2 ( μ i ( g t h + 1 ) ) 2 + ( w i n n e r i 2 l o s e r i 2 ) N p
There are two different versions of cDE, which are called persistent elitism compact differential evolution (pe-cDE) and non-persistent elitism compact differential evolution (ne-cDE) (see [9]). For pe-cDE algorithm, the elite is replaced by the temporary offspring when the elite is loser, while for the ne-cDE algorithm, if there is no replacement after the η (a predefined constant representing the threshold) comparison, whatever the state of elite’s fitness is, the elite will be replaced by temporary offspring. The pseudocode of pe-cDE and ne-cDE are shown in Algorithms 2 and 3.
Algorithm 2: pe-cDE algorithm pseudocode (rand/1/bin)
Applsci 10 02195 i002
Algorithm 3: ne-cDE algorithm pseudocode (rand/1/bin)
Applsci 10 02195 i003

3. Parallel Compact Differential Evolution

In this section, we propose a parallel cDE algorithm (pcDE). The purpose of parallel processing is to perform calculations on multiple processors at the same time to produce the same results. Parallelism can improve the speed of search and convergence, and find better solutions faster. In [33], parallel particle swarm optimization (PPSO) and three different communication strategies are simultaneously proposed. A new communication strategy for paralleling gray wolf optimization is proposed in [34]. Parameter adaptive DE(PaDE) is proposed in [35], and parallel heterogeneous meta-heuristic is proposed in [36]. It can be seen that the effect of parallelization is much better than that of non-parallelization.
This paper also proposes two parallel strategies. One is to replace the elites in all groups with the most adaptable elites and replace the corresponding P V value at the same time, called the optimal elite strategy(oe); the other is to average the elites in all groups and replace the P V with the average value of P V in all groups at the same time, called the mean elite strategy(me). The difference mechanism rand/1/bin is adopted in this paper, and two different communication strategies are tested under persistent elitism version. The algorithm flow is as follows:
  • Divide the problem into g independent groups, and initialize the P V in each group, where μ i = 0 , σ i = 1 , i [ 1 , n ] .
  • According to the method proposed in Section 2, each group generates an elite.
  • Each group performs mutation and crossover.
  • According to the persistent elitism version, each group compares the generated offspring with the elite, and obtains a new elite and updates the P V according to the rules mentioned in Section 2.
  • Every time after θ (a predefined constant representing the threshold) iterations, the groups communicate with each other. Taking the optimal elite strategy as an example, it firstly calculates the fitness of the elites in each group and then selects the elite with the highest fitness to replace the other elites. P V will also be replaced with the optimal elite’s P V .
  • Repeat 2–5 until the program ends.
The pseudocode of pcDE (optimal elite strategy) is shown in Algorithm 4, and the pseudocode of pcDE (mean elite strategy) is shown in Algorithm 5, m∈[1, g].
Algorithm 4: pcDE (optimal elite) algorithm pseudocode (rand/1/bin)
Applsci 10 02195 i004
Algorithm 5: pcDE (mean elite) algorithm pseudocode (rand/1/bin)
Applsci 10 02195 i005

4. Numerical Results

Figure 2 shows the test function used in this paper, with f1, f2, f8, f9, f15–f17 coming from [37], f3–f7, f10, f19 from [38], f11–f14, f20 from [39], f18, f21–f25 from [40].
For each test function, we test it with the previously mentioned algorithms. f1–f17 are tested with n = 10 and n = 30 ; f18–f25 are tested in the specified dimensions. Each algorithm runs independently for 10 times. The number of parallel groups is set to 3. Each test is performed in 5000 n iterations. The number of virtual population Np is set as 2 n . The mean of 10 independent experiments is used as the experimental result. Table 1 shows the experimental results of two parallel strategies (persistent elitism version, F = 0.1, C r = 0.1, rand/1/bin). Table 2 shows the experimental results of two parallel strategies (non-persistent elitism version, F = 0.1, C r = 0.1, rand/1/bin). The best results are highlighted in boldface. From Table 1, we can see that in the 17 tests with n = 10, pcDE achieves the best results of 15 tests, while cDE only achieves 2; when n = 30, the result is the same; in the 8 tests with n = various, pcDE achieves the best results of 6 tests, while cDE achieves only 2. From Table 2, we can see that in the 17 tests with n = 10, pcDE achieves the best results of 16 tests, while CDE only achieves 1; when n = 30, pcDE achieves the best results of 14 tests, while cDE achieves only 3; in the 8 tests with n = various, pcDE achieves the best results of all tests. From the above data, we can see that the performance of pcDE is significantly better than that of cDE. Figure 3 shows the performance trends of pcDE and cDE algorithms. We also test the effects of two communication strategies on experimental results under three different schemes. The three schemes are:1.rand/1/bin, 2.best/1/bin, 3.rand-to-best/1/bin. Table 3 shows the test results, where ‘+’ represents that the performance of the algorithm after parallelism is better than the original algorithm, ‘−’ represents the opposite. Figure 4 shows performance trends of pcDE and cDE algorithms under three different strategies.

5. Case of Study: Parallel Compact Differential Evolution for Image Segmentation

In this section, we employ the pcDE algorithm to implement image threshold segmentation. The differences between pcDE and traditional methods are compared. For the image Img(x, y), we suppose that its size is w i d t h h e i g h t and the gray level is L, the neighborhood average gray value g of ( 2 n + 1 ) 2 at the (x, y) point is:
g ( x , y ) = 1 ( 2 n + 1 ) 2 i = n n j = n n I m g ( x + i , y + j )
We use the point gray value and ( 2 n + 1 ) ( 2 n + 1 ) neighborhood average gray value to establish a two-dimensional gray histogram F(x, y), then segment F(x, y) with a two-dimensional threshold (s, t). Let N i , j be the number of pixels whose gray value is i and neighborhood average gray value is j, P i , j be the probability, then
P i , j = N i , j w i d t h h e i g h t
{ P i , j , i , j = 1 , 2 , 3 L } is the two-dimensional gray histogram of the image, which is shown in Figure 5. Figure 5 shows that the peak of the probability of the point-neighbor average gray is mainly distributed near the diagonal of the plane, and the overall appearance is bimodal. It is because the target and background account for the largest proportion of all pixels, and the gray value of the pixels inside the target area and the background area are relatively uniform. The gray values of the points are similar to their neighborhood average gray value, so they are concentrated near the diagonal. The two peaks respectively represent target and background. Away from the diagonal, the height of the peak drops sharply. This part reflects the image noise, edges and other information. A two-dimensional histogram XOY plan view is shown in Figure 6. Region A and B correspond to the target and background, and region C and D to the edges and noise. The optimal threshold is determined by the pcDE algorithm to maximize the amount of information that truly represents the target and background.
Assuming that the target region and the background region have different probability distributions, we normalize each region with the posterior probability of the target and the background region, so that the entropy of each region is additive. We suppose the threshold is (s, t), then the discrete two-dimensional entropy is:
H = i j P i , j l g P i , j
The two-dimensional entropy function of the target and the background is defined as:
ϕ ( s , t ) = H A / P A + l o g 10 [ P A ( 1 P A ) ] + ( H L H A ) / ( 1 P A )
where P A = i = 1 s j = 1 t P i , j , H A = i = 1 s j = 1 t P i , j l g P i , j . H L is the entropy when (s, t) takes the maximum gray value. The calculation method is the same as H A . Using the formula (13) as the evaluation function, the pcDE algorithm is used to calculate the fitness value at different thresholds. Finally we get the optimal threshold. Table 4 shows the final fitness and standard deviation of the Lena images (Figure 7) tested with four algorithms, s and t represent the final two-dimensional segmentation threshold (s,t∈[0,255]). The performance comparison among these four algorithms is shown in Figure 8. In the following section, we segment a medical image of lung and compare the experimental results of Otsu method, minimum error thresholding method, and pcDE. The main steps include:
  • Image preprocessing. Enhance the contrast of the image to achieve better segmentation.
  • Calculate the optimal threshold for image segmentation through different methods to get the binarized image.
  • Use morphological methods to process images to extract targets.
  • Mark target contour.
Figure 9 shows the experimental result, in which (a)–(c) are the images after threshold segmentation, and (d) and (e) are the images after morphological processing, and (g) is the original image, and (h) is the contrast-enhanced image. Figure 10 shows the contour marked image. From the above experimental results, we can see that the image segmented via the pcDE algorithm is much closer to the reality, compared with other algorithms.
On the basis of the above experiments, we add Gaussian noise ( μ = 1.00 × 10 5 , σ = 1.00 × 10 1 ) to the original picture and re-run the experiment. Figure 11 shows the experimental result, in which (a)–(c) are the images after threshold segmentation, and (d) and (e) are the images after morphological processing, and (g) is the original image, and (h) is the noisy image. Figure 12 shows the contour marked image.
Several frequently-used metrics in medical image segmentation are: Dice coefficient (DICE), volumetric overlap error (VOE), relative volume difference (RVD), average symmetric surface distance (ASD), and maximum symmetric surface distance (MSD) (see [41,42]) etc. This paper uses DICE as a metric to evaluate the quality of image segmentation results. DICE is the most frequently-used method. When the segmentation effect is optimal, the value of DICE is 1. The mathematical definition is as follows:
D I C E = 2 | R g t R s e g | | R g t | + | R s e g | , D I C E [ 0 , 1 ]
  • R g t : Represent the result of ground truth segmentation (Figure 13).
  • R s e g : Represent the result of algorithm segmentation.
Table 5 shows the experimental numerical results.
Through analyzing the experimental results, we can see that, in the absence of noise, the minimum error thresholding and pcDE algorithm have a better segmentation effect, with Otsu’s segmentation effect being weak. After that Gaussian noise is added, the pcDE algorithm can still achieve better segmentation effect, while the minimum error thresholding segmentation effect becomes unsatisfactory. Considering the two situations, the pcDE performs better than the other two methods with or without noise, and could be extensive in prospects for application.

6. Conclusions

This paper proposes a parallel compact DE algorithm. The parallel communication strategy achieves faster convergence speed and can find a better solution in a short time. Two different parallel communication strategies are proposed and compared, which are optimal elite strategy and mean elite strategy. In general, the former is better than the later one. Compared with the previous algorithms, the parallel algorithm has obvious advantages in terms of performance and stability. It is applied to image threshold segmentation. Compared with the previous method, we can see that the threshold found by the pcDE algorithm has a better segmentation effect, which has a positive impact on subsequent image processing operations. It can adapt to some weak computing power environment, such as medical equipment, micro robot and so on. In these environments, pcDE algorithm can still maintain good performance and stability, and achieve a balance between accuracy and speed. It has a good application prospect for those optimization problems that need to be solved in the environment with weak computing power.

Author Contributions

Conceptualization, S.-C.C. and J.-S.P.; Formal analysis, X.S.; Methodology, H.L.; Software, X.S.; Supervision, S.-C.C. and J.-S.P.; Writing—original draft, X.S.; Writing—review & editing, J.-S.P. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by National Natural Science Foundation of China (grant number NSF 61872085) and Natural Science Foundation of Fujian Province (grant number 2018J01638).

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Storn, R.; Price, K. Differential evolution—A simple and efficient heuristic for global optimization over continuous spaces. J. Glob. Optim. 1997, 11, 341–359. [Google Scholar] [CrossRef]
  2. Meng, Z.; Pan, J.S. HARD-DE: Hierarchical archive based mutation strategy with depth information of evolution for the enhancement of differential evolution on numerical optimization. IEEE Access 2019, 7, 12832–12854. [Google Scholar] [CrossRef]
  3. Chu, S.C.; Xue, X.; Pan, J.S.; Wu, X. Optimizing Ontology Alignment in Vector Space. J. Internet Technol. 2020, 21, 15–22. [Google Scholar]
  4. Harik, G.R.; Lobo, F.G.; Goldberg, D.E. The compact genetic algorithm. IEEE Trans. Evolut. Comput. 1999, 3, 287–297. [Google Scholar] [CrossRef] [Green Version]
  5. Rastegar, R.; Hariri, A. A step forward in studying the compact genetic algorithm. Evolut. Comput. 2006, 14, 277–289. [Google Scholar] [CrossRef] [Green Version]
  6. Harik, G. Linkage Learning via Probabilistic Modeling in the ECGA; IlliGAL Report 99010; Illinois Genetic Algorithms Laboratory: Urbana, IL, USA, 1999. [Google Scholar]
  7. Sastry, K.; Goldberg, D.E.; Johnson, D. Scalability of a hybrid extended compact genetic algorithm for ground state optimization of clusters. Mater. Manuf. Process. 2007, 22, 570–576. [Google Scholar] [CrossRef]
  8. Gallagher, J.C.; Vigraham, S. A modified compact genetic algorithm for the intrinsic evolution of continuous time recurrent neural networks. In Proceedings of the 4th Annual Conference on Genetic and Evolutionary Computation, New York, NY, USA, 9–13 July 2002; pp. 163–170. [Google Scholar]
  9. Mininno, E.; Neri, F.; Cupertino, F.; Naso, D. Compact differential evolution. IEEE Trans. Evolut. Comput. 2010, 15, 32–54. [Google Scholar] [CrossRef]
  10. Neri, F.; Tirronen, V. Recent advances in differential evolution: A survey and experimental analysis. Artif. Intell. Rev. 2010, 33, 61–106. [Google Scholar] [CrossRef]
  11. Caponio, A.; Kononova, A.V.; Neri, F. Differential evolution with scale factor local search for large scale problems. In Computational Intelligence in Expensive Optimization Problems; Springer: Berlin, Germany, 2010; pp. 297–323. [Google Scholar]
  12. Weber, M.; Neri, F.; Tirronen, V. Distributed differential evolution with explorative–exploitative population families. Genet. Program. Evol. Mach. 2009, 10, 343. [Google Scholar] [CrossRef]
  13. Otsu, N. A threshold selection method from gray-level histograms. IEEE Trans. Syst. Man Cybern. 1979, 9, 62–66. [Google Scholar] [CrossRef] [Green Version]
  14. Kapur, J.N.; Sahoo, P.K.; Wong, A.K. A new method for gray-level picture thresholding using the entropy of the histogram. Comput. Vis. Graph. Image Process. 1985, 29, 273–285. [Google Scholar] [CrossRef]
  15. Kittler, J.; Illingworth, J. Minimum error thresholding. Pattern Recognit. 1986, 19, 41–47. [Google Scholar] [CrossRef]
  16. Hongfu, C.G.Z. 2-D maximum entropy method of image segmentation based on genetic algorithm. J. Comput. Aided Des. Comput. Graph. 2002, 6, 8. [Google Scholar]
  17. Wu, Y.Q.; Pan, Z.; Wu, W.Y. Maximum Entropy Image Thresholding Based on Two-Dimensional Histogram Oblique Segmentation. Pattern Recognit. Aritif. Intell. 2009, 6, 162–168. [Google Scholar]
  18. Pan, J.S.; Kong, L.; Sung, T.W.; Tsai, P.W.; Snášel, V. A clustering scheme for wireless sensor networks based on genetic algorithm and dominating set. J. Internet Technol. 2018, 19, 1111–1118. [Google Scholar]
  19. Nguyen, T.T.; Pan, J.S.; Dao, T.K. An improved flower pollination algorithm for optimizing layouts of nodes in wireless sensor network. IEEE Access 2019, 7, 75985–75998. [Google Scholar] [CrossRef]
  20. Wang, J.; Ju, C.; Gao, Y.; Sangaiah, A.K.; Kim, G.J. A PSO based energy efficient coverage control algorithm for wireless sensor networks. Comput. Mater. Contin. 2018, 56, 433–446. [Google Scholar]
  21. Wang, J.; Gao, Y.; Liu, W.; Sangaiah, A.K.; Kim, H.J. An improved routing schema with special clustering using PSO algorithm for heterogeneous wireless sensor network. Sensors 2019, 19, 671. [Google Scholar] [CrossRef] [Green Version]
  22. Wang, J.; Gao, Y.; Liu, W.; Wu, W.; Lim, S.J. An asynchronous clustering and mobile data gathering schema based on timer mechanism in wireless sensor networks. Comput. Mater. Contin. 2019, 58, 711–725. [Google Scholar] [CrossRef] [Green Version]
  23. Chen, C.M.; Wang, K.H.; Yeh, K.H.; Xiang, B.; Wu, T.Y. Attacks and solutions on a three-party password-based authenticated key exchange protocol for wireless communications. J. Ambient Intell. Humaniz. Comput. 2019, 10, 3133–3142. [Google Scholar] [CrossRef]
  24. Wu, C.I.; Kung, H.Y.; Chen, C.H.; Kuo, L.C. An intelligent slope disaster prediction and monitoring system based on WSN and ANP. Expert Syst. Appl. 2014, 41, 4554–4562. [Google Scholar] [CrossRef]
  25. Chen, C.H.; Lee, C.A.; Lo, C.C. Vehicle localization and velocity estimation based on mobile phone sensing. IEEE Access 2016, 4, 803–817. [Google Scholar] [CrossRef]
  26. Sun, C.; Jin, Y.; Cheng, R.; Ding, J.; Zeng, J. Surrogate-assisted cooperative swarm optimization of high-dimensional expensive problems. IEEE Trans. Evolut. Comput. 2017, 21, 644–660. [Google Scholar] [CrossRef] [Green Version]
  27. Das, S.; Suganthan, P.N. Differential evolution: A survey of the state-of-the-art. IEEE Trans. Evolut. Comput. 2010, 15, 4–31. [Google Scholar] [CrossRef]
  28. Wang, H.; Rahnamayan, S.; Sun, H.; Omran, M.G. Gaussian bare-bones differential evolution. IEEE Trans. Cybern. 2013, 43, 634–647. [Google Scholar] [CrossRef]
  29. Mininno, E.; Cupertino, F.; Naso, D. Real-valued compact genetic algorithms for embedded microcontroller optimization. IEEE Trans. Evolut. Comput. 2008, 12, 203–219. [Google Scholar] [CrossRef]
  30. Pan, J.S.; Lee, C.Y.; Sghaier, A.; Zeghid, M.; Xie, J. Novel systolization of subquadratic space complexity multipliers based on toeplitz matrix–vector product approach. IEEE Trans. Very Large Scale Integr. VLSI Syst. 2019, 27, 1614–1622. [Google Scholar] [CrossRef]
  31. Gautschi, W. Error function and Fresnel integrals. Handb. Math. Funct. 1972, 55, 297–308. [Google Scholar]
  32. Cody, W.J. Rational Chebyshev approximations for the error function. Math. Comput. 1969, 23, 631–637. [Google Scholar] [CrossRef]
  33. Chang, J.F.; Roddick, J.F.; Pan, J.S.; Chu, S. A parallel particle swarm optimization algorithm with communication strategies. Inf. Sci. Eng. 2005, 21, 809–818. [Google Scholar]
  34. Pan, T.S.; Dao, T.K.; Chu, S.C. A Communication Strategy for Paralleling Grey Wolf Optimizer. In International Conference on Genetic and Evolutionary Computing; Springer: Berlin, Germany, 2015; pp. 253–262. [Google Scholar]
  35. Meng, Z.; Pan, J.S.; Tseng, K.K. PaDE: An enhanced Differential Evolution algorithm with novel control parameter adaptation schemes for numerical optimization. Knowl. Based Syst. 2019, 168, 80–99. [Google Scholar] [CrossRef]
  36. Pan, J.S.; Hu, P.; Chu, S.C. Novel Parallel Heterogeneous Meta-Heuristic and Its Communication Strategies for the Prediction of Wind Power. Processes 2019, 7, 845. [Google Scholar] [CrossRef] [Green Version]
  37. Suganthan, P.N.; Hansen, N.; Liang, J.J.; Deb, K.; Chen, Y.P.; Auger, A.; Tiwari, S. Problem Definitions and Evaluation Criteria for the CEC 2005 Special Session on Real-Parameter Optimization; KanGAL Report 2005005; Kanpur Genetic Algorithms Laboratory: Kanpur, India, 2005. [Google Scholar]
  38. Qin, A.K.; Huang, V.L.; Suganthan, P.N. Differential evolution algorithm with strategy adaptation for global numerical optimization. IEEE Trans. Evol. Comput. 2008, 13, 398–417. [Google Scholar] [CrossRef]
  39. Vesterstrom, J.; Thomsen, R. A comparative study of differential evolution, particle swarm optimization, and evolutionary algorithms on numerical benchmark problems. In Proceedings of the 2004 Congress on Evolutionary Computation (IEEE Cat. No. 04TH8753), Portland, OR, USA, 19–23 June 2004; Volume 2, pp. 1980–1987. [Google Scholar]
  40. Yao, X.; Liu, Y.; Lin, G. Evolutionary programming made faster. IEEE Trans. Evolut. Comput. 1999, 3, 82–102. [Google Scholar]
  41. Chang, H.H.; Zhuang, A.H.; Valentino, D.J.; Chu, W.C. Performance measure characterization for evaluating neuroimage segmentation algorithms. Neuroimage 2009, 47, 122–135. [Google Scholar] [CrossRef] [PubMed]
  42. Taha, A.A.; Hanbury, A. Metrics for evaluating 3D medical image segmentation: Analysis, selection, and tool. BMC Med. Imaging 2015, 15, 29. [Google Scholar] [CrossRef] [Green Version]
Figure 1. Sampling mechanism.
Figure 1. Sampling mechanism.
Applsci 10 02195 g001
Figure 2. Test function.
Figure 2. Test function.
Applsci 10 02195 g002
Figure 3. Performance trends pcDE vs. cDE.
Figure 3. Performance trends pcDE vs. cDE.
Applsci 10 02195 g003
Figure 4. Performance trends of pcDE and cDE algorithms under three different strategies.
Figure 4. Performance trends of pcDE and cDE algorithms under three different strategies.
Applsci 10 02195 g004aApplsci 10 02195 g004b
Figure 5. Two-dimensional gray histogram.
Figure 5. Two-dimensional gray histogram.
Applsci 10 02195 g005
Figure 6. Two-dimensional histogram XOY plan view.
Figure 6. Two-dimensional histogram XOY plan view.
Applsci 10 02195 g006
Figure 7. Lena image.
Figure 7. Lena image.
Applsci 10 02195 g007
Figure 8. Performance trends of four algorithms.
Figure 8. Performance trends of four algorithms.
Applsci 10 02195 g008
Figure 9. (ac) image after threshold segmentation, (df) image after morphological processing, (g) original image, (h) contrast-enhanced image.
Figure 9. (ac) image after threshold segmentation, (df) image after morphological processing, (g) original image, (h) contrast-enhanced image.
Applsci 10 02195 g009
Figure 10. Contour marked image.
Figure 10. Contour marked image.
Applsci 10 02195 g010
Figure 11. (ac) image after threshold segmentation, (df) image after morphological processing, (g) original image, (h) noisy image.
Figure 11. (ac) image after threshold segmentation, (df) image after morphological processing, (g) original image, (h) noisy image.
Applsci 10 02195 g011
Figure 12. Contour marked image.
Figure 12. Contour marked image.
Applsci 10 02195 g012
Figure 13. Ground truth segmentation.
Figure 13. Ground truth segmentation.
Applsci 10 02195 g013
Table 1. Final average fitness ± standard deviation(persistent elitism).
Table 1. Final average fitness ± standard deviation(persistent elitism).
FunctioncDEpcDE (Optimal Elite)pcDE (Mean Elite)
n = 10
1 6.652 × 10 2 ± 2.00 × 10 1 2.424 × 10 14 ± 1.18 × 10 14 8.056 × 10 18 ± 5.13 × 10 18
2 1.261 × 10 2 ± 3.24 × 10 2 5.385 × 10 12 ± 6.72 × 10 12 9.841 × 10 0 ± 8.58 × 10 0
3 7.420 × 10 1 ± 1.60 × 10 2 4.144 × 10 1 ± 5.88 × 10 1 2.089 × 10 1 ± 2.72 × 10 1
4 3.998 × 10 0 ± 8.00 × 10 0 4.547 × 10 9 ± 8.49 × 10 9 9.988 × 10 10 ± 5.68 × 10 10
5 1.064 × 10 1 ± 9.29 × 10 2 4.885 × 10 2 ± 3.64 × 10 2 2.491 × 10 1 ± 1.15 × 10 1
6 1.792 × 10 16 ± 7.72 × 10 17 1.411 × 10 16 ± 2.47 × 10 32 1.342 × 10 9 ± 7.02 × 10 10
7 8.881 × 10 1 ± 9.13 × 10 1 8.518 × 10 1 ± 7.60 × 10 1 2.361 × 10 0 ± 1.47 × 10 0
8 8.955 × 10 1 ± 6.96 × 10 1 1.027 × 10 10 ± 1.09 × 10 10 4.601 × 10 0 ± 5.37 × 10 0
9 4.467 × 10 1 ± 1.06 × 10 1 3.831 × 10 1 ± 1.63 × 10 1 1.851 × 10 1 ± 8.15 × 10 0
10 1.700 × 10 0 ± 1.19 × 10 0 2.000 × 10 1 ± 4.00 × 10 1 5.100 × 10 0 ± 1.04 × 10 0
11 0.000 × 10 0 ± 0.00 × 10 0 0.000 × 10 0 ± 0.00 × 10 0 1.448 × 10 11 ± 3.77 × 10 12
12 8.391 × 10 8 ± 2.44 × 10 7 1.293 × 10 13 ± 3.01 × 10 13 7.883 × 10 1 ± 5.60 × 10 1
13 7.280 × 10 21 ± 1.89 × 10 20 4.627 × 10 21 ± 8.78 × 10 21 4.858 × 10 21 ± 4.37 × 10 21
14 8.588 × 10 21 ± 2.54 × 10 20 2.515 × 10 21 ± 7.31 × 10 21 3.552 × 10 21 ± 5.94 × 10 21
15 1.103 × 10 4 ± 2.88 × 10 3 2.553 × 10 3 ± 1.13 × 10 3 1.567 × 10 4 ± 7.88 × 10 2
16 8.291 × 10 0 ± 1.96 × 10 0 8.099 × 10 0 ± 1.61 × 10 0 2.696 × 10 1 ± 2.45 × 10 0
17 2.031 × 10 2 ± 2.53 × 10 2 2.505 × 10 3 ± 3.54 × 10 3 6.684 × 10 2 ± 7.85 × 10 2
n = 30
1 1.825 × 10 2 ± 5.25 × 10 2 2.782 × 10 1 ± 8.33 × 10 1 4.601 × 10 16 ± 2.95 × 10 16
2 8.721 × 10 1 ± 1.87 × 10 2 1.836 × 10 6 ± 5.44 × 10 6 9.082 × 10 2 ± 3.95 × 10 2
3 1.668 × 10 2 ± 1.98 × 10 2 7.906 × 10 1 ± 7.62 × 10 1 4.823 × 10 1 ± 3.67 × 10 1
4 3.047 × 10 9 ± 4.40 × 10 9 7.489 × 10 10 ± 7.01 × 10 10 3.319 × 10 9 ± 8.63 × 10 10
5 8.948 × 10 2 ± 3.63 × 10 2 3.334 × 10 2 ± 2.01 × 10 2 3.300 × 10 1 ± 8.92 × 10 2
6 1.180 × 10 15 ± 2.01 × 10 15 4.232 × 10 16 ± 0.00 × 10 0 2.306 × 10 7 ± 8.90 × 10 8
7 2.171 × 10 2 ± 2.39 × 10 2 1.378 × 10 2 ± 1.20 × 10 2 1.208 × 10 0 ± 9.71 × 10 2
8 9.950 × 10 2 ± 2.98 × 10 1 1.287 × 10 10 ± 6.95 × 10 11 4.804 × 10 1 ± 4.04 × 10 1
9 2.372 × 10 2 ± 8.38 × 10 1 2.086 × 10 2 ± 7.00 × 10 1 1.151 × 10 2 ± 4.77 × 10 1
10 1.210 × 10 1 ± 2.98 × 10 0 4.300 × 10 0 ± 1.35 × 10 0 1.010 × 10 1 ± 1.22 × 10 0
11 0.000 × 10 0 ± 0.00 × 10 0 0.000 × 10 0 ± 0.00 × 10 0 2.985 × 10 10 ± 4.36 × 10 11
12 5.433 × 10 0 ± 1.21 × 10 0 1.046 × 10 2 ± 2.25 × 10 2 3.663 × 10 0 ± 1.59 × 10 0
13 5.513 × 10 22 ± 5.71 × 10 22 1.075 × 10 21 ± 1.70 × 10 21 1.411 × 10 20 ± 5.95 × 10 21
14 1.955 × 10 22 ± 1.39 × 10 22 4.474 × 10 23 ± 2.81 × 10 23 1.656 × 10 20 ± 6.59 × 10 21
15 1.329 × 10 4 ± 2.16 × 10 3 9.367 × 10 3 ± 1.03 × 10 3 1.970 × 10 4 ± 9.12 × 10 2
16 3.031 × 10 1 ± 3.41 × 10 0 2.973 × 10 1 ± 1.99 × 10 0 2.933 × 10 1 ± 2.50 × 10 0
17 4.361 × 10 3 ± 3.78 × 10 3 3.079 × 10 3 ± 2.54 × 10 3 1.642 × 10 4 ± 1.18 × 10 4
n various
18 6.540 × 10 3 ± 5.03 × 10 3 5.065 × 10 3 ± 6.53 × 10 3 5.317 × 10 3 ± 1.50 × 10 3
19 3.333 × 10 2 ± 7.44 × 10 2 7.316 × 10 1 ± 8.81 × 10 1 1.032 × 10 0 ± 8.26 × 10 8
20 1.529 × 10 0 ± 1.44 × 10 0 4.154 × 10 1 ± 4.17 × 10 2 5.507 × 10 1 ± 4.40 × 10 1
21 3.859 × 10 0 ± 8.18 × 10 3 3.785 × 10 0 ± 2.32 × 10 1 3.863 × 10 0 ± 3.97 × 10 16
22 3.274 × 10 0 ± 5.82 × 10 2 3.263 × 10 0 ± 5.94 × 10 2 3.298 × 10 0 ± 4.76 × 10 2
23 6.147 × 10 0 ± 3.39 × 10 0 5.609 × 10 0 ± 2.45 × 10 0 4.419 × 10 0 ± 2.96 × 10 0
24 4.982 × 10 0 ± 2.94 × 10 0 5.581 × 10 0 ± 3.23 × 10 0 6.911 × 10 0 ± 3.55 × 10 0
25 3.424 × 10 0 ± 2.23 × 10 0 7.477 × 10 0 ± 3.76 × 10 0 5.178 × 10 0 ± 3.53 × 10 0
Table 2. Final average fitness ± standard deviation (non-persistent elitism).
Table 2. Final average fitness ± standard deviation (non-persistent elitism).
FunctioncDEpcDE (Optimal Elite)pcDE (Mean Elite)
n = 10
1 4.435 × 10 5 ± 1.33 × 10 4 3.894 × 10 14 ± 1.23 × 10 14 1.573 × 10 17 ± 1.36 × 10 17
2 1.777 × 10 3 ± 1.70 × 10 3 1.235 × 10 9 ± 3.70 × 10 9 6.089 × 10 2 ± 3.80 × 10 2
3 8.042 × 10 7 ± 2.41 × 10 8 1.803 × 10 2 ± 3.85 × 10 2 3.112 × 10 2 ± 4.56 × 10 2
4 7.714 × 10 0 ± 9.46 × 10 0 1.833 × 10 0 ± 5.50 × 10 0 1.450 × 10 9 ± 1.04 × 10 9
5 2.388 × 10 1 ± 1.31 × 10 1 8.729 × 10 2 ± 7.61 × 10 2 4.450 × 10 1 ± 2.23 × 10 1
6 3.797 × 10 14 ± 6.97 × 10 14 1.411 × 10 16 ± 2.47 × 10 32 3.720 × 10 9 ± 1.75 × 10 9
7 1.054 × 10 0 ± 1.06 × 10 0 5.912 × 10 1 ± 2.95 × 10 1 1.906 × 100 ± 1.00 × 10 0
8 6.965 × 10 1 ± 6.37 × 10 1 1.188 × 10 10 ± 1.68 × 10 10 6.666 × 10 0 ± 7.69 × 10 0
9 4.875 × 10 1 ± 1.87 × 10 1 5.104 × 10 1 ± 2.45 × 10 1 4.338 × 10 1 ± 3.47 × 10 1
10 9.385 × 10 2 ± 2.80 × 10 3 4.000 × 10 1 ± 6.63 × 10 1 6.000 × 10 0 ± 1.79 × 10 0
11 1.993 × 10 3 ± 5.98 × 10 3 0.000 × 10 0 ± 0.00 × 10 0 1.483 × 10 11 ± 2.69 × 10 12
12 1.234 × 10 2 ± 5.18 × 10 1 4.489 × 10 1 ± 2.92 × 10 1 1.894 × 10 0 ± 9.73 × 10 1
13 4.789 × 10 5 ± 1.44 × 10 6 7.524 × 10 22 ± 2.23 × 10 21 1.206 × 10 20 ± 2.67 × 10 20
14 3.355 × 10 2 ± 5.22 × 10 2 2.428 × 10 23 ± 3.69 × 10 23 3.350 × 10 21 ± 3.81 × 10 21
15 1.539 × 10 4 ± 1.65 × 10 3 4.718 × 10 3 ± 3.05 × 10 3 1.719 × 10 4 ± 5.84 × 10 2
16 8.104 × 10 0 ± 1.90 × 10 0 8.153 × 10 0 ± 1.46 × 10 0 2.813 × 10 1 ± 3.49 × 10 0
17 1.742 × 10 3 ± 3.12 × 10 3 5.582 × 10 2 ± 1.61 × 10 3 1.469 × 10 3 ± 1.53 × 10 3
n = 30
1 1.484 × 10 11 ± 3.34 × 10 12 8.738 × 10 12 ± 1.36 × 10 12 7.044 × 10 16 ± 2.90 × 10 16
2 2.861 × 10 3 ± 1.55 × 10 3 2.157 × 10 1 ± 3.23 × 10 1 4.242 × 10 3 ± 1.18 × 10 3
3 7.753 × 10 2 ± 1.50 × 10 3 2.342 × 10 1 ± 3.13 × 10 1 3.136 × 10 2 ± 3.96 × 10 2
4 8.781 × 10 10 ± 1.75 × 10 10 1.874 × 10 9 ± 3.21 × 10 9 5.286 × 10 9 ± 8.20 × 10 10
5 3.419 × 10 1 ± 7.07 × 10 2 7.626 × 10 2 ± 4.47 × 10 2 1.337 × 10 0 ± 5.62 × 10 1
6 5.540 × 10 16 ± 2.76 × 10 16 4.232 × 10 16 ± 0.00 × 10 0 4.030 × 10 7 ± 1.01 × 10 7
7 1.881 × 10 2 ± 1.06 × 10 2 1.379 × 10 2 ± 1.25 × 10 2 1.230 × 10 0 ± 9.22 × 10 2
8 7.503 × 10 10 ± 2.30 × 10 10 1.503 × 10 10 ± 1.67 × 10 10 1.010 × 10 0 ± 9.76 × 10 1
9 2.830 × 10 2 ± 8.07 × 10 1 1.797 × 10 2 ± 4.65 × 10 1 9.134 × 10 1 ± 2.68 × 10 1
10 2.138 × 10 3 ± 6.36 × 10 3 4.900 × 10 0 ± 1.92 × 10 0 1.530 × 10 1 ± 2.45 × 10 0
11 0.000 × 10 0 ± 0.00 × 10 0 0.000 × 10 0 ± 0.00 × 10 0 3.821 × 10 10 ± 5.27 × 10 11
12 1.806 × 10 2 ± 5.88 × 10 1 9.494 × 10 1 ± 5.47 × 10 1 5.294 × 10 0 ± 1.32 × 10 0
13 1.037 × 10 2 ± 3.11 × 10 2 3.284 × 10 22 ± 6.52 × 10 22 3.027 × 10 20 ± 8.22 × 10 21
14 1.896 × 10 22 ± 1.46 × 10 22 3.769 × 10 22 ± 9.26 × 10 22 4.130 × 10 20 ± 3.21 × 10 20
15 1.707 × 10 4 ± 1.47 × 10 3 1.005 × 10 4 ± 1.25 × 10 3 2.241 × 10 4 ± 8.27 × 10 2
16 3.033 × 10 1 ± 4.37 × 10 0 2.764 × 10 1 ± 3.90 × 10 0 2.830 × 10 1 ± 3.44 × 10 0
17 8.176 × 10 3 ± 5.21 × 10 3 3.101 × 10 3 ± 1.89 × 10 3 2.839 × 10 4 ± 2.10 × 10 4
n various
18 1.537 × 10 2 ± 1.31 × 10 2 3.471 × 10 3 ± 2.45 × 10 3 5.098 × 10 3 ± 2.78 × 10 3
19 1.256 × 10 2 ± 3.53 × 10 2 5.670 × 10 1 ± 5.79 × 10 1 9.500 × 10 1 ± 2.45 × 10 1
20 5.077 × 10 0 ± 6.41 × 10 0 2.343 × 10 0 ± 5.42 × 10 0 4.655 × 10 1 ± 1.96 × 10 1
21 3.595 × 10 0 ± 3.39 × 10 1 3.863 × 10 0 ± 2.25 × 10 5 3.554 × 10 0 ± 3.79 × 10 1
22 3.113 × 10 0 ± 4.32 × 10 1 3.286 × 10 0 ± 5.45 × 10 2 3.298 × 10 0 ± 4.76 × 10 2
23 3.868 × 10 0 ± 3.44 × 10 0 6.155 × 10 0 ± 3.38 × 10 0 6.402 × 10 0 ± 3.75 × 10 0
24 3.278 × 10 0 ± 2.80 × 10 0 6.291 × 10 0 ± 3.47 × 10 0 5.917 × 10 0 ± 3.70 × 10 0
25 3.284 × 10 0 ± 2.63 × 10 0 5.200 × 10 0 ± 3.61 × 10 0 5.989 × 10 0 ± 3.73 × 10 0
Table 3. Two communication strategies under three different schemes.
Table 3. Two communication strategies under three different schemes.
FunctionScheme 1: Rand/1/BinScheme 2: Best/1/BinScheme 3: Rand-to-Best/1/Bin
pcDE (Optimal Elite)
and pcDE
pcDE (Mean Elite)
and pcDE
pcDE (Optimal Elite)
and pcDE
pcDE (Mean Elite)
and pcDE
pcDE (Optimal Elite)
and pcDE
pcDE (Mean Elite)
and pcDE
n = 30
1+++++
2+++
3++
4+++++
5++++
6++++
7+++
8+++
9+++++
10+++
11+++
12++++++
13+++
14++++
15++
16+++++
17+++
n various
18++++++
19++++++
20++++++
21++++
22+++
23+++
24+++++
25++++++
Table 4. Final fitness and standard deviation of the Lena images tested with four algorithms.
Table 4. Final fitness and standard deviation of the Lena images tested with four algorithms.
AlgorithmMeanStandard Deviationst
cDE(persistent elitism) 1.433 × 10 1 2.972 × 10 2 122118
pcDE(persistent elitism) 1.435 × 10 1 1.947 × 10 3 103105
cDE(non-persistent elitism) 1.423 × 10 1 6.654 × 10 2 115112
pcDE(non-persistent elitism) 1.435 × 10 1 8.321 × 10 3 106107
Table 5. DICE values obtained by different image segmentation methods.
Table 5. DICE values obtained by different image segmentation methods.
Segmentation MethodOriginal ImageNoisy Image
Otsu0.92100.9531
minimum error thresholding0.97320.9093
pcDE0.97380.9684

Share and Cite

MDPI and ACS Style

Sui, X.; Chu, S.-C.; Pan, J.-S.; Luo, H. Parallel Compact Differential Evolution for Optimization Applied to Image Segmentation. Appl. Sci. 2020, 10, 2195. https://doi.org/10.3390/app10062195

AMA Style

Sui X, Chu S-C, Pan J-S, Luo H. Parallel Compact Differential Evolution for Optimization Applied to Image Segmentation. Applied Sciences. 2020; 10(6):2195. https://doi.org/10.3390/app10062195

Chicago/Turabian Style

Sui, Xiao, Shu-Chuan Chu, Jeng-Shyang Pan, and Hao Luo. 2020. "Parallel Compact Differential Evolution for Optimization Applied to Image Segmentation" Applied Sciences 10, no. 6: 2195. https://doi.org/10.3390/app10062195

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop