SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
VOLUME 2, NO 6, JUNE-2013
2114
www.ijarcet.org
BBO Comparison with other Nature Inspired
Algorithms to Resolve Mixels
Mittu Mittal1
, Gagandeep Kaur2
1
Mtech (CSE) Department of CSE, RIMT Institutions, Mandi Gobindgarh, Punjab, India,
2(
A.P, CSE) Department of CSE, RIMT Institutions, Mandi Gobindgarh, Punjab, India,
ABSTRACT: - Remote sensing is defined as a technique
for acquiring the information about an object without
making physical contact with that image via remote
sensors. But the major problem of remotely sensed images
is mixed pixel which always degrades the image quality.
In this paper we attempted to present an approach for
resolving the mixed pixels by using optimization/
Evolutionary algorithm i.e. Biogeography based
optimization. EA’s are the most well known algorithms
among nature inspired algorithms, which is based on the
biological evolution in nature that is being responsible for
the design of all living beings on earth. A family of
successful EAs comprises genetic algorithm (GA), genetic
programming (GP), Differential Evolution, evolutionary
strategy (ES) , Artificial Bee Colony Algorithm (ABC),
Particle swarm optimization (PSO), Ant Colony
Optimization (ACO). This paper also deals with the
comparison of BBO and others EA’s so that we can proof
BBO as best algorithm for resolving MIXELS problem.
Keywords: ACO, BBO, DE, Migration, Mutation, PSO,
Remote sensing.
1. INTRODUCTION
Optimization is a commonly encountered
mathematical problem in all engineering disciplines.
It literally means finding the best possible/desirable
solution. Optimization problems are wide ranging
and numerous, hence methods for solving these
problems ought to be, an active research topic.
Optimization algorithms can be either deterministic
or stochastic in nature [1] [2]. Former methods to
solve optimization problems require enormous
computational efforts, which tend to fail as the
problem size increases. Meta-heuristics are based on
the iterative improvement of either a population of
solutions or a single solution and mostly employ
randomization and local search to solve a given
optimization problem.
1.1 REMOTE SENSING
Remote sensing can be defined as the collection of
data about an object from a distance. Humans and
many other types of animals accomplish this task
with aid of eyes or by the sense of smell or hearing.
Geographers use the technique of remote sensing to
monitor or measure phenomena found in the
Earth's lithosphere, biosphere, and hydrosphere.
Remote sensing of the environment by geographers is
usually done with the help of mechanical devices
known as remote sensors. These gadgets have a
greatly improved ability to receive and record
information about an object without any physical
contact. Remote sensing imagery has many
applications in mapping land-use and cover,
agriculture, soils mapping, forestry, city planning,
archaeological investigations, military observation,
and geomorphologic surveying, among other uses.
1.2 MIXELS
Mixed pixels, also known as 'MIXELS', occur where
the image pixels are not homogenous, or ‗pure‘[7].
Instead a pixel contains a measure of the energy
reflected or emitted from several different materials
or land surface objects and the sensor records a
composite of these responses (Fig 1).
Figure 1: The mixed pixel problem
In many cases this spectral mixing can make it very
difficult for the image analyst to identify the different
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
VOLUME 2, NO 6, JUNE-2013
2115
www.ijarcet.org
sub-pixel components. Under these circumstances the
analyst may wish to employ a finer resolution data
set, in order that a greater number of ‗pure‘ pixels
may be recorded. Even with very fine resolution,
however, there is still the issue of edge pixels, where
pixels can show the boundaries between different
land surface properties. Mixed pixels can cause great
difficulties in the stages of image analysis and
interpretation. One of the common tasks in this
process is image classification. Classification is
widely used as it allows users to easily discriminate
information from images presented as a series of
categories (classes) rather than raw digital number
(DN) values. Images are classified on the basis of
their spectral properties. Each pixel of remote sensing
image contains the information from multifarious
ground objects due to the difference from the
resolution of remote sensing image, called ―Mixed
pixel”.
To resolve these problems we proposed some
optimization algorithms which are described in below
section and make clear distinction between BBO and
others EA‘s so that BBO can be used as best
algorithm for resolving mixed pixel problems.
2. Biogeography- Based Optimization
Biogeography is the study of distribution of species
in nature over time and space [3] [9] [11] [13]; that is
the immigration and emigration of species between
habitats. Each possible solution is an island and their
features that characterize habitability are called
suitability index variables (SIV). The fitness of each
solution is called its habitat suitability index (HSI)
and depends on many features of the habitat. High-
HSI solutions tend to share their features with low-
HSI solutions by emigrating solution features to other
habitats. Low- HSI solutions accept a lot of new
features from high-HSI solutions by immigration
from other habitats. Immigration and emigration tend
to improve the solutions and thus evolve a solution to
the optimization problem. The value of HSI is
considered as the objective function, and the
algorithm is intended to determine the solutions
which maximize the HSI by immigrating and
emigrating features of the habitats .A habitat H is a
vector of N (SIVs) integers initialized randomly.
Before optimizing, each individual of population is
evaluated and then follows migration and mutation
step to reach global minima. In migration the
information is shared between habitats that depend on
emigration rates μ and immigration rates λ of each
solution. Each solution is modified depending on
probability Pmod that is a user defined parameter.
Each individual has its own λ and μ and are functions
of the number of species K in the habitat .Poor
solutions accept more useful information from good
solution, which improve the exploitation ability of
algorithm. In BBO, the mutation is used to increase
the diversity of the population to get the good
solutions. The species model of a single habitat is
shown below in Fig. 2
Figure: 2 Species model of a single habitat containing
number of species
Fig.2 illustrates a model of species abundance in a
single habitat. The immigration rate λ and the
emigration rate μ are functions of the number of
species in the habitat. In immigration curve,
maximum possible immigration rate I to the habitat
occurs when there are zero species in the habitat. As
the number of species increases fewer species are
able enter to the habitat and the immigration rate
decreases. The largest possible number of species in
habitat Smax is at which point the immigration rate
becomes zero. For emigration curve, if there are no
species in the habitat then the emigration rate must be
zero. As the number of species increases more
species are able to leave the habitat and the
emigration rate increases. The maximum emigration
E rate occurs when the habitat contains the largest
number of species. The equilibrium number of
species is So at which point the immigration and
emigration rates are equal. Each individual has its
own λ and μ and are functions of the number of
species K in the habitat and is expressed by equation
(1) and (2).
λ = I (1-K/n)………………………… (1)
μ=E/n ……………………………… (2)
Where k is the number of species of the k-th
individual;
n is the maximum number of species.
E is Maximum emigration rate and
I is Maximum immigration rate.
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
VOLUME 2, NO 6, JUNE-2013
2116
www.ijarcet.org
λ = the probability that the immigrating individual‘s
solution feature is replaced.
μ = the probability that an emigrating individual‘s
solution feature migrates to the immigrating
individual
2.1 BBO Operators
i) Migration: The BBO migration strategy in which
we divide whether to migrate from one region to
other or not [3] [11]. The migrate rate of each
solution are used to probabilistically share features
between solutions. BBO migration is used to change
existing habitat. Migration in BBO is used to modify
the island. The migration arises when LSI occurs.
When species are less compatible with their habitat
then they migrate.
ii) Mutation: The purpose of mutation is to increase
the habitat among the population [ 2] [13]. In BBO,
the mutation is used to increase the diversity of the
population to get good solution.
3. Genetic Algorithm (GA)
A GA is a stochastic general search method [10]. It
proceeds in an iterative manner by generating new
populations of individuals from the old ones as
shown in Figure 3. Every individual is the encoded
(binary, real, etc.) version of a tentative solution.
Figure 3 shows the selection and recombination
phases of the genetic algorithm. GA is one of the
most popular evolutionary algorithms in which a
population of individuals evolves (moves through the
fitness landscape) according to a set of rules such as
selection, crossover and mutation.
Figure: 3 Selection and recombination phase of the genetic
algorithm
4. Particle Swarm Optimization (PSO)
The PSO algorithm was first introduced by Eberhart
and Kennedy [5] [6]. PSO algorithm is another
example of population based algorithms. PSO is a
stochastic optimization technique which is well
adapted to the optimization of nonlinear functions in
multidimensional space and it has been applied to
several real-world problems Instead of using
evolutionary operators to manipulate the individuals
like in other evolutionary computational algorithms,
each individual in PSO flies in the search space with
a velocity which is dynamically adjusted according to
its own flying experience and its companions‘ flying
experience. Each individual is treated as a volume-
less particle (a point) in the D-dimensional search
space as shown in figure 4.
Figure: 4 Particles movement in PSO
5. Differential Evolution
Another paradigm in EA family is differential
evolution (DE) proposed by Storn and Price in
1995[4] [8] [9]. DE is similar to GAs since
populations of individuals are used to search for an
optimal solution. The main difference between Gas
and DE is that, in GAs, mutation is the result of small
perturbations to the genes of an individual while in
DE mutation is the result of arithmetic combinations
of individuals. At the beginning of the evolution
process, the mutation operator of DE favors
exploration. As evolution progresses, the mutation
operator favors exploitation. Hence, DE
automatically adapts the mutation increments to the
best value based on the stage of the evolutionary
process. Mutation in DE is therefore not based on a
predefined probability density function.
Advantages:
DE is easy to implement, requires little
parameter tuning
Exhibits fast convergence
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
VOLUME 2, NO 6, JUNE-2013
2117
www.ijarcet.org
It is generally considered as a reliable,
accurate, robust and fast optimization
technique.
Limitations:
According to Krink noise may adversely
affect the performance of DE due to its
greedy nature.
Also the user has to find the best values for
the problem-dependent control parameters
used in DE and this is a time consuming
task.
6. COMPARISON ANALYSIS OF BBO WITH
OTHERS
1. PSO represents each solution as a point in a space,
and represents the change over time of each solution
as a velocity vector. PSO do not change its solution
directly.
2. DE changes its solution directly, but change in a
particle DE solution is based on difference between
other DE solutions. DE is not biological motivated.
3. GA and ES reproduce children by crossover,
namely their solution disappear at the end of each
generation, while BBO solution are not discarded
after each generation, but are rather modified by
migration.
4. BBO is differing from Ant colony optimization
because ACO generates a new set of solution with
each iteration. But in BBO, Maintains its set of
solutions from one iteration of the next, relying on
migration to probabilistically adopt those solution.
5. BBO has the most in common with Particle Swarm
Optimization and DE In those approaches, Solutions
are maintain in one iteration to the next, But each
solution is able to learn from its neighbors and adopt
itself as the algorithm progress.
6. BBO has low migration rate as compared to other
techniques. So BBO approach evaluate more accurate
and noise free images with maximum resolution of
mixed pixel
7. BBO is more reliable and fast search algorithm for
mixed pixel resolution and results in better
optimization.
8. BBO based image segments produce different
clusters of different colors at low migration rate with
high computational time.
9. In BBO every pixel of particular land feature
comes under the range of DN values or they are
related on the basis of closeness & similarity between
them.
10. Another distinctive feature is that, for each
generation, BBO uses the fitness of each solution to
determine its immigration and emigration rate.
11. BBO is easier to implement and there are fewer
parameters to adjust.
12. BBO has a more effective memory capability
than PSO & DE.
From the above comparison it is clear that BBO is the
best algorithm because of its unique features for
solving any complex problem as compared to others
EA‘s. So the methodology for solving the mixed
pixel problem using BBO is discussed in below
section.
7. METHODOLOGY & RESULT
Read an image and identify the data set of
pure and mixed pixels.
Initially choose a set of pure pixels and
calculate the best pixel value and evaluate the
fitness function.
Now calculate HSI of each of the Habitat.
Take one class of mixed pixel and transfer each
of corresponding mixed pixel to both the
Habitats to which it belongs i.e. Immigration &
Emigration.
Recalculate the HSI of those two Habitats. If
recalculated HIS (A) <HIS (B) then absorb the
mixed pixel in feature A otherwise in feature
B.
Repeat till all the mixed pixels of class
taken are resolved.
8. CONCLUSION
As Concluded mixed pixel is a big problem in any
remotely sensed imaging or high resolution image.
Thus our method can resolve greater number of
mixed pixels problem in effective way and also
helpful in providing great accuracy in output images.
BBO compare with other optimization techniques is
that BBO solution are changed directly via migration
from other solution. In BBO solutions directly share
their attribute with other solutions. But in other
optimization do not happen like this, So BBO can
better to detect mixels in remote sensing images.
Future work will focus on combining optimization
algorithms with other algorithms like ANN‘s, Fuzzy
algorithms to resolve mixels problem.
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
VOLUME 2, NO 6, JUNE-2013
2118
www.ijarcet.org
ACKNOWLEDGEMENT
This study was supported by the Department of
computer science & Engineering of RIMT Institutes
Near Floating Restaurant, Sirhind Side, Mandi
Gobindgarh-147301, and Punjab, India
REFERENCES
[1].Haiping Ma, Suhong Ni, and Man Sun,"Equilibrium Species
Counts and Migration Model Tradeoffs for Biogeography Based
Optimization‖,joint 48th IEEE conference on decision and control
and 28th Chinese control conference,December 16-18,2009.
[2]. Surbhi Gupta, Krishma Buchar, Parvinder
S.Sandhu,"Implementing Color Image Segmentation Using
Biogeography Based Optimization‖,2011 International Conference
on Software and Computer Applications IPCSIT vol.9(2011).
[3]. Surbhi Gupta, Deepti Bhardwaj,Parvinder S.Sandu,"Color
Quantization in Document Images Using Biogeography Based
Optimization‖,2011 International Conference on Software and
Computer Application IPCSIT vol.9(2011).
[4]. Upeka Premaratne , Jagath Samarabandu, and Tarlochan
Sidhu, ―A New Biologically Inspired Optimization
Algorithm‖ ,Fourth International Conference on Industrial and
Information Systems, ICIIS 2009,28-31 December 2009, Sri
Lanka.
[5]. Bonabeau, E., Dorigo, M. and Theraulaz, G.1999: Swarm
intelligence. Oxford University Press
[6]. Kennedy, J.; Eberhart, R. (1995). "Particle Swarm
Optimization". Proceedings of IEEE International Conference on
Neural Networks. IV. pp. 1942–1948.
[7]. A. L. Choodarathnakara, Dr. T. Ashok Kumar, Dr.
Shivaprakash Koliwad, Dr. C. G. Patil ,‖ Mixed Pixels: A
Challenge in Remote Sensing Data Classification for Improving
Performance‖ , ―International Journal of Advanced Research in
Computer Engineering & Technology (IJARCET) Volume 1, Issue
9, November 2012‖.
[8] Lavika Goel, Daya Gupta, Vinod Panchal ,‖ Extended Species
Abundance Models of Biogeography Based Optimization‖ ,‖ 2012
Fourth International Conference on Computational Intelligence,
Modelling and Simulation. 2166-8531/12 $26.00 © 2012 IEEE
DOI 10.1109/CIMSim.2012.30‖.
[9]. Haiping Ma, Minrui Fei, Zhiguo Ding, Jing Jin,‖
Biogeography-Based Optimization with Ensemble of Migration
Models for Global Numerical Optimization‖ , ―WCCI 2012 IEEE
World Congress on Computational Intelligence June, 10-15, 2012 -
Brisbane, Australia‖.
[10]. Alaa Sheta, Malik S. Braik, Sultan Aljahdali ,‖ Genetic
Algorithms: A Tool for Image Segmentation‖ ,‖ The World
Islamic Science and Education (WISE) University, Amman,
Jordan 978-1-4673-1520-3/12/$31.00 ©2012 IEEE‖.
[11]. Dan Simon, Senior Member, IEEE, Mehmet Ergezer,
Member, IEEE, Dawei Du, and Rick Rarick , ―Markov Models for
Biogeography-Based Optimization‖ ,‖ IEEE TRANSACTIONS
ON SYSTEMS, MAN, AND CYBERNETICS—PART B:
CYBERNETICS, VOL. 41, and NO. 1, FEBRUARY 2011‖.
[12]. D. Simon, ―Biogeography-based optimization,‖ IEEE Trans.
Evol. Comput.,vol. 12, no. 6, pp. 702–713, Dec. 2008.
[13]. Binitha S, S Siva Sathya ,‖ A Survey of Bio inspired
Optimization Algorithms‖,‖ : International Journal of Soft
Computing and Engineering (IJSCE) ISSN: 2231-2307, Volume-2,
Issue-2, May 2012‖.

