SlideShare a Scribd company logo
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 24
SEGMENTATION OF UNHEALTHY REGION OF PLANT LEAF USING
IMAGE PROCESSING TECHNIQUES: A SURVEY
P.Kavitha1
, B.Ananthi2
1
Assistant Professor, Department Of Computer Applications, Erode Arts and Science College, Erode, Tamilnadu,
India
2
Assistant Professor, Department Of Computer Science (Ug & Pg), Vellalar College for Women, Erode, Tamilnadu,
India
Abstract
A segmentation technique is used to segment the diseased portion of a leaf. Based on the segmented area texture and color
feature, disease can be identified by classification technique. There are many segmentation techniques such as Edge detection,
Thresholding, K-Means clustering, Fuzzy C-Means clustering, Penalized Fuzzy C-Means, Unsupervised segmentation.
Segmentation of diseased area of a plant leaf is the first step in disease detection and identification which plays crucial role in
agriculture research. This paper provides different segmentation techniques that are used to segment diseased leaf of a plant.
Keywords: Fuzzy C-Means, K-Means, Penalized FCM, Unsupervised Fuzzy Clustering
--------------------------------------------------------------------***------------------------------------------------------------------
1. INTRODUCTION
Plant exists everywhere we live. India is an agriculture
country where 70% (Pramod S.Landge et al) of population
depends on agriculture. The cultivation of land requires
close and continuous monitoring for the management of
plant leaf disease that can affect production significantly. In
practice disease of an plant leaf is identified by naked eye
observation of an expert ,which is too expensive and time
consuming to make experts arrive to field. Instead ,in
automatic detection and identification of plant leaf disease
image of a leaf is captured and then segmented using
segmentation techniques to extract infected area. In
literature survey it presents some of those existing system.
2. LITERATURE SURVEY
Dheeb Al Bashidh & et al [1] in the paper titled “Detection
and Classification Of leaf Disease Using K-Means based
Segmentation and Neural networks based classification”
proposed an approach which consists of four main phases
for five types of leaf disease. First color transformation
structure for the RGB leaf image and then device
independent color space transformation is applied, Next in
second phase image is segmented using K-Means clustering
technique, Thirdly calculate the texture feature of segmented
area of leaf. Finally classification is done through pretrained
neural network. K-Means clustering technique provides
efficient results in Segmentation of RGB image. By K-
Means segmentation multiple values of cluster have been
tested. Best result were observed when the number of
clusters is four.
Mohammed El-Hellyt & et al [2] describe about Fuzzy C-
Mean FCM clustering algorithm in the paper titled
“Integrating Diagnostic expert system with Image
Processing” to segment infected part of a leaf after image
enhancement. From the segmented area features are
extracted and classification is done using Artificial Neural
Network. In this system they tested for 3 cucumber
disorder.The result of this indicate that this system could
identify disorder with high level of accuracy.
“Image segmentation by Fuzzy C-Means clustering
algorithm with a Novel Penalty term “ by Yony Yang [3]
describe Fuzzy C-Means(FCM) which takes into account the
influence of neighborhood pixels on the central axis .So the
Penalized FCM algorithm includes the spatial information
which is less sensitive to noise than FCM.
Jaingsheng Guis and et al [4] developed “ Unsupervised
segmentation method for disease of soyabean color image
based Fuzzy clustering “which gradually increase the
number of cluster in FCM ,iteratively ,in the process of each
iteration apply validation criteria to evaluate the
effectiveness of clustering. By this method optimal number
of clusters and centers are obtained.
In the paper titled “Detection of unhealthy region of plant
leaves and classification of plant leaf disease using texture
features” by S.Arivazhagan and et al [5] segmented diseased
portion of a leaf after masking green pixels and removing
green portion of a leaf.The infected region is then
segmented by applying specific threshold. Classification is
done by Minimum distance classifier and support vector
machine
This algorithm was testd on ten species of plants.
“An Empirical Investigation of olive Leave Spot Disease
Using Auto-Cropping Segmentation and Fuzzy C-Means
Classification” by Mokheld Al-Tarawneh [6] describe
describe that FCM with polygon auto-cropping
segmentation provides accuracy than K-Means
segmentation.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 25
Hrushikesh Dattatray Marathe et al [7] presented a paper
titled “Leaf Disease Detection Using Image Processing
Techniques” describe detection of diseased portion of a leaf
by subtracting total green area from total leaf area. This
system implemented in MATLAB which makes calculation
easy to extract the infected area.
3. SEGMENTATION TECHNIQUES
Segmentation is the process of partitioning a digital image
into multiple regions or objects and extracting meaningful
region known as the region of interest(ROI). The level to
which subdivision is carried depends on the problem being
solved. Segmentation can be stopped when the region of
interest in an application have been isolated. Segmentation
accuracy determines the eventual success or failure of
computerized analysis procedures. So care should be taken
to pick an algorithm that performs the best for the given
requirement.
Image segmentation algorithms generally based on two
basic principles: discontinuity and similarity .The
discontinuity principle is to extract regions that differ in
properties such as intensity , color , texture or any other
image statistics. .In similarity principle an image pixels are
grouped into regions that are similar according to a set of
predefined criteria. Thresholding , region growing and
region splitting and merging are example of similarity
principle.
The segmentation algorithms can be classified on the basis
of the pixel similarity relationship with neighbouring pixel
as (i) Contextual (region-based or global) algorithms
(ii)Non-contextual(pixel-based or local)algorithms.
In region-based algorithms, the pixels are grouped based on
some sort of similarity that exists between them. In pixel-
based the idea is to identify the discontinuities that are
present in the image such as isolated lines and edges.
In plant leaf disease identification the following steps are
followed.
1. Image is converted from RGB to HSI or gray scale image.
2. The infected areas of leaf are extracted by segmentation
technique.
3. From extracted part, texture features of a region are
calculated and disease is identified by using classification
technique.
4. CLUSTERING
Clustering is a technique for partitioning a group of images
into disjoint subgroups. Images that are similar to each other
group themselves into a single cluster. All the images in
subgroup are similar to each other. At the same time , the
images across the cluster are different, In image
segmentation ,clustering is used to provide the updated
centriod value based on the distance between the objects.
This section will describe some of the clustering techniques
that are used to segment the infected area. The clustering
techniques considered are K-Means, FCM, Penalized FCM
and Unsupervised fuzzy clustering.
4.1 K-Means Clustering
K-Means is an hard clustering algorithm approach where the
physical boundaries of cluster are well defined. In K-Means
clustering algorithm the n objects or instances
is classified into K clusters with initial
centroids.
The K-Means objective function is
J= i-Cj||
K is the number of clusters.
C is the cluster centriod and x is the object.
Procedure for K-Means technique is
1. Intialize the centriod.
2. Find the distance between object and centeroid
3. Assign the object to the cluster with which distance is
minimum
4. Recalculate the new mean of the cluster.
5. Repeat the step till a predefined threshold is met.
Advantage:
Segmentation of an image is fast for image where the
boundaries are well defined.
Disadvantage:
The performance of the K-means algorithm depends on the
initial positions of the cluster centers. This is an inherently
iterative algorithm. And also there is no guarantee about the
convergence towards an optimum solution. The convergence
centroids vary with different initial points.
4.2 Fuzzy C-Means Clustering
Fuzzy logic deals with the vagueness and imprecision
present in the problem. The image in grey color has an
ambiguity in brightness and darkness of a pixel. In
segmentation problem, the image is first converted from
RGB to HIS which has confusion in determining whether
pixel is normal or infected.This kind of vagueness is known
as spatial ambiguity.
To solve this, image is considered as a fuzzy set. Fuzzy
clustering obtain more reasonable results for vague cluster
boundaries. In a fuzzy set there is a degree of membership
for every member .Value of membership lies between 0 and
1 and the sum of membership of each object is 1.Larger the
membership values indicates higher confidence to cluster.
Fuzzy C- Means objective function is
ij
m
i-Cj| 1≤m≤α
Where m is any real number greater than 1,
c is number of clusters,
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 26
ijU is the degree of membership of xi in the cluster j,
ijU is the degree of membership of xi in the cluster j,
Xi-Cj is euclidean distance between any data object and the
centroid of jth
cluster
Fuzzy C- means clustering algorithm is
1. Choose a number of clusters.
2. Assign randomly to each point in the coefficients for
being in the clusters.
3. Repeat until the algorithm has convergence.
4. Compute the centriod for each cluster.
5. For each point compute its co-efficient in the cluster.
Advantage
1. In Fuzzy C-Means clustering each element is assigned to
multiple cluster with certain degree of membership in the
dataset. So it minimize intra-cluster variance.
2. FCM obtain more reasonable results where the boundaries
are vague.
Disadvantage
1. Dependency on initial centriod.
2. Sensitivity to noise and outliners.
3. Results depend on initial centriod.
4.3 Penalized Fuzzy C-Means
The FCM clustering technique does not include any spatial
information into the objects. By minimizing the objective
function of neighborhood EM algorithm, Penalized FCM
include space information and spatial information during
segmentation which forms the new objective function.
The objective function of PFCM is
PFCM=FCM+NEM
(i.e)JPFCM= ik)q
d2
(xk,vi)+
ɤ ik)q
(1-uij)q
wkj
Where
wkj =
4.4 Image Processing Method
In this method total leaf area is calculated through pixel
number statistics. Next the green area of leaf is calculated
.By subtracting green leaf area from total leaf area gives the
infected area of the leaf. Its easy to calculate the leaf area by
counting total pixel in a leaf area region.
4.5 Unsupervised Fuzzy Clustering Algorithm
Unsupervised Fuzzy clustering is a clustering based on FCM
algorithm. Without knowing the number of clusters, by
using fuzzy super volume and separation density function
the effectiveness of clustering can be assessed effectively
and can automatically obtain optimize number of clusters c
and cluster centers. Here gradually increase the number of
clustering ,iteratively ,in the process of each iteration
validation criteria is applied to evaluate the effectiveness of
clustering.
Algorithm:
1. Select initial clusters, then set contrast coefficient m,
maximum allowable error e and maximum number of
cluster c.
2. For the cluster selected above FCM is applied to find
initial cluster and Euclidean distance is used as a distance
measure.
3. The distance measure is changed into exponential
distance function using FCM clustering algorithm.
4. The effectiveness of clustering is calculated based on
some parameters like hypervolume standard,classification
density and average density of separation.
5. If this cluster is less than a predetermined maximum
number of cluster ,then increase the number of cluster by 1
and repeat from step two .If it not so stop the calculation and
apply the effective criteria of step 4 to the number of cluster.
5. CONCLUSION
This paper presents survey on different segmentation
techniques that is used to segment the diseased part of a
leaf.From the above segmentation techniques it is concluded
that K-Means clustering works well if the boundaries are
well defined .If the boundaries of an image is vague, FCM
segmentation process produces good result. In penalized
FCM as it include neighborhood information which makes
the segmentation easy than FCM. In simple image
processing, the method is simple but as the pixel number is
considered it discard pixel intensity into calculation. In
unsupervised Fuzzy clustering it minimizes the number of
iteration than FCM in finding convergence. But in
unsupervised fuzzy clustering its complex in finding average
density ,classification density and volume of a cluster.
REFERENCES
[1] Dheeb Al Bashidh , Mailk Braik and Sulieman
Bani Ahmad 2011 “Detection and classification of
leaf Disease using K-Means based segmentation
and neural network classification,” Information
technology journal 10(2):267-275.
[2] Mohammed El-Helly “ Integrating Diagnostic
expert system with Image processing” Central Lab.
for agricultural research center.
[3] Yong yang and shuying Huang 2007 “ Image
segmentation by Fuzzy C-Means clustering
algorithm with a novel penalty term”,Computing
and Informatics, vol 26,17-37.
[4] Jaingsheng Gui,Li Hao,Shusen Sen,Wenshu
Li,Yanfei Liu 2013 ,”Unsupervised Segmentation
Method for Disease Of Soyabean Color Image
based on Fuzzy Clustering”Sensors and
Transducers vol 159,32-38.
[5] S.Arivazhagan, R.Newlin Shebiah, S.Ananthi,
S.Vishnu varthini 2013,”Detection of unhealthy
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 27
region of plant leaves and classification of plant
disease using texture features” Agricultural
engineering Int:CIGR Journal vol 15 ,211
[6] Mokheld Al-Tarawneh 2013 “An empirical
investigation of Olive leaf spot disease Using Auto
–Cropping Segmentation and Fuzzy C-Means
Classification” World Applied Science journal
23(9);1207-1211
[7] Hrushikesh Dattatray Marathe and Prerna
Namdeorao Kothe 2013 “Leaf Disease Detection
Using Image Processing Technique” vol
2,ISSN:2278-0181.
[8] “Digital Image Processing “ by Rafael
C.Gonzalez,Richard E.Woods
[9] “Digital Image Processing “ by Sridhar.

