Next Article in Journal
On String Matching with Mismatches
Next Article in Special Issue
Improving CLOPE’s Profit Value and Stability with an Optimized Agglomerative Approach
Previous Article in Journal
Numerical Solution of Turbulence Problems by Solving Burgers’ Equation
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

An Optimization Clustering Algorithm Based on Texture Feature Fusion for Color Image Segmentation

1
Hubei Collaborative Innovation Centre for High-efficiency Utilization of Solar Energy, Hubei University of Technology, Wuhan 430068, China
2
School of Electrical and Electronic Engineering, Hubei University of Technology, Wuhan 430068, China
3
Faculty of Technology, University of Vaasa, PL 700, 65101 Vaasa, Finland
4
School of Computer Science, Hubei University of Technology, Wuhan 430068, China
*
Author to whom correspondence should be addressed.
Algorithms 2015, 8(2), 234-247; https://doi.org/10.3390/a8020234
Submission received: 4 April 2015 / Revised: 4 May 2015 / Accepted: 19 May 2015 / Published: 22 May 2015
(This article belongs to the Special Issue Clustering Algorithms)

Abstract

:
We introduce a multi-feature optimization clustering algorithm for color image segmentation. The local binary pattern, the mean of the min-max difference, and the color components are combined as feature vectors to describe the magnitude change of grey value and the contrastive information of neighbor pixels. In clustering stage, it gets the initial clustering center and avoids getting into local optimization by adding mutation operator of genetic algorithm to particle swarm optimization. Compared with well-known methods, the proposed method has an overall better segmentation performance and can segment image more accurately by evaluating the ratio of misclassification.

1. Introduction

Image segmentation is a process of dividing an image into different regions such that each item in the same class is as similar as possible whereas items in different classes are as dissimilar as possible. It is a key in image analysis and pattern recognition. However, because of the variety and complexity of images, image segmentation is still a very challenging task.
Fuzzy c-means (FCM) algorithm is one of the most widely used methods for color image segmentation. However, the selection of the initial parameters of standard FCM usually influences the clustering results greatly. Moreover, it does not consider any spatial information in image context, which makes it very sensitive to noise. To minimize the disadvantages of standard FCM, various modified FCM algorithms have been proposed. A comprehensive comparative analysis of kernel-based fuzzy clustering and fuzzy clustering is presented [1,2]. It introduces enhanced FCM clustering algorithms with spatial constraints for noisy color image segmentation. The Rank M-type L (RM-L) and L-estimators are used to obtain the sufficient spatial information of the pixels [3]. A robust modified FCM is presented by introducing a non-local adaptive spatial constraint term into the objective function [4]. An algorithm for fuzzy segmentation of MRI data by using two fuzzifiers used in interval type-2 FCM and a spatial constraint on the membership functions is present [5].
Most of the above methods are dependent on separate features to complete segmentation. If inadequate features are used, even the best classifier could fail to achieve accurate segmentation. So it is important that how to effectively choose image features. Recently, the local binary pattern (LBP) operator has received considerable attention. It has been successfully applied to computer vision tasks, such as texture classification [6], face recognition [7,8,9], object detection [10,11], and fingerprint matching [12]. It is a non-parametric kernel which summarizes the local structure around a pixel and provides a unified description, including statistical and structural characteristics of a texture patch.
Particle swarm optimization (PSO) has been suggested by Kennedy and Eberhart [13]. It is inspired by certain social behavior of bird flocking or fish schooling. When used for solving the optimization problem, PSO makes every particle fly through the solution space with a certain trajectory. Under the guidance of its own or its neighbor’s experience, each particle will gradually fly into the potential area of global optimum [14]. PSO is gaining more and more attention due to its fast convergence rate, simple algorithmic structure and strong global optimization capability. It has been applied to solve varieties of optimization problems successfully [15,16,17].
In this paper, we introduce an improved FCM segmentation algorithm for color images. We choose LBP, the mean of the min-max difference, and color features as a segmental feature vector. It is a more accurate description of multi-feature. In the clustering stage, we use an improved PSO method to optimize the initial clustering centers. PSO is used to ensure that the search converges faster, and we add mutation operator into PSO to make the search jump out of local optima. Subsequently, we use FCM algorithm to complete color image segmentation. The experimental results show that the proposed method has a better segmentation performance.
The rest of the paper is organized as follows. Section 2 introduces LBP operator and analyzes the drawbacks of LBP operator. Section 3 describes the PSO algorithm. Section 4 presents the proposed method. Section 5 compares the proposed algorithm with some existing methods. Section 6 gives concluding remarks.