Weitere ähnliche Inhalte

Was ist angesagt?

Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164
Editor IJARCET
 

Was ist angesagt? (7)

1705.07543
1705.075431705.07543
1705.07543
 
Ct35535539
Ct35535539Ct35535539
Ct35535539
 
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACESSEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164
 
Violent Scenes Detection Using Mid-Level Violence Clustering
Violent Scenes Detection Using Mid-Level Violence ClusteringViolent Scenes Detection Using Mid-Level Violence Clustering
Violent Scenes Detection Using Mid-Level Violence Clustering
 
Be03303560361
Be03303560361Be03303560361
Be03303560361
 
ttA sign language recognition approach for
ttA sign language recognition approach forttA sign language recognition approach for
ttA sign language recognition approach for
 

Andere mochten auch (6)

Ma Dolores Alba Carranza
Ma Dolores Alba CarranzaMa Dolores Alba Carranza
Ma Dolores Alba Carranza
 
TCS Innovation Forum 2012 - Kitenga
TCS Innovation Forum 2012 - KitengaTCS Innovation Forum 2012 - Kitenga
TCS Innovation Forum 2012 - Kitenga
 
Green Hectares Rural Tech Factsheet – Internet Selling
Green Hectares Rural Tech Factsheet – Internet SellingGreen Hectares Rural Tech Factsheet – Internet Selling
Green Hectares Rural Tech Factsheet – Internet Selling
 