More Related Content

PDF
Ea4301770773
PDF
Q0460398103
PDF
Comparative performance analysis of segmentation techniques
PDF
Fuzzy Logic based Edge Detection Method for Image Processing
PDF
Medical Image segmentation using Image Mining concepts
PDF
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENT
PDF
Microarray spot partitioning by autonomously organising maps through contour ...
PDF
A Review on Label Image Constrained Multiatlas Selection
Ea4301770773
Q0460398103
Comparative performance analysis of segmentation techniques
Fuzzy Logic based Edge Detection Method for Image Processing
Medical Image segmentation using Image Mining concepts
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENT
Microarray spot partitioning by autonomously organising maps through contour ...
A Review on Label Image Constrained Multiatlas Selection

What's hot (20)

PDF
Tracking of Fluorescent Cells Based on the Wavelet Otsu Model
PDF
A NOVEL PROBABILISTIC BASED IMAGE SEGMENTATION MODEL FOR REALTIME HUMAN ACTIV...
PPTX
Automatic grading of diabetic retinopathy through machine learning
PDF
Hybrid Approach for Brain Tumour Detection in Image Segmentation
PDF
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
PDF
A novel medical image segmentation and classification using combined feature ...
PDF
Performance Analysis of SVM Classifier for Classification of MRI Image
PDF
International Journal of Engineering Research and Development
PDF
K Mean and Fuzzy Clustering Algorithm Predicated Brain Tumor Segmentation And...
PDF
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITION
PDF
Cancer cell segmentation and detection using nc ratio
PDF
Ba4103327330
PDF
Comparison of fuzzy neural clustering based outlier detection techniques
PDF
IJSRED-V2I2P60
PDF
Automated brain tumor detection and segmentation from mri images using adapti...
PDF
Hybrid Technique Based on N-GRAM and Neural Networks for Classification of Ma...
PDF
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...
PDF
C1103041623
PDF
Fuzzy k c-means clustering algorithm for medical image
PDF
Schematic model for analyzing mobility and detection of multiple
Tracking of Fluorescent Cells Based on the Wavelet Otsu Model
A NOVEL PROBABILISTIC BASED IMAGE SEGMENTATION MODEL FOR REALTIME HUMAN ACTIV...
Automatic grading of diabetic retinopathy through machine learning
Hybrid Approach for Brain Tumour Detection in Image Segmentation
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
A novel medical image segmentation and classification using combined feature ...
Performance Analysis of SVM Classifier for Classification of MRI Image
International Journal of Engineering Research and Development
K Mean and Fuzzy Clustering Algorithm Predicated Brain Tumor Segmentation And...
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITION
Cancer cell segmentation and detection using nc ratio
Ba4103327330
Comparison of fuzzy neural clustering based outlier detection techniques
IJSRED-V2I2P60
Automated brain tumor detection and segmentation from mri images using adapti...
Hybrid Technique Based on N-GRAM and Neural Networks for Classification of Ma...
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...
C1103041623
Fuzzy k c-means clustering algorithm for medical image
Schematic model for analyzing mobility and detection of multiple
Ad