2. LBP Texture Operators

The LBP operator was first introduced by Ojala et al. [18]. It labels the pixels of an image by considering the difference between the grey values of the pixel x from the grey values of the circularly symmetric neighborhood and considers the results as a binary number. Given a pixel, LBP code can be expressed in the decimal form as equation (1), (2).
L B P P , R = p = 0 p 1 s i g n ( g p g c ) 2 p
s i g n ( x ) = { 1 , x 0 0 , x < 0
Where g c corresponds to the grey value of the center pixel of a local neighborhood and g p to the grey value of N equally spaced neighboring pixels. It produces 2 P   different output values, corresponding to the 2 P different binary patterns. The 2 P different binary patterns codify local primitives including different types of curved edges, spots, flat areas, etc. So each LBP code can be regarded as a micro-texture. The result over the 3 × 3 neighborhood as a binary number is described as follows (Figure 1).
Figure 1. The computational process of local binary pattern (LBP) code
Figure 1. The computational process of local binary pattern (LBP) code
Algorithms 08 00234 g001
We can see that the LBP code is robust against illumination changes and very fast to compute, and does not require many parameters to be set. However, LBP cannot describe the characteristics of textures efficiently and completely. In Figure 2, the first structure of (a) and (b) is possibly a flat area, and the second structure is possibly an edge or a spot. However, the value of LBP is uniform. So LBP ignores the contrastive information while the different contrast is an important feature of texture.
Figure 2. The incorrect instance of LBP texture
Figure 2. The incorrect instance of LBP texture
Algorithms 08 00234 g002aAlgorithms 08 00234 g002b

3. The PSO Algorithm

Particle swarm optimization is an evolutionary optimization technique created by inspiring behaviors such as fish schooling and bird flocking. The system is initialized with a population of random solutions and searches for optima by updating generations.
Suppose that the search space is D-dimensional. At the beginning of the PSO process, the position Z i = { z i 1 , z i 2 , , z i d } and the velocity V i = { v i 1 , v i 2 , , v i d } of each particle are randomly created. Every particle in the swarm is a part of the solution set. y i = { y i 1 , y i 2 , , y i d } is the best position discovered by the ith individual. y ^ = { y ^ 1 , y ^ 2 , , y ^ d } stands for the global best position searched by the whole swarm. In each iteration, Z i and V i are updated using the following equation (3), (4).
v i j ( t + 1 ) = ω * v i j ( t ) + c 1 r 1 ( y i j ( t ) x i j ( t ) ) + c 2 r 2 ( y ^ j ( t ) x i j ( t ) )
z i j ( t + 1 ) = z i j ( t ) + v i j ( t + 1 )
Where c 1 and c 2 are the acceleration coefficients which determine the extent of stochastic weighting for the cognitive and the social components individually. r 1 , r 2 are two random numbers generated by uniform distribution in the range [0,1] separately. The inertia weight ω is employed to control the impact of the previous history of velocities on the current velocity. The linear decreasing method is represented as equation (5).
ω = ω m a x ω m a x ω m i n I t e r m a x × i t e r
I t e r m a x is maximum iteration time.   i t e r is current iteration time.   ω m a x and ω m i n are maximum and minimum inertia weight respectively (it is set for ω m a x = 0.9,   ω m i n = 0.4). The inertia weight is decreased linearly with increasing iterations.
The solution quality is measured by the fitness function. The fitness value of each particle is calculated by the objective function. The values of y i and y ^ are then evaluated and replaced if a better particle best position or a better global best position is obtained. The smaller objective function is, the better fitness value is, given that objective function is expressed as equation (6). The fitness value is represented as equation (7) (to avoid zero in the denominators, σ = 0.001 ).
J = k = 1 C i = 1 N x i z k
f i t n e s s = 1 / ( J + σ )
The personal best position of each particle is defined as equation (8).
y i j ( t + 1 ) = { y i j ( t ) , i f   f i t n e s s ( z i j ( t + 1 ) ) f i t n e s s ( y i j ( t ) ) z i j ( t + 1 ) , i f   f i t n e s s ( z i j ( t + 1 ) ) > f i t n e s s ( y i j ( t ) )
The global best position is defined as equation (9).
y ^ = { y ^ 1 , y ^ 2 , , y ^ d } | f i t n e s s ( y ^ ) = m a x { f i t n e s s ( y 1 ( t ) ) , f i t n e s s ( y 2 ( t ) ) , , f i t n e s s ( y s ( t ) ) }
Then we can use the standard procedure to find the optimum. The searching is a repeated process, and the stop criteria are that the maximum iteration number is reached or the minimum error condition is satisfied.

4. The Proposed Method

4.1. Feature Extraction

Given that a RGB color image is commonly represented as array H × W × l where every pixel f l ( i , j ) is a vector of integer values between the interval of [0, 255] (for color image l = 3). LBP code of f l ( i , j ) is represented as   L B P ( i , j ) . We combine LBP code of color components as equation (10).
L B P ( i , j ) = p = 0 p 1 s i g n ( i = 1 l ( g l p g l c ) ) 2 p
To consider contrastive information, we use the mean of the min-max difference to discriminate the incorrect instance of LBP of Figure 2. S represents the mean of the min-max difference in equation (11). In the flat area, the mean of the min-max difference is nearly 0. For edges or spots, the mean of the min-max difference is larger. Therefore, it can reflect the change of contrastive information. In equation (11), 3 limits the values in the interval of [0, 255].
S = 1 3 p · p = 0 p 1 g l p g l c
g lp g lc represents Euclidean distance.
We use LBP, the mean of the min-max difference, color components as segmental features, and merge above features as feature vector   ( f 1 ( i , j ) , f 2 ( i , j ) , f 3 ( i , j ) , LBP , S ) .

4.2. Improving FCM Algorithm

PSO takes real numbers as particles. It is theoretically simple and can be implemented in a few lines of code. But PSO easily gets stuck in local optima. An effective way to overcome premature convergence of basic PSO is to maintain the population diversity for exploring the new search domain during the evolution process. We propose an improved optimization algorithm by adding mutation operator of genetic algorithm (GA) to PSO. The hybrid algorithm combines the standard velocity and position update rules of PSO with mutation operator from GA and makes the search jump out of local optima.
To improve the FCM algorithm, we utilize the texture information for each pixel to define a spatial constraint term, and then introduce this spatial constraint term into the objective function of FCM. The modified objective function can be expressed as equation (12)
J = α k = 1 K i = 1 H j = 1 W μ k i j m f l ( i , j ) z k l + β k = 1 K i = 1 H j = 1 W μ k i j m L B P z k l + γ k = 1 K i = 1 H j = 1 W μ k i j m S z k l
To add spatial information, we use the above feature vector to complete clustering. μ k i j is a membership matrix where each value represents the membership grade of   f l (i,j) which belongs to the kth class in equation (13).   z x k is the clustering centre.   z l k represents represent the clustering center of the color component which is the color feature. z 4 k represents the clustering centre of LBP code. z 5 k represents the clustering center of the mean of difference in equation (14). LBP code and z 5 k   represent the texture feature of the area. m is a weighting exponent that determines the amount of fuzziness of the resulting classification (in this paper, m = 2).   α ,     β ,     γ are weights that are manually determined in a trial-and-error fashion (in this paper, α = 0.1 ,     β = 0.1 ,     γ = 0.8 ). Through merging feature vector, the distance between pixels is more accurate.
μ k i j = 1 k 1 = 1 C ( α ( L B P ( i , j ) z 4 ( k ) ) + β ( S ( i , j ) z 5 ( k ) ) + γ f l ( i , j ) z l ( k ) α ( L B P ( i , j ) z 4 ( k 1 ) ) + β ( S ( i , j ) z 5 ( k 1 ) ) + γ f l ( i , j ) z l ( k 1 ) ) 2 / ( m 1 )
{ z l k = i = 1 H j = 1 W ( μ k i j ) m ( f l ( i , j ) ) i = 1 H j = 1 W ( μ k i j ) m z l k = i = 1 H j = 1 W ( μ k i j ) m ( L B P ( i , j ) ) i = 1 H j = 1 W ( μ k i j ) m z l k = i = 1 H j = 1 W ( μ k i j ) m ( S ( i , j ) ) i = 1 H j = 1 W ( μ k i j ) m
The proposed algorithm is described as follows.
Step 1: Set the iteration number  iter to zero, I t e r m a x = 5 . An initial swarm of particles is generated in the search space. The population size is set to N (in this paper,   N = 20 ). The position z i j and the velocity v i j of each particle are randomly created. Given ω m a x = 0.9 , ω m i n = 0.4 , mutation probability p m = 0.05 .
Step 2: Computer ω by using equation (5) and evaluate the fitness of each particle by using equation (7).
Step 3: Compare the personal best of each particle to its current fitness and set the personal best of each particle to the better performance.
Step 4: Set the global best to the position of the particle with the best fitness within the swarm.
Step 5: Change the velocity vector for each particle according to equation (3).
Step 6: Move each particle to its new position, according to equation (4).
Step 7: Randomly choose p , when p > p m , the position of each particle will apply mutation operator.
Step 8: Let i t e r = i t e r + 1 . Go to step 2. And repeat until meets the stop criteria i t e r > I t e r m a x .
Step 9: Make the position z i j as initial cluster centers, initializes membership matrix ukij for random value between 0, 1.
Step 10: Use the membership matrix uij calculated in equation (13).
Step 11: According to equation (14), calculate cluster centers. If the relative change between v o l d and v n e w are less than a certain threshold (( v n e w v o l d < ε ) (in this paper,  ε = 10 )), then the algorithm stops. Otherwise, return to Step 10.

5. Experiments

5.1. Multi-Feature Optimization Clustering Segmentation

In the experiments, we test with several 256 × 256 color images which are obtained from WebGIS (for example, Google Map/Earth) to assess the performance of the proposed algorithm with Matlab7.0 running on a desktop PC with 2.0GHz CPU and 1.0G RAM. The results of kernel-based FCM with prototypes in feature space (KFCM_F), FCM with spatial constraints (FCM_S) and the proposed method are compared.
Figure 3 (a) is “map1” original image. In KFCM_F and FCM_S, the initial class is set to 7. Figure 3 (b), (c), (d) shows the results of “map1” image segmentation. KFCM_F and FCM_S only divide the image into 3 classes. They use a separate color feature and cannot segment accurately. The proposed method divides the image into 7 classes. Figure 3 (b1), (b2) are the “road” and “lake” of KFCM_F. Figure 3 (c1), (c2) are the “road” and “lake” of FCM_S. We can see that in KFCM_F and FCM_S the “lake” and “terrain” are considered to be the same and cannot be segmented exactly. Figure 3 (d1), (d2), (d3) are the “road”, “terrain” and “lake” of the proposed method. It can be seen that the proposed method has a better performance to segment accurately the “road”, “terrain” and “lake”.
Figure 4 (a) is “map2” original image. Figure 4 (b1), (b2) are the “road” and “lake” of KFCM_F. Figure 4 (c1), (c2), (c3) are the result of FCM_S. Figure 4 (d1), (d2), (d3) are the “road”, “terrain” and “lake” of the proposed method. Each method divides the image into five classes. Since KFCM_F and FCM_S can easily get into local optimization, we can see that from Figure (b2), the “lake” and “terrain” of KFCM_F are segmented into the same class. The “road” segmented from KFCM_F and FCM_S have less irrelevant information, but other shapes are mixed and cannot be segmented accurately. The proposed method can avoid getting into local optimization to get an overall better segmentation result.
Figure 3. The segmentation result of “map1” image: (a) “map1” original image; (b1) “road” of KFCM_F; (b2) “lake” of KFCM_F; (c1) “road” of FCM_S; (c2) “lake” of FCM_S; (d1) “road” of the proposed method; (d2) “terrain” of the proposed method; (d3) “lake” of the proposed method.
Figure 3. The segmentation result of “map1” image: (a) “map1” original image; (b1) “road” of KFCM_F; (b2) “lake” of KFCM_F; (c1) “road” of FCM_S; (c2) “lake” of FCM_S; (d1) “road” of the proposed method; (d2) “terrain” of the proposed method; (d3) “lake” of the proposed method.
Algorithms 08 00234 g003
Figure 4. The segmentation result of “map2” image: (a) “map2” original image; (b1) “road” of KFCM_F; (b2) “lake” of KFCM_F; (c1) “road” of FCM_S; (c2) “terrain” of FCM_S; (c3) “lake” of FCM_S; (d1) “road” of the proposed method; (d2) “terrain” of the proposed method; (d3) “lake” of the proposed method.
Figure 4. The segmentation result of “map2” image: (a) “map2” original image; (b1) “road” of KFCM_F; (b2) “lake” of KFCM_F; (c1) “road” of FCM_S; (c2) “terrain” of FCM_S; (c3) “lake” of FCM_S; (d1) “road” of the proposed method; (d2) “terrain” of the proposed method; (d3) “lake” of the proposed method.
Algorithms 08 00234 g004aAlgorithms 08 00234 g004b

5.2. Post-Processing

To get more accurate results, we can implement post-processing by using the morphological method. Given f ( i , j ) is the segmental result of the proposed method. We use two times fusion operator, then two times dilation operator. E represents fusion operator. D represents dilation operator.
F ( i , j ) = E 2 ( f ) D 2 ( f )
Figure 5. The post-processing result of Figure 3(d) and Figure 4(d): (a1) the “road” of Figure 3(d1); (a2) the “lake” of Figure 3(d3); (a3) the “terrain” of Figure 3(d2); (b1) the “road” of Figure 4(d1); (b2) the “lake” of Figure 4(d3); (b3) the “terrain” of Figure 4(d2).
Figure 5. The post-processing result of Figure 3(d) and Figure 4(d): (a1) the “road” of Figure 3(d1); (a2) the “lake” of Figure 3(d3); (a3) the “terrain” of Figure 3(d2); (b1) the “road” of Figure 4(d1); (b2) the “lake” of Figure 4(d3); (b3) the “terrain” of Figure 4(d2).
Algorithms 08 00234 g005aAlgorithms 08 00234 g005b
Figure 5 shows the post-processing results of Figure 3 (d) and Figure 4 (d). Figure 5 (a1) is the post-processing “road” of Figure 3 (d1). Figure 5 (a2) is the post-processing “lake” of Figure 3 (d3). Figure 5 (a3) is the post-processing “terrain” of Figure 3 (d2). Figure (b1) is the post-processing “road” of Figure 4 (d1). Figure 5 (b2) is the post-processing “lake” of Figure 4 (d3). Figure 5 (b3) is the post-processing “terrain” of Figure 4 (d2).

5.3. Ratio of Misclassification

To compare the proposed method with existing methods, we use the ratio of misclassification to evaluate the different algorithms. We define the ratio of misclassification as equation (16).
E r r o r = | s v | s × 100 %
s is the binary image of manual segmentation. v is the binary image of actual segmentation by algorithms. The absolute difference between the binary images s and v is the number of misclassification. s is the total number of pixels for the manual segmental image. Figure 6 is the manual segmentation result.
Figure 6. The manual segmentation result of Figure 3(a): (a1) the “road” of manual segmentation (a2) the “lake” of manual segmentation (a3) the “terrain” of manual segmentation.
Figure 6. The manual segmentation result of Figure 3(a): (a1) the “road” of manual segmentation (a2) the “lake” of manual segmentation (a3) the “terrain” of manual segmentation.
Algorithms 08 00234 g006
According to equation (16), the ratios of misclassification are shown in Table 1. The ratio of misclassification of “road” is lowest in KFCM_F and FCM_S, however, still higher than the proposed method which is 10.24% and can basically segment “road” accurately. For “terrain” segmentation, the result of KFCM_F is the worst, and the ratio of misclassification is 30.05%. The result of FCM_S is better with adding spatial information. The proposed method is the best in “terrain” segmentation, and the accuracy has achieved 95%. For “lake” segmentation, FCM_S and KFCM_F have much more errors. The proposed method can segment “lake” very accurately.
Table 1. The ratio of misclassification of difference methods.
Table 1. The ratio of misclassification of difference methods.
AlgorithmKFCM_FFCM_SThe proposed
“map1” imageThe ratios of misclassification of “lake”35.70%31.00%1.1%
The ratios of misclassification of “terrain”32.05%19.56%5.05%
The ratios of misclassification of “road”20.33%15.81%10.24%

5.4 Extended Experiments for Target Extraction

In addition, we test target extraction with real images in database [19] to assess the performance of the proposed algorithm by Matlab7.0. Figure 7(a) is the original “horse” image. Figure 7(b) is its segmentation result of KFCM_F. Figure 7(c) is its segmentation result of FCM_S. Figure 7(d) is its segmentation result of the proposed method. Figure 8(a) is the original “plane” image. Figure 8(b) is its segmentation result of KFCM_F. Figure 8(c) is its segmentation result of FCM_S. Figure 8(d) is its segmentation result of the proposed method. Comparing the proposed segmentation results with the existing methods, it can be seen that KFCM_F cannot segment the objects accurately as a lot of unrelated pixels are segmented into the object areas, while FCM_S has a certain randomness. The segmentation results of the proposed method are most accurate compared to KFCM_F and FCM_S.
Figure 7. The segmentation result of “horse” image: (a) “horse” original image; (b) the result of KFCM_F; (c) the result of FCM_S; (d) the result of the proposed method.
Figure 7. The segmentation result of “horse” image: (a) “horse” original image; (b) the result of KFCM_F; (c) the result of FCM_S; (d) the result of the proposed method.
Algorithms 08 00234 g007aAlgorithms 08 00234 g007b
Figure 8. The segmentation result of “plane” image: (a) “plane” original image; (b) the result of KFCM_F; (c) the result of FCM_S; (d) the result of the proposed method.
Figure 8. The segmentation result of “plane” image: (a) “plane” original image; (b) the result of KFCM_F; (c) the result of FCM_S; (d) the result of the proposed method.
Algorithms 08 00234 g008

6. Conclusions

In this paper, we propose a multi-feature optimization clustering algorithm for color image segmentation. We combine pixel and texture features as a feature vector to effectively improve segmentation performance. It utilizes PSO with mutation operator of GA to evaluate the initial clustering center, and ensures that the search converges faster and makes the search jump out of local optima. Experimental results show that the proposed algorithm can achieve better performance than other classic clustering algorithms in terms of segmentation accuracy.

Acknowledgments

This work is supported by the Science Foundation of Hubei Collaborative Innovation Centre for High-efficiency Utilization of Solar Energy under Grant No. HBSKFMS2014018, and the Science Foundation of Hubei University of Technology in China under Grant No. BSQD13028 and BSQD12118.

Author Contributions

Gaihua Wang proposed the algorithm and prepared the manuscript. Yang Liu was in charge of the overall research and critical revision of the paper. Caiquan Xiong assisted in the work.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Graves, D.; Pedrycz, W. Kernel-based fuzzy clustering and fuzzy clustering: A comparative experimental study. Fuzzy Sets Syst. 2010, 161, 522–543. [Google Scholar] [CrossRef]
  2. Kannan, S.R.; Ramathilagam, S.; Devi, R.; Sathy, A. Robust kernel FCM in segmentation of breast medical images. Expert Syst. Appl. 2011, 38, 4382–4389. [Google Scholar] [CrossRef]
  3. Mújica-Vargas, D.; Gallegos-Funes, F.J.; Rosales-Silva, A.J. A fuzzy clustering algorithm with spatial robust estimation constraint for noisy color image segmentation. Pattern Recognit. Lett. 2013, 34, 400–413. [Google Scholar] [CrossRef]
  4. Zhao, F.; Jiao, L.C.; Liu, H.Q.; Gao, X.B. A novel fuzzy clustering algorithm with non-local adaptive spatial constraint for image segmentation. Signal Process. 2011, 91, 988–999. [Google Scholar] [CrossRef]
  5. Qiu, C.; Xiao, J.; Yu, L.; Han, L.; Iqbal, M.N. A modified interval type-2 fuzzy C-means algorithm with application in MR image segmentation. Pattern Recognit. Lett. 2013, 34, 1329–1338. [Google Scholar] [CrossRef]
  6. Costa, Y.M.G.; Oliveira, L.S.; Koerich, A.L.; Gouyon, F.; Martins, J.G. Music genre classification using LBP textural features. Signal Process. 2012, 92, 2723–2737. [Google Scholar] [CrossRef]
  7. Shan, C.; Gong, S.; McOwan, P.W. Facial expression recognition based on Local Binary Patterns:A comprehensive study. Image Vis. Comput. 2009, 27, 803–816. [Google Scholar] [CrossRef]
  8. Moore, S.; Bowden, R. Local binary patterns for multi-view facial expression recognition. Comput. Vis. Image Underst. 2011, 115, 541–558. [Google Scholar] [CrossRef]
  9. Luo, Y.; Wu, C.; Zhang, Y. Facial expression recognition based on fusion feature of PCA and LBP with SVM. Int. J. Light Electron Optics. 2013, 124, 2767–2770. [Google Scholar] [CrossRef]
  10. Liu, Y.; Chen, M.; Ishikawa, H.; Wollstein, G.; Schuman, J.S. Automated macular pathology diagnosis in retinal OCT images using multi-scale spatial pyramid and local binary patterns in texture and shape encoding. Med. Image Anal. 2011, 15, 748–759. [Google Scholar] [CrossRef] [PubMed]
  11. Heikkila, M.; Ainen, M.; Schmid, C. Description of interest regions with local binary patterns. Pattern Recognit. 2009, 42, 425–436. [Google Scholar] [CrossRef]
  12. Nanni, L.; Lumini, A. Local binary patterns for a hybrid fingerprint matcher. Pattern Recognit. 2008, 41, 3461–3466. [Google Scholar] [CrossRef]
  13. Kennedy, J.; Eberhart, R. Particle swarm optimization. In Proceedings of the 1995 IEEE International Conference on Neural Networks, Perth, WA, USA, 1995; pp. 1942–1948.
  14. Jie, J.; Zeng, J.; Han, C.; Wang, Q. Knowledge-based cooperative particle swarm optimization. Appl. Math. Comput. 2008, 205, 861–873. [Google Scholar] [CrossRef]
  15. Tsai, C.; Kao, I. Particle swarm optimization with selective particle regeneration for data clustering. Expert Syst. Appl. 2011, 38, 6565–6576. [Google Scholar] [CrossRef]
  16. Bedi, P.; Bansal, R.; Sehgal, P. Using PSO in a spatial domain based image hiding scheme with distortion tolerance. Comput. Elect. Engin. 2013, 39, 640–654. [Google Scholar] [CrossRef]
  17. Vellasques, E.; Sabourin, R.; Granger, E. Fast intelligent watermarking of heterogeneous image streams through mixture modeling of PSO populations. Appl. Soft Comput. 2013, 13, 3130–3148. [Google Scholar] [CrossRef]
  18. Ojala, T.; Pietikainen, M.; Harwood, D. A comparative study of texture measure with classification based on feature distribution. Pattern Recognit. 1996, 29, 51–59. [Google Scholar] [CrossRef]
  19. The Berkeley Segmentation Dataset and Benchmark. Available online: http://www.eecs.berkeley.edu/Research/Projects/CS/vision/bsds/ (accessed on 4 May 2015).

Share and Cite

MDPI and ACS Style

Wang, G.; Liu, Y.; Xiong, C. An Optimization Clustering Algorithm Based on Texture Feature Fusion for Color Image Segmentation. Algorithms 2015, 8, 234-247. https://doi.org/10.3390/a8020234

AMA Style

Wang G, Liu Y, Xiong C. An Optimization Clustering Algorithm Based on Texture Feature Fusion for Color Image Segmentation. Algorithms. 2015; 8(2):234-247. https://doi.org/10.3390/a8020234

Chicago/Turabian Style

Wang, Gaihua, Yang Liu, and Caiquan Xiong. 2015. "An Optimization Clustering Algorithm Based on Texture Feature Fusion for Color Image Segmentation" Algorithms 8, no. 2: 234-247. https://doi.org/10.3390/a8020234

Article Metrics

Back to TopTop