Rapid disclosure of_clients_spot_witg_the_help_of_location_based_services
Rapid disclosure of_clients_spot_witg_the_help_of_location_based_servicesRapid disclosure of_clients_spot_witg_the_help_of_location_based_services
Rapid disclosure of_clients_spot_witg_the_help_of_location_based_services
 
Ijarcet vol-2-issue-7-2252-2257
Ijarcet vol-2-issue-7-2252-2257Ijarcet vol-2-issue-7-2252-2257
Ijarcet vol-2-issue-7-2252-2257
 
test29
test29test29
test29
 

Ähnlich wie Volume 2-issue-6-2114-2118

Ähnlich wie Volume 2-issue-6-2114-2118 (20)

A Novel Efficient Medical Image Segmentation Methodology
A Novel Efficient Medical Image Segmentation MethodologyA Novel Efficient Medical Image Segmentation Methodology
A Novel Efficient Medical Image Segmentation Methodology
 
Journal Publication
Journal PublicationJournal Publication
Journal Publication
 
PhD research publications
PhD research publicationsPhD research publications
PhD research publications
 
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
 
soft computing BTU MCA 3rd SEM unit 1 .pptx
soft computing BTU MCA 3rd SEM unit 1 .pptxsoft computing BTU MCA 3rd SEM unit 1 .pptx
soft computing BTU MCA 3rd SEM unit 1 .pptx
 