Viewers also liked (20)

PPT
Automated Fingerprint Identification Systems
PPTX
Computer Image acquisition
PPTX
PPT
Clustering
PPTX
Plant Disease Detection Using I.T.
PPT
digital image processing
PPT
Image pre processing
PPT
K means Clustering Algorithm
PPT
Image segmentation ppt
PPTX
Digital image processing
PPTX
Fuzzy image processing- fuzzy C-mean clustering
DOC
Trà_luanvan xaylap
PDF
Forest type mapping of bidar forest division, karnataka
PPTX
HOUSE OF HI-RES!
PDF
Multilevel authentication using gps and otp techniques
PDF
Howtousestockphotosandstilllookcool
PDF
Novatti International Remittance brochure
PPTX
Website development by goigi
PPT
Godhead 9: 1st angels message
PPTX
Seminario biologia molecular
Automated Fingerprint Identification Systems
Computer Image acquisition
Clustering
Plant Disease Detection Using I.T.
digital image processing
Image pre processing
K means Clustering Algorithm
Image segmentation ppt
Digital image processing
Fuzzy image processing- fuzzy C-mean clustering
Trà_luanvan xaylap
Forest type mapping of bidar forest division, karnataka
HOUSE OF HI-RES!
Multilevel authentication using gps and otp techniques
Howtousestockphotosandstilllookcool
Novatti International Remittance brochure
Website development by goigi
Godhead 9: 1st angels message
Seminario biologia molecular
Ad

