SlideShare a Scribd company logo
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 375
WEED AND CROP SEGMENTATION AND CLASSIFICATION USING
AREA THRESHOLDING
Su Hnin Hlaing1
, Aung Soe Khaing2
1
Demonstrator, Department of Electronic Engineering, Mandalay Technological University, Myanmar
2
Associate Professor, Department of Electronic Engineering, Mandalay Technological University, Myanmar
Abstract
In the agricultural industry, the weed and crop identification and classification are major technical and economical
importance. Two classification algorithms are focused in this paper. And the better classification algorithm has been selected
to classify weed and crop from the images. There are three main parts of proposed system are segmentation, classification and
error calculation. The developed algorithm based on area thresholding has been tested on weeds and various locations. Forty
one sample images have been tested and the result of some weed coverage rate is illustrated. Moreover, the misclassification
rate is also computed. An algorithm has been done to automate the tasks of segmentation and classification. The overall
process is implemented in MATLAB.
Keywords - Objects segmentation, Image processing, Plant classification, Area Thresholding
--------------------------------------------------------------------***----------------------------------------------------------------------
1. INTRODUCTION
As weeds are frequently distributed non -uniformly within a
field, weeding is a very hard work [1]. Every year a large
amount of herbicide is used for removing weeds from
agricultural fields which is not only expensive but also a
source of environmental pollution. Moreover, both costly
and time consuming is caused due to hand labor [4].
Therefore, weed control is a necessary management practice
in agricultural systems, which is critical to sustain crop
productivity and quality [1]. Farmers need alternatives for
weed control due to the desire to reduce chemical use and
production costs [7]. For instance when growing vegetables
such as carrots, onions and cabbage the weeds can be
removed by special harrows but it cannot support for
economic system [3].
Nowadays, uniform spraying is the most common method
for herbicides application. However, this method is
inefficient and cost-ineffective as weed distribution is
usually non-uniform and highly aggregated in clumps within
the arable field [1]. There could be many parts of the field
that have none or insignificant volume of weeds. This
property of the weed distributions makes the development of
site-specific management feasible [8]. In this management,
the amount of herbicides applied is reduced through
spraying only the weed infested area of a field, where
different selective herbicides with corresponding application
rates are applied to control weed differently [5]. The
machine vision based approach uses shape, texture, color
and location based features individually of jointly to
discriminate between weed and crop [11]. In the other
research, Caltrans sprays roadside plant material with
herbicide to prevent the weeds from becoming a fire hazard
during the summer. The first step in identifying weeds
within an image involves classifying the pixels [12]. The
pixels shall be classified using a point operation. The
surrounding pixels will not bias a pixel‟s classification. The
purpose of segmenting the image into plant and background
pixels is to detect the amount of plant material within a
specific area [12]. If the amount of plant material reaches a
specific threshold, the area is targeted for herbicidal spray
application [12]. The spray threshold is set too close to the
background misclassification rate, then herbicide will be
wasted spraying background. Therefore, a larger
misclassification rate limits the smallest plant that can be
detected without targeting the background for spray [12].
A system that could make use of the spatial distribution
information in real-time and apply only the necessary
amounts of herbicide to the weed-infested area would be
much more efficient and minimize environmental damage.
Therefore, a high spatial resolution, real-time weed
infestation detection system seems to be the solution for
site-specific weed management.
In this paper, three main parts presented for weed and crop
classification. It has got (1) Image acquisition and gray
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 376
transformation, (2) Image segmentation and noise removal,
and (3) Classification of weed and crop [2]. Two
classification methods are studied in this research. They are
classification based on intensity method and area
thresholding classification method. The first method is
depended on the intensity of the images [13]. However, this
algorithm cannot operate to classify weed and crop
automatically. So, the area thresholding method is used to
get reliable classified images. These methods are executed
depending on size of the plants. By using digital camera, the
input image is obtained. Most of images are needed to
change from the color images into grayscale images for easy
and fast processing. The segmentation step implemented by
using thresholding method. In the classification part, the
areas of segmented image are then compared with the
selected threshold for classification of weeds and crop [6].
2. MATERIALS AND METHODS
The first algorithm consists of five fractions: (i)
preprocessing, (ii) Binarization using Otsu‟s thresholding,
(iii) Marker control watershed segmentation, (iv) Gray
transformation and (v) classification based on intensity. The
simple weed and crop images are used to test the system.
Firstly, the color images are converted to gray scale images
for easy and fast processing [13]. Median filter is applied to
the gray image to reduce the amount of data. Otsu‟s method
is used to filtered image for converting black and white
image. This method chooses the optimal threshold to
minimize the intraclass variance of the black and white
pixels [14]. Then, binarized image is divided into different
regions according to watershed segmentation method. The
sobel operator is applied on the binary image to find the
gradient magnitude. By using this magnitude, estimate the
watershed transform that divide different regions. The
segmented image is changed into RGB segmented image to
distinct region. To classify weed and crop, the RGB image
is converted into gray image. Finally, the intensity value is
defined by manually to extract weed plant from the image.
The results image is described in Fig- 3. The intensity values
of the images can change due to light, dark, weather
condition and camera situation. Therefore, these values must
be defined for every weed and crop images. However, the
next algorithm can detect without manual extraction as can
be seen their results image.
The area thresholding classification system includes the five
steps. They are Excess Green Gray transformation,
segmentation, label the image, removing the unwanted data
and classification based on area thresholding. The system
block diagram of the system is illustrated in Fig-1, which
consists of three main steps:
1) The Excess green gray transformation 2G-R-B is
executed to easy and fast processing for
segmentation stage.
2) Background and plants of the image is separated
according to the gray index.
3) Extraction of weed and crop from the segmented
image by area thresholding.
And then the detailed algorithms of the system are also
described into step by step.
2.1 Image Acquisition
In this research, the weed and crop color images are
acquired through the digital camera. The sample images are
captured in the fields. Images are obtained at different times
of a day. Moreover, weeds and crop with varying canopy
size were selected to increase the difficulty of the
classification problem. The weed and crop images are taken
at an angle 45 degree with the ground in natural lighting
conditions with digital camera. The camera is mounted in
the height of 2.15m from the ground. The resolution of the
camera is set to 3648×2736 pixels during image capturing.
In the experimental analysis, all the images were resized to a
resolution of 320×240 pixels in order to reduce the
computation time [10]. Fig-2 illustrates sample weed and
crop images taken from the fields.
Input Image
Gray Transformation (ExG)
Binarization
Filtering
Labeling
Area Thresholding
Output Detected Image
Fig-1: Block diagram of the system
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 377
(a) (b)
(c) (d)
Fig-2: The original images of the crop and some weed that
captured by using camera: (a) rape plant, (b) Lanchon, (c)
Pigweed and (d) Kyaut kut.
Fig-3: Sample result of classification based on intensity
method: Original image (up); Detected weed image (bottom-
left); Detected crop image (bottom-right).
2.2 Gray Transformation
The gray transformation processing is to turn the color
image to the gray image. The purpose of gray
transformation is to reduce the amount of color data in the
image so as to speed up the following processing. The color
difference between plants and background in the color
images should be kept as well as possible in the gray image.
Equation (1) is used for gray transformation in image
processing. Assuming the coordinate (x, y) is the pixel
point.
EXG(x, y) =2g-r-b (1)
Where, r= , g= , b=
In this equation R, G and B are the three components of
pixel color in RGB color space; ExG is the transformation
result, a gray value. The intensity information is highlighted
and discarded most color information in the color image
using equation (1). The pixel values in red channel and blue
channel color space are always less than the in green color.
Therefore, the Excess green feature is used to extract the
distinct color channel. The result of this algorithm is
illustrated in Fig- 4.
(a) The original input image
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 378
(b) Result of the Green minus red image
(c) Result of the green minus blue image
Fig-4: Gray transformation
2.3 Segmentation
To remove background of the image, different techniques
such as thresholding-based segmentation, edge-based
segmentation, Color-based segmentation and watershed
segmentation can be used. In this study, gray removal
segmentation method is used for the segmentation task. All
the segmentation steps are done depending on the binary
image. Therefore, the grayscale image is converted into
binary image from the preprocessing stage. Thresholding
based on gray image is used to change the binary image. By
using the following equation
(2)
For all pixels in the original image the absolute values of
green minus red and green minus blue are calculated. These
give measurements of the pixels distance to the grayscale
line. If both of these distance values are greater than
threshold (T), the pixel is classified as plant (P). If none or
only one is greater than T, the pixel is classified as
background (Bg). The number of T is equivalent to the
threshold in the above mentioned index methods and has to
be chosen based on the available image material. For the
image of this paper T=20 has proven to give a very good
result. This method of removing pixels of high „greyness‟
can be seen as calculating two separate indices and then
requiring that a pixel is on the correct side of the threshold
in both cases to be classified as P. The result of binary
images includes the small noise as misclassified plant pixels.
Therefore each pixel of the segmented images is labeled
with a value according to the component it is assigned to.
After that the property of the region is defined into area.
Then the value of region is firmed to find the minimum area.
And then the minimum area of the region is removed from
the image as shown in fig-5. The 40 pixels of minimum
areas are discarded in this filtering stage.
(a)
(b)
Fig-5: Result of segmented (a) binary image and (b) filtered
image
2.4 Classification
The final segmented image is used as the input of the weed
and crop classification stage. Weed detection is executed
depended on their areas. Firstly, the segmented binary image
is labeled using 8-connected components. In this way, it can
easy to evaluate the areas of the objects. And then, a
threshold value is selected to classify weed plants and crop
plants. Therefore, threshold value is set at 6000 for this
research. The crop plants are mostly large the weed plants in
related to the testing. Therefore, the weed plant is detected
when the object areas are less than threshold value. In the
other way, the remaining objects are classified as crop
plants. The areas of the individual objects are calculated
according to the equation (3). In this equation, F (j, k) is
binary segmented image, xj and yk are scaled coordinates in
row and column and J and K are row and column of binary
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 379
image. The detected weed and crop images are obtained by
comparing the threshold value and their areas.
(3)
The desired points of the image (xj and yk) are obtained
using the following equation:
xj =j+1/2
yk = k+1/2
The thresholding equation is illustrated in equation (4). The
optimal threshold value is selected at 6000.
(4)
(a) Result of detected weed image
(b) Result of detected crop image
(d) Result of classified image
Fig-6: Result of weed and crop classified images
If the sizes of the crop plants are equal to the weed plants,
the classification algorithm can cause the misclassification.
Therefore, those plants are misclassified results as can be
seen in Fig. 6. This original image consists of two crop
plants and four weeds plants. Among the two crop plants,
the area of the one crop plant is less than the system
threshold value. So, the misclassified image is obtained as
can be seen the Fig-7. (b).
(a) Original weed and crop image
(b) Detected weeds image with one crop is
misclassified as weed
(c) Detected crop image
(d) Misclassified image
Fig-7: Result of misclassified weed and crop images.
),()()(
1
),(
1 1
kjFyx
KJ
nmM n
k
J
j
K
k
m
jnm  

IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 380
Table- 1: The Experimental Results of Area Thresholding
Num
Total
Area
Weed
Area
Plants
Coverage
Detected
weed
Coverage
1 21986 6574 28.60% 9.19%
2 9029 17260 22.50% 12.60%
3 9069 17406 22.70% 12.60%
4 10985 2891 14.30% 3.80%
In the Table1, plants coverage and detected weed coverage
rate are defined as:
(5)
(6)
In Table 1, data describes that the percent of the plants
coverage and detected weed coverage of the results images.
According to the above equations SUMw is the sum of all
weed pixels and Zone Area is the pixel count in the whole
image, and is equal to the row × column of the image pixels.
As a result, almost of 13% of weed coverage is found in the
sample images.
er= (7)
Where, er = error rate or misclassification rate
Nw = number of detected weeds
Nm = number of misclassified crop
Above the error equation (7) is used to compute the
misclassification rate. As the sample results is illustrated in
Table II. For example, the first image in this table has six
weed plants and three crop plants. But the number of output
detected weed plants are nine. So, all the crop plants are
defined as weed plants. Therefore, 33.3% error rate is
obtained when these misclassified plants is evaluated
according to the equation (7). The remaining error rate can
be generated in the same way.
3. RESULTS AND DISCUSSION
This paper presents two main algorithms for weed and crop
classification system. Fig-6 and 7 describe the classified
result images. The plants with blue color are defined as
weeds and the red plants are classified as crops. The given
algorithm processes two types of images for weed and crop.
The algorithm produced reliable classified images to be
sprayed. In the field, almost the images that captured
according to image acquisition step can be classified to give
to the spray system. By using the resultant image, the weed
position can determined according to the pixels of left to
right and top to bottom. Although the system could classify
weed to be sprayed, darker images cause more errors in the
segmentation and also in later steps of the algorithm. When
the weed and crop plants are overlapped, this method cannot
classify weed and crop. The 41 sample images have been
used to test in this study. Among them, 7 images are found
the misclassification. Thus the proposed algorithm is
suitable for weed and crop segmentation and classification.
It will support to get the reliable results in real-time
application.
Table-2: Error Calculations of misclassified Weed and Crop
Images for the Area Thresholding Algorithm
No.
Number
of
detected
weeds
Number of
misclassified
crop
Missed
weeds
Weed mis-
classifications
rate
1 9 3 0 33.30%
2 6 1 0 17%
3 5 1 0 20%
4 4 1 0 25%
5 5 0 0 0%
In this Table 2, error calculations have been executed by
manually counting the number of misclassifications in the
randomly chosen result images. The missed weeds in this
Table II are weeds that were not fully marked in red or blue.
The weed misclassifications shows the objects classified as
weeds that are actually part of crop plant. Both weed area is
greater than threshold value and crop area is less than
threshold value can cause the misdetection. Although the
second system has some drawback, the better classification
results could generated with small error.
4. CONCLUSIONS
In this research, segmentation method and classification
based on area thresholding method are developed. Excess
green gray transformation (ExG) and area thresholding
algorithms are combined to obtain the exactly classified
images. The system shows an effective and reliable
classification of images captured by a camera. The image
segmentation algorithm is very useful method in the image
processing and it is very helpful for the subsequent
processing. When the plants are separated from each other
in the images, the results have been shown to be better. Also
the lighting conditions are important to be able to make a
reliable analysis.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 381
ACKNOWLEDGMENT
The authors wish to thank to the head of Department of
Electronic Engineering, Mandalay Technological
University. The author would like to express special
appreciation and heartfelt thanks to her supervisor, Dr. Aung
Soe Khaing, Department of Electronic Engineering,
Mandalay Technological University for giving
understanding, helpful guidance, suggestion and directions
throughout the preparation of work. The author is also
sincerely thankful to all her teachers, Department of
Electronic Engineering, Mandalay Technological
University.
REFERENCES
[1]. Faisal Ahmed, Hasanul Kabir, Shayla Azad Bhuyan,
Hossain Bari, and Eman Hossain, “Automated Weed
Classification with Local Pattern-Based Texture
Descriptors”, International Arab Journal of
Information Technology, vol.9, no.4, pp. 382-391.
[2]. Irshad Ahmad, Abdul Muhamin, Muhammad.Islam
and Shahid Nawaz,”Weed Classification using
Histogram Maxima with Threshold for Selective
Herbicide Applications”, World Academy of science,
Engineering and Technology 2007.
[3]. Siddiqi M., Sulaiman S., Faye I., and Ahmad I., “A
Real Time Specific Weed Discrimination System
Using Multi-level Wavelet Decomposition”,
International Journal of Agriculture and Biology,
vol.11, issue 5, pp.559-565,2009.
[4]. Hossein Nejati, Zohreh Azimifar and Mohsen
Zamani,”Using Fast Fourier Transform for Weed
Detection in Corn Fields”, IEEE International
Conference on Systems, Man and Cybernetics (SMC
2008).
[5]. Mahammad Hameed Siddiqi, Sungyoung. Lee, Young-
Koo Lee, “Efficient Algorithm for Real-Time Specific
Weed leaf Classification System”, Journal of
Communication and Computer, ISSN 1548-7709,
USA.
[6]. S.Kiani and A.Jafari, “Crop Detection and Positioning
in the field Using Discriminant Analysis and Neural
Networks Based on shape features”, J-Agr.Sci.Tech
(2012) Vol.14:755-765.
[7]. Sajad KIANI, “Discriminating the Corn Plants from
the Weeds By Using Artificial Neural Networks”,
International Joural of Natural and Engineering
Sciences 6 (3): 55-58, 2012 ISSN: 1307-1149,E-ISSN:
2146-0086, WWW.nobel.gen.tr.
[8]. Tian L., Reid J., and Gerhards R., “Development of a
Precision Sprayer for Site-specific Weed
Management”, Transactions of the ASAE, vol.42,
issue 4, pp.893-900, 1999.
[9] DIAO ZHIHUA, WANG HUAN, SONG YINMAO,
and WANG YUNPENG, “Image Segmentation
Method for Cotton Mite Disease Based on Color
Features and Area Thresholding”, Journal of
Theoretical and Applied Information Technology, 10th
February 2013.Vol. 48 No.1, ISSN: 1992-8645.
[10]. W.S. LEE, D. C. SLAUGHTER, AND D.K. GILES,
“Robotic Weed Control System for Tomatoes”,
Precision Agriculture, 1, 95-113(1999)
[11]. Anant Bhardwaj, Manpreet Kaur, and Anupam Kumar,
“Recognition of Plants by Leaf Image using Moment
Invariant and Texture Analysis”, International Journal
of Innovation and Applied Studies ISSN 2028-9324
Vol.3 No.1 May 2013, pp.237-248, http://www.issr-
journals.org/ijias/
[12]. Chris Gliever, EEC206 Project Report, “Color
Segmentation of Plant and soil”. 3177 EUII, Friday
5PM, March 21th
2003.
[13]. Irshad Ahmad, Muhammad, Iram Fatima, Sungyoung
Lee, Young-Koo Lee, “Weed Classification Based on
Haar Wavelet Transform via k-Nearest Neighbor (k-
NN) for Real-Time Automatic Sprayer Control
System”, ICUMC 11, February 21-23,2011, Seoul,
Korea.
[14]. Mehmet Sezgin, Bulent Sankur. “Survey over Image
Thresholding Techniques and Quantitative
Performance Evaluation”, Journal of Electronic
Imaging.13 (1): 146-165, 2004.
BIOGRAPHIES
Su Hnin Hlaing received her
Bachelor of Engineering in
Electronic Communication
Technology from the Mandalay
Technological University,
Myanmar in 2008. She is now
master student in the Mandalay
Technological University,
Myanmar. Her research interests
include image processing, weed
and crop segmentation and
classification.
Aung Soe Khaing received his
PhD in Electronic Engineering
from Mandalay Technological
University, Mandalay,
Myanmar, in 2011. He was
doing research on Spatial
Frequency Analysis of the
Human Brain at the Institute of
Biomedical Engineering and
Informatics, Technical
University Ilmenau, Germany.
He is now Associate Professor at
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 382
Department of Electronic
Engineering, Mandalay
Technological University,
Mandalay, Myanmar. His
research interests include
computer based
Electrocardiogram (ECG)
system, biomedical signal and
image processing,
bioinstrumentation and
telemedicine.

More Related Content

What's hot

Egypt Nebamun Literacy Slideshow Ks2
Egypt Nebamun Literacy Slideshow Ks2Egypt Nebamun Literacy Slideshow Ks2
Egypt Nebamun Literacy Slideshow Ks2
ahmad bassiouny
 
Uninformed search
Uninformed searchUninformed search
Uninformed search
Amit Kumar Rathi
 
Online shopping Report
Online shopping ReportOnline shopping Report
Online shopping Report
Pragnya Dash
 
2 lectures 16 17-informed search algorithms ch 4.3
2 lectures 16 17-informed search algorithms ch 4.32 lectures 16 17-informed search algorithms ch 4.3
2 lectures 16 17-informed search algorithms ch 4.3
Ravi Balout
 
IRJET- Leaf Disease Detecting using CNN Technique
IRJET- Leaf Disease Detecting using CNN TechniqueIRJET- Leaf Disease Detecting using CNN Technique
IRJET- Leaf Disease Detecting using CNN Technique
IRJET Journal
 
Dcom vs. corba
Dcom vs. corbaDcom vs. corba
Dcom vs. corba
Mohd Arif
 
Digtial Image Processing Q@A
Digtial Image Processing Q@ADigtial Image Processing Q@A
Digtial Image Processing Q@A
Chung Hua Universit
 
Point processing
Point processingPoint processing
Point processing
panupriyaa7
 
Image processing ppt
Image processing pptImage processing ppt
Image processing ppt
Ravi Prakash Yadav
 
Software Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management systemSoftware Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management system
SM. Aurnob
 
2.5 backpropagation
2.5 backpropagation2.5 backpropagation
2.5 backpropagation
Krish_ver2
 
Final Year Project Report on Self Tacit Zone (Location Based Android App)
Final Year Project Report on Self Tacit Zone (Location Based Android App)Final Year Project Report on Self Tacit Zone (Location Based Android App)
Final Year Project Report on Self Tacit Zone (Location Based Android App)
Parthik Poshiya
 
Credit card fraud detection
Credit card fraud detectionCredit card fraud detection
Credit card fraud detection
kalpesh1908
 
Dip review
Dip reviewDip review
Dip review
Harish Reddy
 
Srs (Software Requirement Specification Document)
Srs (Software Requirement Specification Document) Srs (Software Requirement Specification Document)
Srs (Software Requirement Specification Document)
Fatima Qayyum
 
Plant disease detection and classification using deep learning
Plant disease detection and classification using deep learning Plant disease detection and classification using deep learning
Plant disease detection and classification using deep learning
JAVAID AHMAD WANI
 
Case based reasoning technique
Case based reasoning techniqueCase based reasoning technique
Case based reasoning technique
ell_suhaily
 
[[Srs]] online shopping website for TYBSC IT
[[Srs]] online shopping website for TYBSC IT[[Srs]] online shopping website for TYBSC IT
[[Srs]] online shopping website for TYBSC IT
YogeshDhamke2
 
Bus tracking application project report
Bus tracking application project reportBus tracking application project report
Bus tracking application project report
Abhishek Singh
 
Online examination documentation
Online examination documentationOnline examination documentation
Online examination documentation
Wakimul Alam
 

What's hot (20)

Egypt Nebamun Literacy Slideshow Ks2
Egypt Nebamun Literacy Slideshow Ks2Egypt Nebamun Literacy Slideshow Ks2
Egypt Nebamun Literacy Slideshow Ks2
 
Uninformed search
Uninformed searchUninformed search
Uninformed search
 
Online shopping Report
Online shopping ReportOnline shopping Report
Online shopping Report
 
2 lectures 16 17-informed search algorithms ch 4.3
2 lectures 16 17-informed search algorithms ch 4.32 lectures 16 17-informed search algorithms ch 4.3
2 lectures 16 17-informed search algorithms ch 4.3
 
IRJET- Leaf Disease Detecting using CNN Technique
IRJET- Leaf Disease Detecting using CNN TechniqueIRJET- Leaf Disease Detecting using CNN Technique
IRJET- Leaf Disease Detecting using CNN Technique
 
Dcom vs. corba
Dcom vs. corbaDcom vs. corba
Dcom vs. corba
 
Digtial Image Processing Q@A
Digtial Image Processing Q@ADigtial Image Processing Q@A
Digtial Image Processing Q@A
 
Point processing
Point processingPoint processing
Point processing
 
Image processing ppt
Image processing pptImage processing ppt
Image processing ppt
 
Software Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management systemSoftware Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management system
 
2.5 backpropagation
2.5 backpropagation2.5 backpropagation
2.5 backpropagation
 
Final Year Project Report on Self Tacit Zone (Location Based Android App)
Final Year Project Report on Self Tacit Zone (Location Based Android App)Final Year Project Report on Self Tacit Zone (Location Based Android App)
Final Year Project Report on Self Tacit Zone (Location Based Android App)
 
Credit card fraud detection
Credit card fraud detectionCredit card fraud detection
Credit card fraud detection
 
Dip review
Dip reviewDip review
Dip review
 
Srs (Software Requirement Specification Document)
Srs (Software Requirement Specification Document) Srs (Software Requirement Specification Document)
Srs (Software Requirement Specification Document)
 
Plant disease detection and classification using deep learning
Plant disease detection and classification using deep learning Plant disease detection and classification using deep learning
Plant disease detection and classification using deep learning
 
Case based reasoning technique
Case based reasoning techniqueCase based reasoning technique
Case based reasoning technique
 
[[Srs]] online shopping website for TYBSC IT
[[Srs]] online shopping website for TYBSC IT[[Srs]] online shopping website for TYBSC IT
[[Srs]] online shopping website for TYBSC IT
 
Bus tracking application project report
Bus tracking application project reportBus tracking application project report
Bus tracking application project report
 
Online examination documentation
Online examination documentationOnline examination documentation
Online examination documentation
 

Viewers also liked

Weed and crop segmentation and classification using area thresholding
Weed and crop segmentation and classification using area thresholdingWeed and crop segmentation and classification using area thresholding
Weed and crop segmentation and classification using area thresholding
eSAT Journals
 
Application of image processing
Application of image processingApplication of image processing
Application of image processing
University of Potsdam
 
Non invasive modalities of neurocognitive science
Non invasive modalities of neurocognitive scienceNon invasive modalities of neurocognitive science
Non invasive modalities of neurocognitive science
eSAT Publishing House
 
Co axial fed microstrip rectangular patch antenna
Co axial fed microstrip rectangular patch antennaCo axial fed microstrip rectangular patch antenna
Co axial fed microstrip rectangular patch antenna
eSAT Publishing House
 
Extreme software estimation (xsoft estimation)
Extreme software estimation (xsoft estimation)Extreme software estimation (xsoft estimation)
Extreme software estimation (xsoft estimation)
eSAT Publishing House
 
A comprehensive review on performance of aodv and dsdv protocol using manhatt...
A comprehensive review on performance of aodv and dsdv protocol using manhatt...A comprehensive review on performance of aodv and dsdv protocol using manhatt...
A comprehensive review on performance of aodv and dsdv protocol using manhatt...
eSAT Publishing House
 
Design and development of mechanical power amplifier
Design and development of mechanical power amplifierDesign and development of mechanical power amplifier
Design and development of mechanical power amplifier
eSAT Publishing House
 
Cfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressorCfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressor
eSAT Publishing House
 
A novel method for detecting and characterizing low velocity impact (lvi) in ...
A novel method for detecting and characterizing low velocity impact (lvi) in ...A novel method for detecting and characterizing low velocity impact (lvi) in ...
A novel method for detecting and characterizing low velocity impact (lvi) in ...
eSAT Publishing House
 
Agile software development and challenges
Agile software development and challengesAgile software development and challenges
Agile software development and challenges
eSAT Publishing House
 
Efficient document compression using intra frame prediction tecthnique
Efficient document compression using intra frame prediction tecthniqueEfficient document compression using intra frame prediction tecthnique
Efficient document compression using intra frame prediction tecthnique
eSAT Publishing House
 
Enhanced equally distributed load balancing algorithm for cloud computing
Enhanced equally distributed load balancing algorithm for cloud computingEnhanced equally distributed load balancing algorithm for cloud computing
Enhanced equally distributed load balancing algorithm for cloud computing
eSAT Publishing House
 
A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...
eSAT Publishing House
 
Effect of modulus of masonry on initial lateral stiffness of infilled frames ...
Effect of modulus of masonry on initial lateral stiffness of infilled frames ...Effect of modulus of masonry on initial lateral stiffness of infilled frames ...
Effect of modulus of masonry on initial lateral stiffness of infilled frames ...
eSAT Publishing House
 
Compressive strength variability of brown coal fly ash geopolymer concrete
Compressive strength variability of brown coal fly ash geopolymer concreteCompressive strength variability of brown coal fly ash geopolymer concrete
Compressive strength variability of brown coal fly ash geopolymer concrete
eSAT Publishing House
 
Behaviour of bituminous concrete modified with polyethylene glycol for blade ...
Behaviour of bituminous concrete modified with polyethylene glycol for blade ...Behaviour of bituminous concrete modified with polyethylene glycol for blade ...
Behaviour of bituminous concrete modified with polyethylene glycol for blade ...
eSAT Publishing House
 
Operating and emission characterstics of a novel
Operating and emission characterstics of a novelOperating and emission characterstics of a novel
Operating and emission characterstics of a novel
eSAT Publishing House
 
Software testing effort estimation with cobb douglas function a practical app...
Software testing effort estimation with cobb douglas function a practical app...Software testing effort estimation with cobb douglas function a practical app...
Software testing effort estimation with cobb douglas function a practical app...
eSAT Publishing House
 
Green cutting fluid selection using moosra method
Green cutting fluid selection using moosra methodGreen cutting fluid selection using moosra method
Green cutting fluid selection using moosra method
eSAT Publishing House
 
Effect of individual physio – chemical properties of
Effect of individual physio – chemical properties ofEffect of individual physio – chemical properties of
Effect of individual physio – chemical properties of
eSAT Publishing House
 

Viewers also liked (20)

Weed and crop segmentation and classification using area thresholding
Weed and crop segmentation and classification using area thresholdingWeed and crop segmentation and classification using area thresholding
Weed and crop segmentation and classification using area thresholding
 
Application of image processing
Application of image processingApplication of image processing
Application of image processing
 
Non invasive modalities of neurocognitive science
Non invasive modalities of neurocognitive scienceNon invasive modalities of neurocognitive science
Non invasive modalities of neurocognitive science
 
Co axial fed microstrip rectangular patch antenna
Co axial fed microstrip rectangular patch antennaCo axial fed microstrip rectangular patch antenna
Co axial fed microstrip rectangular patch antenna
 
Extreme software estimation (xsoft estimation)
Extreme software estimation (xsoft estimation)Extreme software estimation (xsoft estimation)
Extreme software estimation (xsoft estimation)
 
A comprehensive review on performance of aodv and dsdv protocol using manhatt...
A comprehensive review on performance of aodv and dsdv protocol using manhatt...A comprehensive review on performance of aodv and dsdv protocol using manhatt...
A comprehensive review on performance of aodv and dsdv protocol using manhatt...
 
Design and development of mechanical power amplifier
Design and development of mechanical power amplifierDesign and development of mechanical power amplifier
Design and development of mechanical power amplifier
 
Cfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressorCfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressor
 
A novel method for detecting and characterizing low velocity impact (lvi) in ...
A novel method for detecting and characterizing low velocity impact (lvi) in ...A novel method for detecting and characterizing low velocity impact (lvi) in ...
A novel method for detecting and characterizing low velocity impact (lvi) in ...
 
Agile software development and challenges
Agile software development and challengesAgile software development and challenges
Agile software development and challenges
 
Efficient document compression using intra frame prediction tecthnique
Efficient document compression using intra frame prediction tecthniqueEfficient document compression using intra frame prediction tecthnique
Efficient document compression using intra frame prediction tecthnique
 
Enhanced equally distributed load balancing algorithm for cloud computing
Enhanced equally distributed load balancing algorithm for cloud computingEnhanced equally distributed load balancing algorithm for cloud computing
Enhanced equally distributed load balancing algorithm for cloud computing
 
A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...
 
Effect of modulus of masonry on initial lateral stiffness of infilled frames ...
Effect of modulus of masonry on initial lateral stiffness of infilled frames ...Effect of modulus of masonry on initial lateral stiffness of infilled frames ...
Effect of modulus of masonry on initial lateral stiffness of infilled frames ...
 
Compressive strength variability of brown coal fly ash geopolymer concrete
Compressive strength variability of brown coal fly ash geopolymer concreteCompressive strength variability of brown coal fly ash geopolymer concrete
Compressive strength variability of brown coal fly ash geopolymer concrete
 
Behaviour of bituminous concrete modified with polyethylene glycol for blade ...
Behaviour of bituminous concrete modified with polyethylene glycol for blade ...Behaviour of bituminous concrete modified with polyethylene glycol for blade ...
Behaviour of bituminous concrete modified with polyethylene glycol for blade ...
 
Operating and emission characterstics of a novel
Operating and emission characterstics of a novelOperating and emission characterstics of a novel
Operating and emission characterstics of a novel
 
Software testing effort estimation with cobb douglas function a practical app...
Software testing effort estimation with cobb douglas function a practical app...Software testing effort estimation with cobb douglas function a practical app...
Software testing effort estimation with cobb douglas function a practical app...
 
Green cutting fluid selection using moosra method
Green cutting fluid selection using moosra methodGreen cutting fluid selection using moosra method
Green cutting fluid selection using moosra method
 
Effect of individual physio – chemical properties of
Effect of individual physio – chemical properties ofEffect of individual physio – chemical properties of
Effect of individual physio – chemical properties of
 

Similar to Weed and crop segmentation and classification using area thresholding

A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...
A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...
A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...
ijcsit
 
IRJET- Applications of different Techniques in Agricultural System: A Review
IRJET-  	  Applications of different Techniques in Agricultural System: A ReviewIRJET-  	  Applications of different Techniques in Agricultural System: A Review
IRJET- Applications of different Techniques in Agricultural System: A Review
IRJET Journal
 
Computerized spoiled tomato detection
Computerized spoiled tomato detectionComputerized spoiled tomato detection
Computerized spoiled tomato detection
eSAT Journals
 
Computerized spoiled tomato detection
Computerized spoiled tomato detectionComputerized spoiled tomato detection
Computerized spoiled tomato detection
eSAT Publishing House
 
Pest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image ProcessingPest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image Processing
IOSR Journals
 
Digital image processing methods for estimating leaf area of cucumber plants
Digital image processing methods for estimating leaf area of cucumber plantsDigital image processing methods for estimating leaf area of cucumber plants
Digital image processing methods for estimating leaf area of cucumber plants
nooriasukmaningtyas
 
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET Journal
 
IRJET- Image Processing based Detection of Unhealthy Plant Leaves
IRJET- Image Processing based Detection of Unhealthy Plant LeavesIRJET- Image Processing based Detection of Unhealthy Plant Leaves
IRJET- Image Processing based Detection of Unhealthy Plant Leaves
IRJET Journal
 
A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...
IRJET Journal
 
A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...
eSAT Journals
 
IRJET- Leaf Disease Detection using Image Processing
IRJET- Leaf Disease Detection using Image ProcessingIRJET- Leaf Disease Detection using Image Processing
IRJET- Leaf Disease Detection using Image Processing
IRJET Journal
 
The quality identification of fruits in image processing using matlab
The quality identification of fruits in image processing using matlabThe quality identification of fruits in image processing using matlab
The quality identification of fruits in image processing using matlab
eSAT Publishing House
 
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
IRJET Journal
 
IRJET- Weedicide Spray Robot using Image Processing
IRJET- Weedicide Spray Robot using Image ProcessingIRJET- Weedicide Spray Robot using Image Processing
IRJET- Weedicide Spray Robot using Image Processing
IRJET Journal
 
IRJET- A Review on Plant Disease Detection using Image Processing
IRJET- A Review on Plant Disease Detection using Image ProcessingIRJET- A Review on Plant Disease Detection using Image Processing
IRJET- A Review on Plant Disease Detection using Image Processing
IRJET Journal
 
IRJET- Detection and Classification of Leaf Diseases
IRJET-  	  Detection and Classification of Leaf DiseasesIRJET-  	  Detection and Classification of Leaf Diseases
IRJET- Detection and Classification of Leaf Diseases
IRJET Journal
 
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET Journal
 
Plant Monitoring using Image Processing, Raspberry PI & IOT
 	  Plant Monitoring using Image Processing, Raspberry PI & IOT 	  Plant Monitoring using Image Processing, Raspberry PI & IOT
Plant Monitoring using Image Processing, Raspberry PI & IOT
IRJET Journal
 
Plant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image ProcessingPlant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image Processing
IRJET Journal
 
IRJET- An Expert System for Plant Disease Diagnosis by using Neural Network
IRJET- An Expert System for Plant Disease Diagnosis by using Neural NetworkIRJET- An Expert System for Plant Disease Diagnosis by using Neural Network
IRJET- An Expert System for Plant Disease Diagnosis by using Neural Network
IRJET Journal
 

Similar to Weed and crop segmentation and classification using area thresholding (20)

A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...
A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...
A STUDY ON WEED DISCRIMINATION THROUGH WAVELET TRANSFORM, TEXTURE FEATURE EXT...
 
IRJET- Applications of different Techniques in Agricultural System: A Review
IRJET-  	  Applications of different Techniques in Agricultural System: A ReviewIRJET-  	  Applications of different Techniques in Agricultural System: A Review
IRJET- Applications of different Techniques in Agricultural System: A Review
 
Computerized spoiled tomato detection
Computerized spoiled tomato detectionComputerized spoiled tomato detection
Computerized spoiled tomato detection
 
Computerized spoiled tomato detection
Computerized spoiled tomato detectionComputerized spoiled tomato detection
Computerized spoiled tomato detection
 
Pest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image ProcessingPest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image Processing
 
Digital image processing methods for estimating leaf area of cucumber plants
Digital image processing methods for estimating leaf area of cucumber plantsDigital image processing methods for estimating leaf area of cucumber plants
Digital image processing methods for estimating leaf area of cucumber plants
 
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
 
IRJET- Image Processing based Detection of Unhealthy Plant Leaves
IRJET- Image Processing based Detection of Unhealthy Plant LeavesIRJET- Image Processing based Detection of Unhealthy Plant Leaves
IRJET- Image Processing based Detection of Unhealthy Plant Leaves
 
A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...
 
A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...
 
IRJET- Leaf Disease Detection using Image Processing
IRJET- Leaf Disease Detection using Image ProcessingIRJET- Leaf Disease Detection using Image Processing
IRJET- Leaf Disease Detection using Image Processing
 
The quality identification of fruits in image processing using matlab
The quality identification of fruits in image processing using matlabThe quality identification of fruits in image processing using matlab
The quality identification of fruits in image processing using matlab
 
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
 
IRJET- Weedicide Spray Robot using Image Processing
IRJET- Weedicide Spray Robot using Image ProcessingIRJET- Weedicide Spray Robot using Image Processing
IRJET- Weedicide Spray Robot using Image Processing
 
IRJET- A Review on Plant Disease Detection using Image Processing
IRJET- A Review on Plant Disease Detection using Image ProcessingIRJET- A Review on Plant Disease Detection using Image Processing
IRJET- A Review on Plant Disease Detection using Image Processing
 
IRJET- Detection and Classification of Leaf Diseases
IRJET-  	  Detection and Classification of Leaf DiseasesIRJET-  	  Detection and Classification of Leaf Diseases
IRJET- Detection and Classification of Leaf Diseases
 
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
 
Plant Monitoring using Image Processing, Raspberry PI & IOT
 	  Plant Monitoring using Image Processing, Raspberry PI & IOT 	  Plant Monitoring using Image Processing, Raspberry PI & IOT
Plant Monitoring using Image Processing, Raspberry PI & IOT
 
Plant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image ProcessingPlant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image Processing
 
IRJET- An Expert System for Plant Disease Diagnosis by using Neural Network
IRJET- An Expert System for Plant Disease Diagnosis by using Neural NetworkIRJET- An Expert System for Plant Disease Diagnosis by using Neural Network
IRJET- An Expert System for Plant Disease Diagnosis by using Neural Network
 

More from eSAT Publishing House

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

More from eSAT Publishing House (20)

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

Recently uploaded

Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
Madhumitha Jayaram
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
Mukeshwaran Balu
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
ClaraZara1
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
Series of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.pptSeries of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.ppt
PauloRodrigues104553
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
JamalHussainArman
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
wisnuprabawa3
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
Madan Karki
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 

Recently uploaded (20)

Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
Series of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.pptSeries of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.ppt
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 

Weed and crop segmentation and classification using area thresholding

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 375 WEED AND CROP SEGMENTATION AND CLASSIFICATION USING AREA THRESHOLDING Su Hnin Hlaing1 , Aung Soe Khaing2 1 Demonstrator, Department of Electronic Engineering, Mandalay Technological University, Myanmar 2 Associate Professor, Department of Electronic Engineering, Mandalay Technological University, Myanmar Abstract In the agricultural industry, the weed and crop identification and classification are major technical and economical importance. Two classification algorithms are focused in this paper. And the better classification algorithm has been selected to classify weed and crop from the images. There are three main parts of proposed system are segmentation, classification and error calculation. The developed algorithm based on area thresholding has been tested on weeds and various locations. Forty one sample images have been tested and the result of some weed coverage rate is illustrated. Moreover, the misclassification rate is also computed. An algorithm has been done to automate the tasks of segmentation and classification. The overall process is implemented in MATLAB. Keywords - Objects segmentation, Image processing, Plant classification, Area Thresholding --------------------------------------------------------------------***---------------------------------------------------------------------- 1. INTRODUCTION As weeds are frequently distributed non -uniformly within a field, weeding is a very hard work [1]. Every year a large amount of herbicide is used for removing weeds from agricultural fields which is not only expensive but also a source of environmental pollution. Moreover, both costly and time consuming is caused due to hand labor [4]. Therefore, weed control is a necessary management practice in agricultural systems, which is critical to sustain crop productivity and quality [1]. Farmers need alternatives for weed control due to the desire to reduce chemical use and production costs [7]. For instance when growing vegetables such as carrots, onions and cabbage the weeds can be removed by special harrows but it cannot support for economic system [3]. Nowadays, uniform spraying is the most common method for herbicides application. However, this method is inefficient and cost-ineffective as weed distribution is usually non-uniform and highly aggregated in clumps within the arable field [1]. There could be many parts of the field that have none or insignificant volume of weeds. This property of the weed distributions makes the development of site-specific management feasible [8]. In this management, the amount of herbicides applied is reduced through spraying only the weed infested area of a field, where different selective herbicides with corresponding application rates are applied to control weed differently [5]. The machine vision based approach uses shape, texture, color and location based features individually of jointly to discriminate between weed and crop [11]. In the other research, Caltrans sprays roadside plant material with herbicide to prevent the weeds from becoming a fire hazard during the summer. The first step in identifying weeds within an image involves classifying the pixels [12]. The pixels shall be classified using a point operation. The surrounding pixels will not bias a pixel‟s classification. The purpose of segmenting the image into plant and background pixels is to detect the amount of plant material within a specific area [12]. If the amount of plant material reaches a specific threshold, the area is targeted for herbicidal spray application [12]. The spray threshold is set too close to the background misclassification rate, then herbicide will be wasted spraying background. Therefore, a larger misclassification rate limits the smallest plant that can be detected without targeting the background for spray [12]. A system that could make use of the spatial distribution information in real-time and apply only the necessary amounts of herbicide to the weed-infested area would be much more efficient and minimize environmental damage. Therefore, a high spatial resolution, real-time weed infestation detection system seems to be the solution for site-specific weed management. In this paper, three main parts presented for weed and crop classification. It has got (1) Image acquisition and gray
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 376 transformation, (2) Image segmentation and noise removal, and (3) Classification of weed and crop [2]. Two classification methods are studied in this research. They are classification based on intensity method and area thresholding classification method. The first method is depended on the intensity of the images [13]. However, this algorithm cannot operate to classify weed and crop automatically. So, the area thresholding method is used to get reliable classified images. These methods are executed depending on size of the plants. By using digital camera, the input image is obtained. Most of images are needed to change from the color images into grayscale images for easy and fast processing. The segmentation step implemented by using thresholding method. In the classification part, the areas of segmented image are then compared with the selected threshold for classification of weeds and crop [6]. 2. MATERIALS AND METHODS The first algorithm consists of five fractions: (i) preprocessing, (ii) Binarization using Otsu‟s thresholding, (iii) Marker control watershed segmentation, (iv) Gray transformation and (v) classification based on intensity. The simple weed and crop images are used to test the system. Firstly, the color images are converted to gray scale images for easy and fast processing [13]. Median filter is applied to the gray image to reduce the amount of data. Otsu‟s method is used to filtered image for converting black and white image. This method chooses the optimal threshold to minimize the intraclass variance of the black and white pixels [14]. Then, binarized image is divided into different regions according to watershed segmentation method. The sobel operator is applied on the binary image to find the gradient magnitude. By using this magnitude, estimate the watershed transform that divide different regions. The segmented image is changed into RGB segmented image to distinct region. To classify weed and crop, the RGB image is converted into gray image. Finally, the intensity value is defined by manually to extract weed plant from the image. The results image is described in Fig- 3. The intensity values of the images can change due to light, dark, weather condition and camera situation. Therefore, these values must be defined for every weed and crop images. However, the next algorithm can detect without manual extraction as can be seen their results image. The area thresholding classification system includes the five steps. They are Excess Green Gray transformation, segmentation, label the image, removing the unwanted data and classification based on area thresholding. The system block diagram of the system is illustrated in Fig-1, which consists of three main steps: 1) The Excess green gray transformation 2G-R-B is executed to easy and fast processing for segmentation stage. 2) Background and plants of the image is separated according to the gray index. 3) Extraction of weed and crop from the segmented image by area thresholding. And then the detailed algorithms of the system are also described into step by step. 2.1 Image Acquisition In this research, the weed and crop color images are acquired through the digital camera. The sample images are captured in the fields. Images are obtained at different times of a day. Moreover, weeds and crop with varying canopy size were selected to increase the difficulty of the classification problem. The weed and crop images are taken at an angle 45 degree with the ground in natural lighting conditions with digital camera. The camera is mounted in the height of 2.15m from the ground. The resolution of the camera is set to 3648×2736 pixels during image capturing. In the experimental analysis, all the images were resized to a resolution of 320×240 pixels in order to reduce the computation time [10]. Fig-2 illustrates sample weed and crop images taken from the fields. Input Image Gray Transformation (ExG) Binarization Filtering Labeling Area Thresholding Output Detected Image Fig-1: Block diagram of the system
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 377 (a) (b) (c) (d) Fig-2: The original images of the crop and some weed that captured by using camera: (a) rape plant, (b) Lanchon, (c) Pigweed and (d) Kyaut kut. Fig-3: Sample result of classification based on intensity method: Original image (up); Detected weed image (bottom- left); Detected crop image (bottom-right). 2.2 Gray Transformation The gray transformation processing is to turn the color image to the gray image. The purpose of gray transformation is to reduce the amount of color data in the image so as to speed up the following processing. The color difference between plants and background in the color images should be kept as well as possible in the gray image. Equation (1) is used for gray transformation in image processing. Assuming the coordinate (x, y) is the pixel point. EXG(x, y) =2g-r-b (1) Where, r= , g= , b= In this equation R, G and B are the three components of pixel color in RGB color space; ExG is the transformation result, a gray value. The intensity information is highlighted and discarded most color information in the color image using equation (1). The pixel values in red channel and blue channel color space are always less than the in green color. Therefore, the Excess green feature is used to extract the distinct color channel. The result of this algorithm is illustrated in Fig- 4. (a) The original input image
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 378 (b) Result of the Green minus red image (c) Result of the green minus blue image Fig-4: Gray transformation 2.3 Segmentation To remove background of the image, different techniques such as thresholding-based segmentation, edge-based segmentation, Color-based segmentation and watershed segmentation can be used. In this study, gray removal segmentation method is used for the segmentation task. All the segmentation steps are done depending on the binary image. Therefore, the grayscale image is converted into binary image from the preprocessing stage. Thresholding based on gray image is used to change the binary image. By using the following equation (2) For all pixels in the original image the absolute values of green minus red and green minus blue are calculated. These give measurements of the pixels distance to the grayscale line. If both of these distance values are greater than threshold (T), the pixel is classified as plant (P). If none or only one is greater than T, the pixel is classified as background (Bg). The number of T is equivalent to the threshold in the above mentioned index methods and has to be chosen based on the available image material. For the image of this paper T=20 has proven to give a very good result. This method of removing pixels of high „greyness‟ can be seen as calculating two separate indices and then requiring that a pixel is on the correct side of the threshold in both cases to be classified as P. The result of binary images includes the small noise as misclassified plant pixels. Therefore each pixel of the segmented images is labeled with a value according to the component it is assigned to. After that the property of the region is defined into area. Then the value of region is firmed to find the minimum area. And then the minimum area of the region is removed from the image as shown in fig-5. The 40 pixels of minimum areas are discarded in this filtering stage. (a) (b) Fig-5: Result of segmented (a) binary image and (b) filtered image 2.4 Classification The final segmented image is used as the input of the weed and crop classification stage. Weed detection is executed depended on their areas. Firstly, the segmented binary image is labeled using 8-connected components. In this way, it can easy to evaluate the areas of the objects. And then, a threshold value is selected to classify weed plants and crop plants. Therefore, threshold value is set at 6000 for this research. The crop plants are mostly large the weed plants in related to the testing. Therefore, the weed plant is detected when the object areas are less than threshold value. In the other way, the remaining objects are classified as crop plants. The areas of the individual objects are calculated according to the equation (3). In this equation, F (j, k) is binary segmented image, xj and yk are scaled coordinates in row and column and J and K are row and column of binary
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 379 image. The detected weed and crop images are obtained by comparing the threshold value and their areas. (3) The desired points of the image (xj and yk) are obtained using the following equation: xj =j+1/2 yk = k+1/2 The thresholding equation is illustrated in equation (4). The optimal threshold value is selected at 6000. (4) (a) Result of detected weed image (b) Result of detected crop image (d) Result of classified image Fig-6: Result of weed and crop classified images If the sizes of the crop plants are equal to the weed plants, the classification algorithm can cause the misclassification. Therefore, those plants are misclassified results as can be seen in Fig. 6. This original image consists of two crop plants and four weeds plants. Among the two crop plants, the area of the one crop plant is less than the system threshold value. So, the misclassified image is obtained as can be seen the Fig-7. (b). (a) Original weed and crop image (b) Detected weeds image with one crop is misclassified as weed (c) Detected crop image (d) Misclassified image Fig-7: Result of misclassified weed and crop images. ),()()( 1 ),( 1 1 kjFyx KJ nmM n k J j K k m jnm   
  • 6. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 380 Table- 1: The Experimental Results of Area Thresholding Num Total Area Weed Area Plants Coverage Detected weed Coverage 1 21986 6574 28.60% 9.19% 2 9029 17260 22.50% 12.60% 3 9069 17406 22.70% 12.60% 4 10985 2891 14.30% 3.80% In the Table1, plants coverage and detected weed coverage rate are defined as: (5) (6) In Table 1, data describes that the percent of the plants coverage and detected weed coverage of the results images. According to the above equations SUMw is the sum of all weed pixels and Zone Area is the pixel count in the whole image, and is equal to the row × column of the image pixels. As a result, almost of 13% of weed coverage is found in the sample images. er= (7) Where, er = error rate or misclassification rate Nw = number of detected weeds Nm = number of misclassified crop Above the error equation (7) is used to compute the misclassification rate. As the sample results is illustrated in Table II. For example, the first image in this table has six weed plants and three crop plants. But the number of output detected weed plants are nine. So, all the crop plants are defined as weed plants. Therefore, 33.3% error rate is obtained when these misclassified plants is evaluated according to the equation (7). The remaining error rate can be generated in the same way. 3. RESULTS AND DISCUSSION This paper presents two main algorithms for weed and crop classification system. Fig-6 and 7 describe the classified result images. The plants with blue color are defined as weeds and the red plants are classified as crops. The given algorithm processes two types of images for weed and crop. The algorithm produced reliable classified images to be sprayed. In the field, almost the images that captured according to image acquisition step can be classified to give to the spray system. By using the resultant image, the weed position can determined according to the pixels of left to right and top to bottom. Although the system could classify weed to be sprayed, darker images cause more errors in the segmentation and also in later steps of the algorithm. When the weed and crop plants are overlapped, this method cannot classify weed and crop. The 41 sample images have been used to test in this study. Among them, 7 images are found the misclassification. Thus the proposed algorithm is suitable for weed and crop segmentation and classification. It will support to get the reliable results in real-time application. Table-2: Error Calculations of misclassified Weed and Crop Images for the Area Thresholding Algorithm No. Number of detected weeds Number of misclassified crop Missed weeds Weed mis- classifications rate 1 9 3 0 33.30% 2 6 1 0 17% 3 5 1 0 20% 4 4 1 0 25% 5 5 0 0 0% In this Table 2, error calculations have been executed by manually counting the number of misclassifications in the randomly chosen result images. The missed weeds in this Table II are weeds that were not fully marked in red or blue. The weed misclassifications shows the objects classified as weeds that are actually part of crop plant. Both weed area is greater than threshold value and crop area is less than threshold value can cause the misdetection. Although the second system has some drawback, the better classification results could generated with small error. 4. CONCLUSIONS In this research, segmentation method and classification based on area thresholding method are developed. Excess green gray transformation (ExG) and area thresholding algorithms are combined to obtain the exactly classified images. The system shows an effective and reliable classification of images captured by a camera. The image segmentation algorithm is very useful method in the image processing and it is very helpful for the subsequent processing. When the plants are separated from each other in the images, the results have been shown to be better. Also the lighting conditions are important to be able to make a reliable analysis.
  • 7. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 381 ACKNOWLEDGMENT The authors wish to thank to the head of Department of Electronic Engineering, Mandalay Technological University. The author would like to express special appreciation and heartfelt thanks to her supervisor, Dr. Aung Soe Khaing, Department of Electronic Engineering, Mandalay Technological University for giving understanding, helpful guidance, suggestion and directions throughout the preparation of work. The author is also sincerely thankful to all her teachers, Department of Electronic Engineering, Mandalay Technological University. REFERENCES [1]. Faisal Ahmed, Hasanul Kabir, Shayla Azad Bhuyan, Hossain Bari, and Eman Hossain, “Automated Weed Classification with Local Pattern-Based Texture Descriptors”, International Arab Journal of Information Technology, vol.9, no.4, pp. 382-391. [2]. Irshad Ahmad, Abdul Muhamin, Muhammad.Islam and Shahid Nawaz,”Weed Classification using Histogram Maxima with Threshold for Selective Herbicide Applications”, World Academy of science, Engineering and Technology 2007. [3]. Siddiqi M., Sulaiman S., Faye I., and Ahmad I., “A Real Time Specific Weed Discrimination System Using Multi-level Wavelet Decomposition”, International Journal of Agriculture and Biology, vol.11, issue 5, pp.559-565,2009. [4]. Hossein Nejati, Zohreh Azimifar and Mohsen Zamani,”Using Fast Fourier Transform for Weed Detection in Corn Fields”, IEEE International Conference on Systems, Man and Cybernetics (SMC 2008). [5]. Mahammad Hameed Siddiqi, Sungyoung. Lee, Young- Koo Lee, “Efficient Algorithm for Real-Time Specific Weed leaf Classification System”, Journal of Communication and Computer, ISSN 1548-7709, USA. [6]. S.Kiani and A.Jafari, “Crop Detection and Positioning in the field Using Discriminant Analysis and Neural Networks Based on shape features”, J-Agr.Sci.Tech (2012) Vol.14:755-765. [7]. Sajad KIANI, “Discriminating the Corn Plants from the Weeds By Using Artificial Neural Networks”, International Joural of Natural and Engineering Sciences 6 (3): 55-58, 2012 ISSN: 1307-1149,E-ISSN: 2146-0086, WWW.nobel.gen.tr. [8]. Tian L., Reid J., and Gerhards R., “Development of a Precision Sprayer for Site-specific Weed Management”, Transactions of the ASAE, vol.42, issue 4, pp.893-900, 1999. [9] DIAO ZHIHUA, WANG HUAN, SONG YINMAO, and WANG YUNPENG, “Image Segmentation Method for Cotton Mite Disease Based on Color Features and Area Thresholding”, Journal of Theoretical and Applied Information Technology, 10th February 2013.Vol. 48 No.1, ISSN: 1992-8645. [10]. W.S. LEE, D. C. SLAUGHTER, AND D.K. GILES, “Robotic Weed Control System for Tomatoes”, Precision Agriculture, 1, 95-113(1999) [11]. Anant Bhardwaj, Manpreet Kaur, and Anupam Kumar, “Recognition of Plants by Leaf Image using Moment Invariant and Texture Analysis”, International Journal of Innovation and Applied Studies ISSN 2028-9324 Vol.3 No.1 May 2013, pp.237-248, http://www.issr- journals.org/ijias/ [12]. Chris Gliever, EEC206 Project Report, “Color Segmentation of Plant and soil”. 3177 EUII, Friday 5PM, March 21th 2003. [13]. Irshad Ahmad, Muhammad, Iram Fatima, Sungyoung Lee, Young-Koo Lee, “Weed Classification Based on Haar Wavelet Transform via k-Nearest Neighbor (k- NN) for Real-Time Automatic Sprayer Control System”, ICUMC 11, February 21-23,2011, Seoul, Korea. [14]. Mehmet Sezgin, Bulent Sankur. “Survey over Image Thresholding Techniques and Quantitative Performance Evaluation”, Journal of Electronic Imaging.13 (1): 146-165, 2004. BIOGRAPHIES Su Hnin Hlaing received her Bachelor of Engineering in Electronic Communication Technology from the Mandalay Technological University, Myanmar in 2008. She is now master student in the Mandalay Technological University, Myanmar. Her research interests include image processing, weed and crop segmentation and classification. Aung Soe Khaing received his PhD in Electronic Engineering from Mandalay Technological University, Mandalay, Myanmar, in 2011. He was doing research on Spatial Frequency Analysis of the Human Brain at the Institute of Biomedical Engineering and Informatics, Technical University Ilmenau, Germany. He is now Associate Professor at
  • 8. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 382 Department of Electronic Engineering, Mandalay Technological University, Mandalay, Myanmar. His research interests include computer based Electrocardiogram (ECG) system, biomedical signal and image processing, bioinstrumentation and telemedicine.