Two-Stage Eagle Strategy with Differential Evolution
Two-Stage Eagle Strategy with Differential EvolutionTwo-Stage Eagle Strategy with Differential Evolution
Two-Stage Eagle Strategy with Differential Evolution
 
Geoinformatics For Precision Agriculture
Geoinformatics For Precision AgricultureGeoinformatics For Precision Agriculture
Geoinformatics For Precision Agriculture
 
H035450055
H035450055H035450055
H035450055
 
Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...
Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...
Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...
 
Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...
Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...
Feature Extraction of Gesture Recognition Based on Image Analysis for Differe...
 
IMPROVEMENT OF THE FINGERPRINT RECOGNITION PROCESS
IMPROVEMENT OF THE FINGERPRINT RECOGNITION PROCESSIMPROVEMENT OF THE FINGERPRINT RECOGNITION PROCESS
IMPROVEMENT OF THE FINGERPRINT RECOGNITION PROCESS
 
Improvement of the Fingerprint Recognition Process
Improvement of the Fingerprint Recognition ProcessImprovement of the Fingerprint Recognition Process
Improvement of the Fingerprint Recognition Process
 
Paper
PaperPaper
Paper
 
11.bio inspired approach as a problem solving technique
11.bio inspired approach as a problem solving technique11.bio inspired approach as a problem solving technique
11.bio inspired approach as a problem solving technique
 