Similar to Segmentation of unhealthy region of plant leaf using image processing techniques a survey (20)

PDF
Segmentation of unhealthy region of plant leaf using image processing techniques
PDF
K-Means Segmentation Method for Automatic Leaf Disease Detection
PDF
Detection of leaf diseases and classification using digital image processing
PDF
IRJET- Analysis of Plant Diseases using Image Processing Method
PDF
Wheat leaf disease detection using image processing
PDF
IRJET - Plant Leaf Disease Detection using Image Processing
PPTX
Img process
PDF
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
PDF
Paper id 42201618
PDF
IRJET- Sugarcane Disease Detection and Controlling using Image Processing
PDF
Identification and Classification of Fruit Diseases
PDF
IRJET- Hybrid Model for Crop Management System
PDF
Quantitative and Qualitative Analysis of Plant Leaf Disease
PDF
IRJET- Detection and Classification of Leaf Diseases
PDF
40120130406009
PPTX
Imageprocessing
PDF
Segmentation by Fusion of Self-Adaptive SFCM Cluster in Multi-Color Space Com...
PDF
A Survey on Image Segmentation and its Applications in Image Processing
PDF
Id105
PPTX
leaf diseses.pptx
Segmentation of unhealthy region of plant leaf using image processing techniques
K-Means Segmentation Method for Automatic Leaf Disease Detection
Detection of leaf diseases and classification using digital image processing
IRJET- Analysis of Plant Diseases using Image Processing Method
Wheat leaf disease detection using image processing
IRJET - Plant Leaf Disease Detection using Image Processing
Img process
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
Paper id 42201618
IRJET- Sugarcane Disease Detection and Controlling using Image Processing
Identification and Classification of Fruit Diseases
IRJET- Hybrid Model for Crop Management System
Quantitative and Qualitative Analysis of Plant Leaf Disease
IRJET- Detection and Classification of Leaf Diseases
40120130406009
Imageprocessing
Segmentation by Fusion of Self-Adaptive SFCM Cluster in Multi-Color Space Com...
A Survey on Image Segmentation and its Applications in Image Processing
Id105
leaf diseses.pptx