Feature selection using modified particle swarm optimisation for face recogni...
Feature selection using modified particle swarm optimisation for face recogni...Feature selection using modified particle swarm optimisation for face recogni...
Feature selection using modified particle swarm optimisation for face recogni...
 
Geostor Essay
Geostor EssayGeostor Essay
Geostor Essay
 
50120130405009
5012013040500950120130405009
50120130405009
 
An Improved Differential Evolution Algorithm for Real Parameter Optimization ...
An Improved Differential Evolution Algorithm for Real Parameter Optimization ...An Improved Differential Evolution Algorithm for Real Parameter Optimization ...
An Improved Differential Evolution Algorithm for Real Parameter Optimization ...
 
An Improved Differential Evolution Algorithm for Real Parameter Optimization ...
An Improved Differential Evolution Algorithm for Real Parameter Optimization ...An Improved Differential Evolution Algorithm for Real Parameter Optimization ...
An Improved Differential Evolution Algorithm for Real Parameter Optimization ...
 
L018147377
L018147377L018147377
L018147377
 

Mehr von Editor IJARCET

Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207
Editor IJARCET
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199
Editor IJARCET
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204
Editor IJARCET
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194
Editor IJARCET
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189
Editor IJARCET
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185
Editor IJARCET
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176
Editor IJARCET
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172
Editor IJARCET
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164
Editor IJARCET
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158
Editor IJARCET
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154
Editor IJARCET
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147
Editor IJARCET
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124
Editor IJARCET
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142
Editor IJARCET
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138
Editor IJARCET
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129
Editor IJARCET
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113
Editor IJARCET
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107
Editor IJARCET
 
Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101
Editor IJARCET
 

Mehr von Editor IJARCET (20)

Electrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationElectrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturization
 
Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107
 
Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101Volume 2-issue-6-2098-2101
Volume 2-issue-6-2098-2101
 

Kürzlich hochgeladen

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Kürzlich hochgeladen (20)