More from eSAT Publishing House (20)

PDF
Likely impacts of hudhud on the environment of visakhapatnam
PDF
Impact of flood disaster in a drought prone area – case study of alampur vill...
PDF
Hudhud cyclone – a severe disaster in visakhapatnam
PDF
Groundwater investigation using geophysical methods a case study of pydibhim...
PDF
Flood related disasters concerned to urban flooding in bangalore, india
PDF
Enhancing post disaster recovery by optimal infrastructure capacity building
PDF
Effect of lintel and lintel band on the global performance of reinforced conc...
PDF
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
PDF
Wind damage to buildings, infrastrucuture and landscape elements along the be...
PDF
Shear strength of rc deep beam panels – a review
PDF
Role of voluntary teams of professional engineers in dissater management – ex...
PDF
Risk analysis and environmental hazard management
PDF
Review study on performance of seismically tested repaired shear walls
PDF
Monitoring and assessment of air quality with reference to dust particles (pm...
PDF
Low cost wireless sensor networks and smartphone applications for disaster ma...
PDF
Coastal zones – seismic vulnerability an analysis from east coast of india
PDF
Can fracture mechanics predict damage due disaster of structures
PDF
Assessment of seismic susceptibility of rc buildings
PDF
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
PDF
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Likely impacts of hudhud on the environment of visakhapatnam
Impact of flood disaster in a drought prone area – case study of alampur vill...
Hudhud cyclone – a severe disaster in visakhapatnam
Groundwater investigation using geophysical methods a case study of pydibhim...
Flood related disasters concerned to urban flooding in bangalore, india
Enhancing post disaster recovery by optimal infrastructure capacity building
Effect of lintel and lintel band on the global performance of reinforced conc...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Shear strength of rc deep beam panels – a review
Role of voluntary teams of professional engineers in dissater management – ex...
Risk analysis and environmental hazard management
Review study on performance of seismically tested repaired shear walls
Monitoring and assessment of air quality with reference to dust particles (pm...
Low cost wireless sensor networks and smartphone applications for disaster ma...
Coastal zones – seismic vulnerability an analysis from east coast of india
Can fracture mechanics predict damage due disaster of structures
Assessment of seismic susceptibility of rc buildings
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...

Recently uploaded (20)

PPTX
Internet of Things (IOT) - A guide to understanding
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
composite construction of structures.pdf
PPTX
web development for engineering and engineering
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPTX
Welding lecture in detail for understanding
PPTX
Sustainable Sites - Green Building Construction
PDF
PPT on Performance Review to get promotions
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
Well-logging-methods_new................
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
additive manufacturing of ss316l using mig welding
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
OOP with Java - Java Introduction (Basics)
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
Lecture Notes Electrical Wiring System Components
Internet of Things (IOT) - A guide to understanding
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
composite construction of structures.pdf
web development for engineering and engineering
Foundation to blockchain - A guide to Blockchain Tech
Welding lecture in detail for understanding
Sustainable Sites - Green Building Construction
PPT on Performance Review to get promotions
bas. eng. economics group 4 presentation 1.pptx
Well-logging-methods_new................
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
additive manufacturing of ss316l using mig welding
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
OOP with Java - Java Introduction (Basics)
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
CYBER-CRIMES AND SECURITY A guide to understanding
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
R24 SURVEYING LAB MANUAL for civil enggi
Model Code of Practice - Construction Work - 21102022 .pdf
Lecture Notes Electrical Wiring System Components

Segmentation of unhealthy region of plant leaf using image processing techniques a survey

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 24 SEGMENTATION OF UNHEALTHY REGION OF PLANT LEAF USING IMAGE PROCESSING TECHNIQUES: A SURVEY P.Kavitha1 , B.Ananthi2 1 Assistant Professor, Department Of Computer Applications, Erode Arts and Science College, Erode, Tamilnadu, India 2 Assistant Professor, Department Of Computer Science (Ug & Pg), Vellalar College for Women, Erode, Tamilnadu, India Abstract A segmentation technique is used to segment the diseased portion of a leaf. Based on the segmented area texture and color feature, disease can be identified by classification technique. There are many segmentation techniques such as Edge detection, Thresholding, K-Means clustering, Fuzzy C-Means clustering, Penalized Fuzzy C-Means, Unsupervised segmentation. Segmentation of diseased area of a plant leaf is the first step in disease detection and identification which plays crucial role in agriculture research. This paper provides different segmentation techniques that are used to segment diseased leaf of a plant. Keywords: Fuzzy C-Means, K-Means, Penalized FCM, Unsupervised Fuzzy Clustering --------------------------------------------------------------------***------------------------------------------------------------------ 1. INTRODUCTION Plant exists everywhere we live. India is an agriculture country where 70% (Pramod S.Landge et al) of population depends on agriculture. The cultivation of land requires close and continuous monitoring for the management of plant leaf disease that can affect production significantly. In practice disease of an plant leaf is identified by naked eye observation of an expert ,which is too expensive and time consuming to make experts arrive to field. Instead ,in automatic detection and identification of plant leaf disease image of a leaf is captured and then segmented using segmentation techniques to extract infected area. In literature survey it presents some of those existing system. 2. LITERATURE SURVEY Dheeb Al Bashidh & et al [1] in the paper titled “Detection and Classification Of leaf Disease Using K-Means based Segmentation and Neural networks based classification” proposed an approach which consists of four main phases for five types of leaf disease. First color transformation structure for the RGB leaf image and then device independent color space transformation is applied, Next in second phase image is segmented using K-Means clustering technique, Thirdly calculate the texture feature of segmented area of leaf. Finally classification is done through pretrained neural network. K-Means clustering technique provides efficient results in Segmentation of RGB image. By K- Means segmentation multiple values of cluster have been tested. Best result were observed when the number of clusters is four. Mohammed El-Hellyt & et al [2] describe about Fuzzy C- Mean FCM clustering algorithm in the paper titled “Integrating Diagnostic expert system with Image Processing” to segment infected part of a leaf after image enhancement. From the segmented area features are extracted and classification is done using Artificial Neural Network. In this system they tested for 3 cucumber disorder.The result of this indicate that this system could identify disorder with high level of accuracy. “Image segmentation by Fuzzy C-Means clustering algorithm with a Novel Penalty term “ by Yony Yang [3] describe Fuzzy C-Means(FCM) which takes into account the influence of neighborhood pixels on the central axis .So the Penalized FCM algorithm includes the spatial information which is less sensitive to noise than FCM. Jaingsheng Guis and et al [4] developed “ Unsupervised segmentation method for disease of soyabean color image based Fuzzy clustering “which gradually increase the number of cluster in FCM ,iteratively ,in the process of each iteration apply validation criteria to evaluate the effectiveness of clustering. By this method optimal number of clusters and centers are obtained. In the paper titled “Detection of unhealthy region of plant leaves and classification of plant leaf disease using texture features” by S.Arivazhagan and et al [5] segmented diseased portion of a leaf after masking green pixels and removing green portion of a leaf.The infected region is then segmented by applying specific threshold. Classification is done by Minimum distance classifier and support vector machine This algorithm was testd on ten species of plants. “An Empirical Investigation of olive Leave Spot Disease Using Auto-Cropping Segmentation and Fuzzy C-Means Classification” by Mokheld Al-Tarawneh [6] describe describe that FCM with polygon auto-cropping segmentation provides accuracy than K-Means segmentation.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 25 Hrushikesh Dattatray Marathe et al [7] presented a paper titled “Leaf Disease Detection Using Image Processing Techniques” describe detection of diseased portion of a leaf by subtracting total green area from total leaf area. This system implemented in MATLAB which makes calculation easy to extract the infected area. 3. SEGMENTATION TECHNIQUES Segmentation is the process of partitioning a digital image into multiple regions or objects and extracting meaningful region known as the region of interest(ROI). The level to which subdivision is carried depends on the problem being solved. Segmentation can be stopped when the region of interest in an application have been isolated. Segmentation accuracy determines the eventual success or failure of computerized analysis procedures. So care should be taken to pick an algorithm that performs the best for the given requirement. Image segmentation algorithms generally based on two basic principles: discontinuity and similarity .The discontinuity principle is to extract regions that differ in properties such as intensity , color , texture or any other image statistics. .In similarity principle an image pixels are grouped into regions that are similar according to a set of predefined criteria. Thresholding , region growing and region splitting and merging are example of similarity principle. The segmentation algorithms can be classified on the basis of the pixel similarity relationship with neighbouring pixel as (i) Contextual (region-based or global) algorithms (ii)Non-contextual(pixel-based or local)algorithms. In region-based algorithms, the pixels are grouped based on some sort of similarity that exists between them. In pixel- based the idea is to identify the discontinuities that are present in the image such as isolated lines and edges. In plant leaf disease identification the following steps are followed. 1. Image is converted from RGB to HSI or gray scale image. 2. The infected areas of leaf are extracted by segmentation technique. 3. From extracted part, texture features of a region are calculated and disease is identified by using classification technique. 4. CLUSTERING Clustering is a technique for partitioning a group of images into disjoint subgroups. Images that are similar to each other group themselves into a single cluster. All the images in subgroup are similar to each other. At the same time , the images across the cluster are different, In image segmentation ,clustering is used to provide the updated centriod value based on the distance between the objects. This section will describe some of the clustering techniques that are used to segment the infected area. The clustering techniques considered are K-Means, FCM, Penalized FCM and Unsupervised fuzzy clustering. 4.1 K-Means Clustering K-Means is an hard clustering algorithm approach where the physical boundaries of cluster are well defined. In K-Means clustering algorithm the n objects or instances is classified into K clusters with initial centroids. The K-Means objective function is J= i-Cj|| K is the number of clusters. C is the cluster centriod and x is the object. Procedure for K-Means technique is 1. Intialize the centriod. 2. Find the distance between object and centeroid 3. Assign the object to the cluster with which distance is minimum 4. Recalculate the new mean of the cluster. 5. Repeat the step till a predefined threshold is met. Advantage: Segmentation of an image is fast for image where the boundaries are well defined. Disadvantage: The performance of the K-means algorithm depends on the initial positions of the cluster centers. This is an inherently iterative algorithm. And also there is no guarantee about the convergence towards an optimum solution. The convergence centroids vary with different initial points. 4.2 Fuzzy C-Means Clustering Fuzzy logic deals with the vagueness and imprecision present in the problem. The image in grey color has an ambiguity in brightness and darkness of a pixel. In segmentation problem, the image is first converted from RGB to HIS which has confusion in determining whether pixel is normal or infected.This kind of vagueness is known as spatial ambiguity. To solve this, image is considered as a fuzzy set. Fuzzy clustering obtain more reasonable results for vague cluster boundaries. In a fuzzy set there is a degree of membership for every member .Value of membership lies between 0 and 1 and the sum of membership of each object is 1.Larger the membership values indicates higher confidence to cluster. Fuzzy C- Means objective function is ij m i-Cj| 1≤m≤α Where m is any real number greater than 1, c is number of clusters,
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 26 ijU is the degree of membership of xi in the cluster j, ijU is the degree of membership of xi in the cluster j, Xi-Cj is euclidean distance between any data object and the centroid of jth cluster Fuzzy C- means clustering algorithm is 1. Choose a number of clusters. 2. Assign randomly to each point in the coefficients for being in the clusters. 3. Repeat until the algorithm has convergence. 4. Compute the centriod for each cluster. 5. For each point compute its co-efficient in the cluster. Advantage 1. In Fuzzy C-Means clustering each element is assigned to multiple cluster with certain degree of membership in the dataset. So it minimize intra-cluster variance. 2. FCM obtain more reasonable results where the boundaries are vague. Disadvantage 1. Dependency on initial centriod. 2. Sensitivity to noise and outliners. 3. Results depend on initial centriod. 4.3 Penalized Fuzzy C-Means The FCM clustering technique does not include any spatial information into the objects. By minimizing the objective function of neighborhood EM algorithm, Penalized FCM include space information and spatial information during segmentation which forms the new objective function. The objective function of PFCM is PFCM=FCM+NEM (i.e)JPFCM= ik)q d2 (xk,vi)+ ɤ ik)q (1-uij)q wkj Where wkj = 4.4 Image Processing Method In this method total leaf area is calculated through pixel number statistics. Next the green area of leaf is calculated .By subtracting green leaf area from total leaf area gives the infected area of the leaf. Its easy to calculate the leaf area by counting total pixel in a leaf area region. 4.5 Unsupervised Fuzzy Clustering Algorithm Unsupervised Fuzzy clustering is a clustering based on FCM algorithm. Without knowing the number of clusters, by using fuzzy super volume and separation density function the effectiveness of clustering can be assessed effectively and can automatically obtain optimize number of clusters c and cluster centers. Here gradually increase the number of clustering ,iteratively ,in the process of each iteration validation criteria is applied to evaluate the effectiveness of clustering. Algorithm: 1. Select initial clusters, then set contrast coefficient m, maximum allowable error e and maximum number of cluster c. 2. For the cluster selected above FCM is applied to find initial cluster and Euclidean distance is used as a distance measure. 3. The distance measure is changed into exponential distance function using FCM clustering algorithm. 4. The effectiveness of clustering is calculated based on some parameters like hypervolume standard,classification density and average density of separation. 5. If this cluster is less than a predetermined maximum number of cluster ,then increase the number of cluster by 1 and repeat from step two .If it not so stop the calculation and apply the effective criteria of step 4 to the number of cluster. 5. CONCLUSION This paper presents survey on different segmentation techniques that is used to segment the diseased part of a leaf.From the above segmentation techniques it is concluded that K-Means clustering works well if the boundaries are well defined .If the boundaries of an image is vague, FCM segmentation process produces good result. In penalized FCM as it include neighborhood information which makes the segmentation easy than FCM. In simple image processing, the method is simple but as the pixel number is considered it discard pixel intensity into calculation. In unsupervised Fuzzy clustering it minimizes the number of iteration than FCM in finding convergence. But in unsupervised fuzzy clustering its complex in finding average density ,classification density and volume of a cluster. REFERENCES [1] Dheeb Al Bashidh , Mailk Braik and Sulieman Bani Ahmad 2011 “Detection and classification of leaf Disease using K-Means based segmentation and neural network classification,” Information technology journal 10(2):267-275. [2] Mohammed El-Helly “ Integrating Diagnostic expert system with Image processing” Central Lab. for agricultural research center. [3] Yong yang and shuying Huang 2007 “ Image segmentation by Fuzzy C-Means clustering algorithm with a novel penalty term”,Computing and Informatics, vol 26,17-37. [4] Jaingsheng Gui,Li Hao,Shusen Sen,Wenshu Li,Yanfei Liu 2013 ,”Unsupervised Segmentation Method for Disease Of Soyabean Color Image based on Fuzzy Clustering”Sensors and Transducers vol 159,32-38. [5] S.Arivazhagan, R.Newlin Shebiah, S.Ananthi, S.Vishnu varthini 2013,”Detection of unhealthy
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 11 | Nov-2014, Available @ http://www.ijret.org 27 region of plant leaves and classification of plant disease using texture features” Agricultural engineering Int:CIGR Journal vol 15 ,211 [6] Mokheld Al-Tarawneh 2013 “An empirical investigation of Olive leaf spot disease Using Auto –Cropping Segmentation and Fuzzy C-Means Classification” World Applied Science journal 23(9);1207-1211 [7] Hrushikesh Dattatray Marathe and Prerna Namdeorao Kothe 2013 “Leaf Disease Detection Using Image Processing Technique” vol 2,ISSN:2278-0181. [8] “Digital Image Processing “ by Rafael C.Gonzalez,Richard E.Woods [9] “Digital Image Processing “ by Sridhar.