[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

Volume 2-issue-6-2114-2118

  • 1. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) VOLUME 2, NO 6, JUNE-2013 2114 www.ijarcet.org BBO Comparison with other Nature Inspired Algorithms to Resolve Mixels Mittu Mittal1 , Gagandeep Kaur2 1 Mtech (CSE) Department of CSE, RIMT Institutions, Mandi Gobindgarh, Punjab, India, 2( A.P, CSE) Department of CSE, RIMT Institutions, Mandi Gobindgarh, Punjab, India, ABSTRACT: - Remote sensing is defined as a technique for acquiring the information about an object without making physical contact with that image via remote sensors. But the major problem of remotely sensed images is mixed pixel which always degrades the image quality. In this paper we attempted to present an approach for resolving the mixed pixels by using optimization/ Evolutionary algorithm i.e. Biogeography based optimization. EA’s are the most well known algorithms among nature inspired algorithms, which is based on the biological evolution in nature that is being responsible for the design of all living beings on earth. A family of successful EAs comprises genetic algorithm (GA), genetic programming (GP), Differential Evolution, evolutionary strategy (ES) , Artificial Bee Colony Algorithm (ABC), Particle swarm optimization (PSO), Ant Colony Optimization (ACO). This paper also deals with the comparison of BBO and others EA’s so that we can proof BBO as best algorithm for resolving MIXELS problem. Keywords: ACO, BBO, DE, Migration, Mutation, PSO, Remote sensing. 1. INTRODUCTION Optimization is a commonly encountered mathematical problem in all engineering disciplines. It literally means finding the best possible/desirable solution. Optimization problems are wide ranging and numerous, hence methods for solving these problems ought to be, an active research topic. Optimization algorithms can be either deterministic or stochastic in nature [1] [2]. Former methods to solve optimization problems require enormous computational efforts, which tend to fail as the problem size increases. Meta-heuristics are based on the iterative improvement of either a population of solutions or a single solution and mostly employ randomization and local search to solve a given optimization problem. 1.1 REMOTE SENSING Remote sensing can be defined as the collection of data about an object from a distance. Humans and many other types of animals accomplish this task with aid of eyes or by the sense of smell or hearing. Geographers use the technique of remote sensing to monitor or measure phenomena found in the Earth's lithosphere, biosphere, and hydrosphere. Remote sensing of the environment by geographers is usually done with the help of mechanical devices known as remote sensors. These gadgets have a greatly improved ability to receive and record information about an object without any physical contact. Remote sensing imagery has many applications in mapping land-use and cover, agriculture, soils mapping, forestry, city planning, archaeological investigations, military observation, and geomorphologic surveying, among other uses. 1.2 MIXELS Mixed pixels, also known as 'MIXELS', occur where the image pixels are not homogenous, or ‗pure‘[7]. Instead a pixel contains a measure of the energy reflected or emitted from several different materials or land surface objects and the sensor records a composite of these responses (Fig 1). Figure 1: The mixed pixel problem In many cases this spectral mixing can make it very difficult for the image analyst to identify the different
  • 2. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) VOLUME 2, NO 6, JUNE-2013 2115 www.ijarcet.org sub-pixel components. Under these circumstances the analyst may wish to employ a finer resolution data set, in order that a greater number of ‗pure‘ pixels may be recorded. Even with very fine resolution, however, there is still the issue of edge pixels, where pixels can show the boundaries between different land surface properties. Mixed pixels can cause great difficulties in the stages of image analysis and interpretation. One of the common tasks in this process is image classification. Classification is widely used as it allows users to easily discriminate information from images presented as a series of categories (classes) rather than raw digital number (DN) values. Images are classified on the basis of their spectral properties. Each pixel of remote sensing image contains the information from multifarious ground objects due to the difference from the resolution of remote sensing image, called ―Mixed pixel”. To resolve these problems we proposed some optimization algorithms which are described in below section and make clear distinction between BBO and others EA‘s so that BBO can be used as best algorithm for resolving mixed pixel problems. 2. Biogeography- Based Optimization Biogeography is the study of distribution of species in nature over time and space [3] [9] [11] [13]; that is the immigration and emigration of species between habitats. Each possible solution is an island and their features that characterize habitability are called suitability index variables (SIV). The fitness of each solution is called its habitat suitability index (HSI) and depends on many features of the habitat. High- HSI solutions tend to share their features with low- HSI solutions by emigrating solution features to other habitats. Low- HSI solutions accept a lot of new features from high-HSI solutions by immigration from other habitats. Immigration and emigration tend to improve the solutions and thus evolve a solution to the optimization problem. The value of HSI is considered as the objective function, and the algorithm is intended to determine the solutions which maximize the HSI by immigrating and emigrating features of the habitats .A habitat H is a vector of N (SIVs) integers initialized randomly. Before optimizing, each individual of population is evaluated and then follows migration and mutation step to reach global minima. In migration the information is shared between habitats that depend on emigration rates μ and immigration rates λ of each solution. Each solution is modified depending on probability Pmod that is a user defined parameter. Each individual has its own λ and μ and are functions of the number of species K in the habitat .Poor solutions accept more useful information from good solution, which improve the exploitation ability of algorithm. In BBO, the mutation is used to increase the diversity of the population to get the good solutions. The species model of a single habitat is shown below in Fig. 2 Figure: 2 Species model of a single habitat containing number of species Fig.2 illustrates a model of species abundance in a single habitat. The immigration rate λ and the emigration rate μ are functions of the number of species in the habitat. In immigration curve, maximum possible immigration rate I to the habitat occurs when there are zero species in the habitat. As the number of species increases fewer species are able enter to the habitat and the immigration rate decreases. The largest possible number of species in habitat Smax is at which point the immigration rate becomes zero. For emigration curve, if there are no species in the habitat then the emigration rate must be zero. As the number of species increases more species are able to leave the habitat and the emigration rate increases. The maximum emigration E rate occurs when the habitat contains the largest number of species. The equilibrium number of species is So at which point the immigration and emigration rates are equal. Each individual has its own λ and μ and are functions of the number of species K in the habitat and is expressed by equation (1) and (2). λ = I (1-K/n)………………………… (1) μ=E/n ……………………………… (2) Where k is the number of species of the k-th individual; n is the maximum number of species. E is Maximum emigration rate and I is Maximum immigration rate.
  • 3. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) VOLUME 2, NO 6, JUNE-2013 2116 www.ijarcet.org λ = the probability that the immigrating individual‘s solution feature is replaced. μ = the probability that an emigrating individual‘s solution feature migrates to the immigrating individual 2.1 BBO Operators i) Migration: The BBO migration strategy in which we divide whether to migrate from one region to other or not [3] [11]. The migrate rate of each solution are used to probabilistically share features between solutions. BBO migration is used to change existing habitat. Migration in BBO is used to modify the island. The migration arises when LSI occurs. When species are less compatible with their habitat then they migrate. ii) Mutation: The purpose of mutation is to increase the habitat among the population [ 2] [13]. In BBO, the mutation is used to increase the diversity of the population to get good solution. 3. Genetic Algorithm (GA) A GA is a stochastic general search method [10]. It proceeds in an iterative manner by generating new populations of individuals from the old ones as shown in Figure 3. Every individual is the encoded (binary, real, etc.) version of a tentative solution. Figure 3 shows the selection and recombination phases of the genetic algorithm. GA is one of the most popular evolutionary algorithms in which a population of individuals evolves (moves through the fitness landscape) according to a set of rules such as selection, crossover and mutation. Figure: 3 Selection and recombination phase of the genetic algorithm 4. Particle Swarm Optimization (PSO) The PSO algorithm was first introduced by Eberhart and Kennedy [5] [6]. PSO algorithm is another example of population based algorithms. PSO is a stochastic optimization technique which is well adapted to the optimization of nonlinear functions in multidimensional space and it has been applied to several real-world problems Instead of using evolutionary operators to manipulate the individuals like in other evolutionary computational algorithms, each individual in PSO flies in the search space with a velocity which is dynamically adjusted according to its own flying experience and its companions‘ flying experience. Each individual is treated as a volume- less particle (a point) in the D-dimensional search space as shown in figure 4. Figure: 4 Particles movement in PSO 5. Differential Evolution Another paradigm in EA family is differential evolution (DE) proposed by Storn and Price in 1995[4] [8] [9]. DE is similar to GAs since populations of individuals are used to search for an optimal solution. The main difference between Gas and DE is that, in GAs, mutation is the result of small perturbations to the genes of an individual while in DE mutation is the result of arithmetic combinations of individuals. At the beginning of the evolution process, the mutation operator of DE favors exploration. As evolution progresses, the mutation operator favors exploitation. Hence, DE automatically adapts the mutation increments to the best value based on the stage of the evolutionary process. Mutation in DE is therefore not based on a predefined probability density function. Advantages: DE is easy to implement, requires little parameter tuning Exhibits fast convergence
  • 4. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) VOLUME 2, NO 6, JUNE-2013 2117 www.ijarcet.org It is generally considered as a reliable, accurate, robust and fast optimization technique. Limitations: According to Krink noise may adversely affect the performance of DE due to its greedy nature. Also the user has to find the best values for the problem-dependent control parameters used in DE and this is a time consuming task. 6. COMPARISON ANALYSIS OF BBO WITH OTHERS 1. PSO represents each solution as a point in a space, and represents the change over time of each solution as a velocity vector. PSO do not change its solution directly. 2. DE changes its solution directly, but change in a particle DE solution is based on difference between other DE solutions. DE is not biological motivated. 3. GA and ES reproduce children by crossover, namely their solution disappear at the end of each generation, while BBO solution are not discarded after each generation, but are rather modified by migration. 4. BBO is differing from Ant colony optimization because ACO generates a new set of solution with each iteration. But in BBO, Maintains its set of solutions from one iteration of the next, relying on migration to probabilistically adopt those solution. 5. BBO has the most in common with Particle Swarm Optimization and DE In those approaches, Solutions are maintain in one iteration to the next, But each solution is able to learn from its neighbors and adopt itself as the algorithm progress. 6. BBO has low migration rate as compared to other techniques. So BBO approach evaluate more accurate and noise free images with maximum resolution of mixed pixel 7. BBO is more reliable and fast search algorithm for mixed pixel resolution and results in better optimization. 8. BBO based image segments produce different clusters of different colors at low migration rate with high computational time. 9. In BBO every pixel of particular land feature comes under the range of DN values or they are related on the basis of closeness & similarity between them. 10. Another distinctive feature is that, for each generation, BBO uses the fitness of each solution to determine its immigration and emigration rate. 11. BBO is easier to implement and there are fewer parameters to adjust. 12. BBO has a more effective memory capability than PSO & DE. From the above comparison it is clear that BBO is the best algorithm because of its unique features for solving any complex problem as compared to others EA‘s. So the methodology for solving the mixed pixel problem using BBO is discussed in below section. 7. METHODOLOGY & RESULT Read an image and identify the data set of pure and mixed pixels. Initially choose a set of pure pixels and calculate the best pixel value and evaluate the fitness function. Now calculate HSI of each of the Habitat. Take one class of mixed pixel and transfer each of corresponding mixed pixel to both the Habitats to which it belongs i.e. Immigration & Emigration. Recalculate the HSI of those two Habitats. If recalculated HIS (A) <HIS (B) then absorb the mixed pixel in feature A otherwise in feature B. Repeat till all the mixed pixels of class taken are resolved. 8. CONCLUSION As Concluded mixed pixel is a big problem in any remotely sensed imaging or high resolution image. Thus our method can resolve greater number of mixed pixels problem in effective way and also helpful in providing great accuracy in output images. BBO compare with other optimization techniques is that BBO solution are changed directly via migration from other solution. In BBO solutions directly share their attribute with other solutions. But in other optimization do not happen like this, So BBO can better to detect mixels in remote sensing images. Future work will focus on combining optimization algorithms with other algorithms like ANN‘s, Fuzzy algorithms to resolve mixels problem.
  • 5. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) VOLUME 2, NO 6, JUNE-2013 2118 www.ijarcet.org ACKNOWLEDGEMENT This study was supported by the Department of computer science & Engineering of RIMT Institutes Near Floating Restaurant, Sirhind Side, Mandi Gobindgarh-147301, and Punjab, India REFERENCES [1].Haiping Ma, Suhong Ni, and Man Sun,"Equilibrium Species Counts and Migration Model Tradeoffs for Biogeography Based Optimization‖,joint 48th IEEE conference on decision and control and 28th Chinese control conference,December 16-18,2009. [2]. Surbhi Gupta, Krishma Buchar, Parvinder S.Sandhu,"Implementing Color Image Segmentation Using Biogeography Based Optimization‖,2011 International Conference on Software and Computer Applications IPCSIT vol.9(2011). [3]. Surbhi Gupta, Deepti Bhardwaj,Parvinder S.Sandu,"Color Quantization in Document Images Using Biogeography Based Optimization‖,2011 International Conference on Software and Computer Application IPCSIT vol.9(2011). [4]. Upeka Premaratne , Jagath Samarabandu, and Tarlochan Sidhu, ―A New Biologically Inspired Optimization Algorithm‖ ,Fourth International Conference on Industrial and Information Systems, ICIIS 2009,28-31 December 2009, Sri Lanka. [5]. Bonabeau, E., Dorigo, M. and Theraulaz, G.1999: Swarm intelligence. Oxford University Press [6]. Kennedy, J.; Eberhart, R. (1995). "Particle Swarm Optimization". Proceedings of IEEE International Conference on Neural Networks. IV. pp. 1942–1948. [7]. A. L. Choodarathnakara, Dr. T. Ashok Kumar, Dr. Shivaprakash Koliwad, Dr. C. G. Patil ,‖ Mixed Pixels: A Challenge in Remote Sensing Data Classification for Improving Performance‖ , ―International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 1, Issue 9, November 2012‖. [8] Lavika Goel, Daya Gupta, Vinod Panchal ,‖ Extended Species Abundance Models of Biogeography Based Optimization‖ ,‖ 2012 Fourth International Conference on Computational Intelligence, Modelling and Simulation. 2166-8531/12 $26.00 © 2012 IEEE DOI 10.1109/CIMSim.2012.30‖. [9]. Haiping Ma, Minrui Fei, Zhiguo Ding, Jing Jin,‖ Biogeography-Based Optimization with Ensemble of Migration Models for Global Numerical Optimization‖ , ―WCCI 2012 IEEE World Congress on Computational Intelligence June, 10-15, 2012 - Brisbane, Australia‖. [10]. Alaa Sheta, Malik S. Braik, Sultan Aljahdali ,‖ Genetic Algorithms: A Tool for Image Segmentation‖ ,‖ The World Islamic Science and Education (WISE) University, Amman, Jordan 978-1-4673-1520-3/12/$31.00 ©2012 IEEE‖. [11]. Dan Simon, Senior Member, IEEE, Mehmet Ergezer, Member, IEEE, Dawei Du, and Rick Rarick , ―Markov Models for Biogeography-Based Optimization‖ ,‖ IEEE TRANSACTIONS ON SYSTEMS, MAN, AND CYBERNETICS—PART B: CYBERNETICS, VOL. 41, and NO. 1, FEBRUARY 2011‖. [12]. D. Simon, ―Biogeography-based optimization,‖ IEEE Trans. Evol. Comput.,vol. 12, no. 6, pp. 702–713, Dec. 2008. [13]. Binitha S, S Siva Sathya ,‖ A Survey of Bio inspired Optimization Algorithms‖,‖ : International Journal of Soft Computing and Engineering (IJSCE) ISSN: 2231-2307, Volume-2, Issue-2, May 2012‖.