SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2481
INVESTIGATIONS ON COCONUT TREE DISEASE SEGMENTATION USING
INTELLIGENT TECHNIQUES
D.ANSALIN JESMI DINISHA1, I.MUTHUMANI2
1Student, Dept. of ECE, GCE, Tirunelveli, Tamil Nadu, India
2Professor, Dept. Of ECE, GCE, Tirunelveli, Tamil Nadu, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Coconut is one of India's most flexible plantation
crops. It plays a unique role in Indian culture and heritage.
Every portion of the coconut plant can be used for a variety of
purposes. Using image processing techniques, this research
focuses on detecting problems in coconut trees such as stem
bleeding, leaf blight disease, and pest invasion by the redpalm
weevil. The segmentationofdiseasedregionsprovidesadvance
warning of the disease and increases coconut production. K-
Means Clustering and Fuzzy clustering segmentation methods
are employed in this paper and clustering areusedtocompute
the affected area.
Key Words: Stem bleeding, Leaf Blight, Segmentation, K-
Means, Fuzzy C-Means.
1. INTRODUCTION
Coconut tree (Coco’s nucifera) is the only extant
species of the genus Coco’s and belongs to the palm family
(Arecaceae). The name "coconut" can refer to the entire
coconut palm, the seed, or the fruit, which is a drupe, not a
nut, according to botanical classification. After the three
indentations on the coconut shell that mimic facial features,
the name comes from the Old Portuguese word coco, which
means "head" or "skull." They are a cultural emblem of the
tropics and can be found in coastal tropical regions.
1.1.1 Plant
Coco’s nucifera is a palm that may reach a height of
30 meters (100 feet) and has pinnate leaves that are 60-90
cm (2-3 feet) long. A tall coconut palmtreecanproduceupto
75 fruits per year in fertile soil, although it usually produces
less than 30. Coconut palms produce their first fruit in six to
ten years with correct care and growing circumstances,
requiring 15 to 20 years to reach optimum production.
1.1.2 Fruit
The coconut fruit is a drupe, not a real nut,
according to botany. It has three layers, same as other fruits:
exocarp, mesocarp, and endocarp. The glossy outer skin of
the exocarp is yellow-green to yellow-brown in color. The
mesocarp is made up of a fibre known as coir, which has a
variety of traditional and commercial applications. The
coconut's "husk" is made up of the exocarp and mesocarp,
while the hard "shell" is made up of the endocarp.
1.2 Major diseases affecting coconut tree
 Ganoderma – Basal Stem Rot
 But Rot
 Leaf Blight
 Stem Bleeding
 Root(Wilt)Disease
 Leaf Rot
1.2.1 Leaf Blight
The emergence of yellowish brown small dots on
the leaflet is one of the disease's early signs. These spots
expand and become grey with time. The spot's periphery
turns a dark brown color. During wet seasons, bacterial
leaf blight is a devastating disease that affects coconuts.
Fig.1: Leaf Blight
1.2.2 Stem Bleeding
The exudation of a dark reddish brown liquid from
longitudinal fissures in the bark and wounds on the stem,
which trickles down for several inches to several feet, is
known as stem bleeding. As the diseaseadvances,thelesions
spread higher.
Fig.2: Stem Bleeding
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2482
1.2.3 Red palm weevil
Tunneling in the stem or base of the fronds, leaves
with straight edges rather than pointed tips, frass at tunnel
entrances, withering and death of the leaves, particularly at
the crown.
Fig.3: Red palm weevil
2. PROPOSED METHODOLOGY
Calculate the segmentation of the affected region of
the coconut tree illness from the disease image. By
calculating the afflicted area, the stage of the disease can be
determined quickly.
2.1 Dataset
The images for this project were taken from the
TNAU database, which is open to the public. A total of 60
images were chosen for the proposed method's
implementation.
2.2 Pre-processing
The input images are converted as a suitableformat
for the further processing.
2.2.1. Image Enhancement
The contrast of the input images is increased by
adjusting them. Because the input coconut images were
taken on a sunny day, increasing the contrast is necessary
for further processing. Lab color space was applied to the
RGB images. The same information is converted to a
lightness component L* and two color componentsa*and b*
in lab. Lightness was created to mimic human vision, which
is highly sensitive to green but not so much to blue. Because
green color is prevalent in coconut images, the lightening
technique makes the green color sensitive.
2.3 Image Segmentation
Image segmentation is a technique for breaking
down a digital image into subgroups in order to reduce the
image's complexity and make future processing or analysis
of the image easier. In simple terms, segmentation is the
process of assigning labels to pixels. The focus of this
research was on K-Means clustering and the Fuzzy C-Means
Clustering method.
2.3.1 K-Means Clustering
The K-means algorithm is an unsupervised method
for separating the interest area from the background. Based
on the K-centroids, it clusters or partitions the given data
into K-clusters or sections. When you have unlabeled data,
the algorithm is used (i.e. data without defined categories or
groups). The purpose is to locate specific groups based on
some form of data similarity, with K representing the
number of groups. The goal of K-Means clustering is to
reduce the sum of squared distances between all points and
the cluster centre to the smallest possible value.
2.3.1.1 Steps in K-Means Algorithm
1. Determine the number of clusters to be K.
2. Choose the centroids at random among K locations.
3. Assign each data point to the centroids that are closest to
it, forming K clusters.
4. Calculate and position each cluster's new centroids.
5. Assign each data point to the new centroids that are
closest to it.
Figure 4 shows the flow diagram for K-Means
Clustering segmentation.
Fig.4: Flow Diagram of K-Means Clustering
2.3.2 Fuzzy C Means Segmentation
The data must be handled in Fuzzy C-Mean by
assigning a partial membership value to each pixel in the
image. The fuzzy set's membership value is in the range of 0
to 1. A member of one fuzzy set can also be a member of
other fuzzy sets in the same image in fuzzy clustering. When
a member function is used to characterise something, it has
three basic characteristics. The fuzzy set's core is the full
member, Support is the set's non-membership value, and
Boundary is the partial membership with a value between 0
and 1. In general, determining whether a pixel belongs to a
region is difficult. This is owing to the region's unsharp
transitions.
2.3.2.1 Fuzzy c-mean Algorithm steps
1. Calculate the prototype clusters (means).
Coconut Tree Images
Image Enhancement
Clustering Image
Calculating the
Disease Affected area
2. Calculate the distances between the points.
3. Make changes to the partition matrix.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2483
Figure 5 shows the flow diagram for Fuzzy C-Means
Clustering segmentation.
Fig.5: Flow Diagram of Fuzzy C-Means Clustering
3. Result
Compare the K-Means clustering and the Fuzzy C-
Means (FCM) clustering Methods in order to improve the
accuracy of the segmentation process. The results of these
algorithms were implemented and evaluated with sample
images.
Terms K-Means
Accuracy
Fuzzy C-Means
Accuracy
Leaf Blight 87.5% 90%
Stem Bleeding 85% 88%
Red Palm Weevil 90% 92%
Affected Area
Calculation
80% 85%
3.1. K-Means Segmentation Outputs
Original Contrast
Enhance
Object
Cluster1
Object
Cluster2
Object
Cluster3
Healthy
Leaf
blight
Stem
bleeding
Redpalm
weevil
Coconut Tree Image
Image Enhancement
Clustering Image
Calculating the
Disease Affected area
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2484
3.2 Fuzzy C-Means Segmentation outputs 4. Conclusion
The disease of the coconut tree, such as stem
bleeding, leaf blight disease, and pest infection by the Red
palm weevil, were segmented in this study. For testing, a
total of roughly 60 images were taken from the publically
available TNAU, both normal and disease-affected images.
The disease-affected area regions were segmented from the
total image using the K-Means segmentation technique. The
disease-affected area is also computed using K-means. To
improve the segmentation outcome, Fuzzy C Means
segmentation was employed to increase the number of
iterations and clusters. MATLAB 2018a was usedtoproduce
the above segmentation. The disease-affected region was
also segmented and the disease-affected area wasestimated
using these segmentations.
REFERENCES
[1] P.Balamurugan, R.Rajesh, “Neural Network BasedSystem
for the Classification of Leaf Rot Disease in Cocos Nucifera
Tree Leaves”, European Journal of Scientific Research, ISSN
1450-216X Vol.88 No 1 October, 2012, pp.137-145.
[2]P.Revathi, M.Hemalatha, “Classification of Cotton Leaf
Spot Diseases Using Image Processing Edge Detection
Techniques”, International Conference on Emerging Trends
in Science Engineering and Technology, ISBN: 978-1-4673-
5144-7/12, 2012.
[3] Sanjay B. Dhaygude, Mr.Nitin, P.Kumbhar, “Agricultural
plant Leaf Disease Detection Using Image Processing”,
International Journal of Advanced ResearchinElectrical and
Intrumentation Engineering Vol.2, Issue 1, January2013.
[4]RongZhou, Shun’ichi Kaneko, Fumio Tanaka, Miyuki
Kayamori, Motoshige Shimizu “Early Detection and
Continuous Quantization of Plant Disease Using Template
Matching and SupportVectorMachineAlgorithm”,2013First
International Symbosium on Computing and Networking
DOI 10.1109/CANDAR.2013.52.
[5]Shital Bankar, Ajita Dube,Pranali Kadam, Prof. Sunil
Deokule “Plant Disease Detection Techniques Using Canny
Edge Detection & Color Histogram in Image Processing“
,International Journal of Computer Science and Information
Technologies,Vol.5(2),2014,1165-1168.
[6] Dr.K.Thangadurai,K.Padmavathi“ComputerVisionimage
Enhancement For Plant Leaves Disease Detection“,2014
World Congress on Computing and Communication
Technologies, DOI 10.1109/WCCCT.2014.39.
[7]Rajleen Kaur,Dr.Sandeep SinghKang“AnEnhancementin
Classifier Support Vector Machine to Improve Plant Disease
Detection”2015 IEEE 3rd International Conference on
MOOCs, Innovation and Technology in Education (MITE).
Original Contrast
Enhance
Object
Cluster1
Object
Cluster2
Object
Cluster3
Healthy
images
Leaf
blight
Stem
bleedin
g
Red
Palm
weevil
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2485
[8]Sachin D. Khirade, A.B. Patil “Plant Disease Detection
Using Image Processing”, 2015 International Conference on
Computing Communication Control and Automation.
[9]Ani Dath, M.Balakrishnan “Expert System on Coconut
Disease Management and Variety Selection” International
Journal of Advanced Research in Computer Science and
Software Engineering, Volume 6, Issue 3, March 2016.
[10] Yang Zhang, Chenglong Song, Dongwen Zhang “Deep
Learning-based Object Detection Improvement for Tomato
Disease” Hindawi Publishing Corporation Computational
Intelligence and Neuroscience, Volume 2016.
[11] Jayme Garcia Arnal Barbedo, Luciano Vieira
Koenigkan, Thiago Teixeira Santos “Identifying multiple
plant diseases using digital image processing”, ELSEVIER
1537-5110, 2016.
[12]Sujatha R ,Y Sravan Kumar and Garine Uma Akhil “Leaf
disease detection using image processing”,Journal of
Chemical and Pharmaceutical Sciences, March2017.
[13]Malti K. Singh , Subrat Chetia “Detection and
Classification of Plant Leaf Diseases in Image Processing
using MATLAB”, International Journal of Life Sciences
Research,Vol.5,Issue 4,pp120-124),December2017.
[14] Jayme Garcia Arnal Barbedo “Impact of dataset sizeand
variety on the effectiveness of deep learning and transfer
learning for plant disease classification”, ELSEVIER 0168-
1699, August 2018.
[15] Guiling Sun, Xinglong Jia, Tianyu Geng “Plant Diseases
RecognitionBasedonImageProcessingTechnology”,Journal
of Electrical and Computer Engineering, Volume
2018,DOI:10.1155/2018/6070129.
[16] Jayme Garcia Arnal Barbedo “Plant disease
identification from individual lesions and spots using deep
learning” ELSEVIER, 1537-5110, 2019.
[17] Dr. Abraham Chandy “Pest infestation identification in
coconut trees using deep learning”, Journal of Artificial
Intelligence and Capsule Networks (2019),
Vol.01/No.01,DOI:http://doi.org/10.36548/jaicn.2019.1.002
[18]S.Siddesha, S.K.Niranjan. “Detection of Mite Disease and
Computation of AffectedArea inRawCoconut”,International
Journal of Emerging Technologies 11(2):08-12(2020).
[19]Dr.A.Anushya “Identifying Infected Coconut trees via
Classification”, International Journal of Advanced Research
in Computer Science and Electronics
Engineering(IJARCSEE),Volume 9,Issue 2,February 2020.
[20] H.D.Gadade, Dr. D.K.Kirange “Machine Learning Based
Identification of Tomato Leaf Diseases at Various Stages of
Development”, Proceedings of the Fifth International
Conference on Computing Methodologies and
Communication (ICCMC2021).
[21] Shrihari Kallapur, Mahith Hegde, Adithya D. Sanil,
Raghavendra Pai, Sneha NS “Identification of aromatic
coconuts using image processing and machine learning
techniques”, Global Transitions Proceedings,August2021.

More Related Content

Similar to INVESTIGATIONS ON COCONUT TREE DISEASE SEGMENTATION USING INTELLIGENT TECHNIQUES

IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET Journal
 
IRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing MethodIRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing MethodIRJET Journal
 
IJSRED-V2I2P60
IJSRED-V2I2P60IJSRED-V2I2P60
IJSRED-V2I2P60IJSRED
 
Corn plant disease classification based on leaf using residual networks-9 arc...
Corn plant disease classification based on leaf using residual networks-9 arc...Corn plant disease classification based on leaf using residual networks-9 arc...
Corn plant disease classification based on leaf using residual networks-9 arc...IJECEIAES
 
Study on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNStudy on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNIRJET Journal
 
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...IRJET Journal
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation using Interactive liver tumor segmentation using
Interactive liver tumor segmentation using eSAT Journals
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation usingInteractive liver tumor segmentation using
Interactive liver tumor segmentation usingeSAT Publishing House
 
Fruit Classification and Quality Prediction using Deep Learning Methods
Fruit Classification and Quality Prediction using Deep Learning MethodsFruit Classification and Quality Prediction using Deep Learning Methods
Fruit Classification and Quality Prediction using Deep Learning MethodsIRJET Journal
 
IRJET- Plant Disease Detection and Classification using Image Processing a...
IRJET- 	  Plant Disease Detection and Classification using Image Processing a...IRJET- 	  Plant Disease Detection and Classification using Image Processing a...
IRJET- Plant Disease Detection and Classification using Image Processing a...IRJET Journal
 
DEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTIONDEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTIONIRJET Journal
 
AUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEMAUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEMIRJET Journal
 
K-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease DetectionK-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease DetectionIJERA Editor
 
IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...
IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...
IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...IRJET Journal
 
Low Complexity Design for WSN Based Plant Monitoring System
Low Complexity Design for WSN Based Plant Monitoring SystemLow Complexity Design for WSN Based Plant Monitoring System
Low Complexity Design for WSN Based Plant Monitoring SystemIRJET Journal
 
Quantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf DiseaseQuantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf DiseaseIJSRED
 
IDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORK
IDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORKIDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORK
IDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORKIRJET Journal
 
IRJET- Retinal Health Diagnosis using Image Processing
IRJET- Retinal Health Diagnosis using Image ProcessingIRJET- Retinal Health Diagnosis using Image Processing
IRJET- Retinal Health Diagnosis using Image ProcessingIRJET Journal
 
IRJET - Grape Leaf Diseases Classification using Transfer Learning
IRJET - Grape Leaf Diseases Classification using Transfer LearningIRJET - Grape Leaf Diseases Classification using Transfer Learning
IRJET - Grape Leaf Diseases Classification using Transfer LearningIRJET Journal
 
Automated Detection of Diabetic Retinopathy Using Deep Learning
Automated Detection of Diabetic Retinopathy Using Deep LearningAutomated Detection of Diabetic Retinopathy Using Deep Learning
Automated Detection of Diabetic Retinopathy Using Deep LearningIRJET Journal
 

Similar to INVESTIGATIONS ON COCONUT TREE DISEASE SEGMENTATION USING INTELLIGENT TECHNIQUES (20)

IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
 
IRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing MethodIRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing Method
 
IJSRED-V2I2P60
IJSRED-V2I2P60IJSRED-V2I2P60
IJSRED-V2I2P60
 
Corn plant disease classification based on leaf using residual networks-9 arc...
Corn plant disease classification based on leaf using residual networks-9 arc...Corn plant disease classification based on leaf using residual networks-9 arc...
Corn plant disease classification based on leaf using residual networks-9 arc...
 
Study on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNStudy on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNN
 
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation using Interactive liver tumor segmentation using
Interactive liver tumor segmentation using
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation usingInteractive liver tumor segmentation using
Interactive liver tumor segmentation using
 
Fruit Classification and Quality Prediction using Deep Learning Methods
Fruit Classification and Quality Prediction using Deep Learning MethodsFruit Classification and Quality Prediction using Deep Learning Methods
Fruit Classification and Quality Prediction using Deep Learning Methods
 
IRJET- Plant Disease Detection and Classification using Image Processing a...
IRJET- 	  Plant Disease Detection and Classification using Image Processing a...IRJET- 	  Plant Disease Detection and Classification using Image Processing a...
IRJET- Plant Disease Detection and Classification using Image Processing a...
 
DEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTIONDEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTION
 
AUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEMAUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEM
 
K-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease DetectionK-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease Detection
 
IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...
IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...
IRJET- Performance Analysis of Learning Algorithms for Automated Detection of...
 
Low Complexity Design for WSN Based Plant Monitoring System
Low Complexity Design for WSN Based Plant Monitoring SystemLow Complexity Design for WSN Based Plant Monitoring System
Low Complexity Design for WSN Based Plant Monitoring System
 
Quantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf DiseaseQuantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf Disease
 
IDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORK
IDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORKIDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORK
IDENTIFICATION OF INDIAN MEDICINAL PLANT BY USING ARTIFICIAL NEURAL NETWORK
 
IRJET- Retinal Health Diagnosis using Image Processing
IRJET- Retinal Health Diagnosis using Image ProcessingIRJET- Retinal Health Diagnosis using Image Processing
IRJET- Retinal Health Diagnosis using Image Processing
 
IRJET - Grape Leaf Diseases Classification using Transfer Learning
IRJET - Grape Leaf Diseases Classification using Transfer LearningIRJET - Grape Leaf Diseases Classification using Transfer Learning
IRJET - Grape Leaf Diseases Classification using Transfer Learning
 
Automated Detection of Diabetic Retinopathy Using Deep Learning
Automated Detection of Diabetic Retinopathy Using Deep LearningAutomated Detection of Diabetic Retinopathy Using Deep Learning
Automated Detection of Diabetic Retinopathy Using Deep Learning
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 

Recently uploaded (20)

main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 

INVESTIGATIONS ON COCONUT TREE DISEASE SEGMENTATION USING INTELLIGENT TECHNIQUES

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2481 INVESTIGATIONS ON COCONUT TREE DISEASE SEGMENTATION USING INTELLIGENT TECHNIQUES D.ANSALIN JESMI DINISHA1, I.MUTHUMANI2 1Student, Dept. of ECE, GCE, Tirunelveli, Tamil Nadu, India 2Professor, Dept. Of ECE, GCE, Tirunelveli, Tamil Nadu, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Coconut is one of India's most flexible plantation crops. It plays a unique role in Indian culture and heritage. Every portion of the coconut plant can be used for a variety of purposes. Using image processing techniques, this research focuses on detecting problems in coconut trees such as stem bleeding, leaf blight disease, and pest invasion by the redpalm weevil. The segmentationofdiseasedregionsprovidesadvance warning of the disease and increases coconut production. K- Means Clustering and Fuzzy clustering segmentation methods are employed in this paper and clustering areusedtocompute the affected area. Key Words: Stem bleeding, Leaf Blight, Segmentation, K- Means, Fuzzy C-Means. 1. INTRODUCTION Coconut tree (Coco’s nucifera) is the only extant species of the genus Coco’s and belongs to the palm family (Arecaceae). The name "coconut" can refer to the entire coconut palm, the seed, or the fruit, which is a drupe, not a nut, according to botanical classification. After the three indentations on the coconut shell that mimic facial features, the name comes from the Old Portuguese word coco, which means "head" or "skull." They are a cultural emblem of the tropics and can be found in coastal tropical regions. 1.1.1 Plant Coco’s nucifera is a palm that may reach a height of 30 meters (100 feet) and has pinnate leaves that are 60-90 cm (2-3 feet) long. A tall coconut palmtreecanproduceupto 75 fruits per year in fertile soil, although it usually produces less than 30. Coconut palms produce their first fruit in six to ten years with correct care and growing circumstances, requiring 15 to 20 years to reach optimum production. 1.1.2 Fruit The coconut fruit is a drupe, not a real nut, according to botany. It has three layers, same as other fruits: exocarp, mesocarp, and endocarp. The glossy outer skin of the exocarp is yellow-green to yellow-brown in color. The mesocarp is made up of a fibre known as coir, which has a variety of traditional and commercial applications. The coconut's "husk" is made up of the exocarp and mesocarp, while the hard "shell" is made up of the endocarp. 1.2 Major diseases affecting coconut tree  Ganoderma – Basal Stem Rot  But Rot  Leaf Blight  Stem Bleeding  Root(Wilt)Disease  Leaf Rot 1.2.1 Leaf Blight The emergence of yellowish brown small dots on the leaflet is one of the disease's early signs. These spots expand and become grey with time. The spot's periphery turns a dark brown color. During wet seasons, bacterial leaf blight is a devastating disease that affects coconuts. Fig.1: Leaf Blight 1.2.2 Stem Bleeding The exudation of a dark reddish brown liquid from longitudinal fissures in the bark and wounds on the stem, which trickles down for several inches to several feet, is known as stem bleeding. As the diseaseadvances,thelesions spread higher. Fig.2: Stem Bleeding
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2482 1.2.3 Red palm weevil Tunneling in the stem or base of the fronds, leaves with straight edges rather than pointed tips, frass at tunnel entrances, withering and death of the leaves, particularly at the crown. Fig.3: Red palm weevil 2. PROPOSED METHODOLOGY Calculate the segmentation of the affected region of the coconut tree illness from the disease image. By calculating the afflicted area, the stage of the disease can be determined quickly. 2.1 Dataset The images for this project were taken from the TNAU database, which is open to the public. A total of 60 images were chosen for the proposed method's implementation. 2.2 Pre-processing The input images are converted as a suitableformat for the further processing. 2.2.1. Image Enhancement The contrast of the input images is increased by adjusting them. Because the input coconut images were taken on a sunny day, increasing the contrast is necessary for further processing. Lab color space was applied to the RGB images. The same information is converted to a lightness component L* and two color componentsa*and b* in lab. Lightness was created to mimic human vision, which is highly sensitive to green but not so much to blue. Because green color is prevalent in coconut images, the lightening technique makes the green color sensitive. 2.3 Image Segmentation Image segmentation is a technique for breaking down a digital image into subgroups in order to reduce the image's complexity and make future processing or analysis of the image easier. In simple terms, segmentation is the process of assigning labels to pixels. The focus of this research was on K-Means clustering and the Fuzzy C-Means Clustering method. 2.3.1 K-Means Clustering The K-means algorithm is an unsupervised method for separating the interest area from the background. Based on the K-centroids, it clusters or partitions the given data into K-clusters or sections. When you have unlabeled data, the algorithm is used (i.e. data without defined categories or groups). The purpose is to locate specific groups based on some form of data similarity, with K representing the number of groups. The goal of K-Means clustering is to reduce the sum of squared distances between all points and the cluster centre to the smallest possible value. 2.3.1.1 Steps in K-Means Algorithm 1. Determine the number of clusters to be K. 2. Choose the centroids at random among K locations. 3. Assign each data point to the centroids that are closest to it, forming K clusters. 4. Calculate and position each cluster's new centroids. 5. Assign each data point to the new centroids that are closest to it. Figure 4 shows the flow diagram for K-Means Clustering segmentation. Fig.4: Flow Diagram of K-Means Clustering 2.3.2 Fuzzy C Means Segmentation The data must be handled in Fuzzy C-Mean by assigning a partial membership value to each pixel in the image. The fuzzy set's membership value is in the range of 0 to 1. A member of one fuzzy set can also be a member of other fuzzy sets in the same image in fuzzy clustering. When a member function is used to characterise something, it has three basic characteristics. The fuzzy set's core is the full member, Support is the set's non-membership value, and Boundary is the partial membership with a value between 0 and 1. In general, determining whether a pixel belongs to a region is difficult. This is owing to the region's unsharp transitions. 2.3.2.1 Fuzzy c-mean Algorithm steps 1. Calculate the prototype clusters (means). Coconut Tree Images Image Enhancement Clustering Image Calculating the Disease Affected area 2. Calculate the distances between the points. 3. Make changes to the partition matrix.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2483 Figure 5 shows the flow diagram for Fuzzy C-Means Clustering segmentation. Fig.5: Flow Diagram of Fuzzy C-Means Clustering 3. Result Compare the K-Means clustering and the Fuzzy C- Means (FCM) clustering Methods in order to improve the accuracy of the segmentation process. The results of these algorithms were implemented and evaluated with sample images. Terms K-Means Accuracy Fuzzy C-Means Accuracy Leaf Blight 87.5% 90% Stem Bleeding 85% 88% Red Palm Weevil 90% 92% Affected Area Calculation 80% 85% 3.1. K-Means Segmentation Outputs Original Contrast Enhance Object Cluster1 Object Cluster2 Object Cluster3 Healthy Leaf blight Stem bleeding Redpalm weevil Coconut Tree Image Image Enhancement Clustering Image Calculating the Disease Affected area
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2484 3.2 Fuzzy C-Means Segmentation outputs 4. Conclusion The disease of the coconut tree, such as stem bleeding, leaf blight disease, and pest infection by the Red palm weevil, were segmented in this study. For testing, a total of roughly 60 images were taken from the publically available TNAU, both normal and disease-affected images. The disease-affected area regions were segmented from the total image using the K-Means segmentation technique. The disease-affected area is also computed using K-means. To improve the segmentation outcome, Fuzzy C Means segmentation was employed to increase the number of iterations and clusters. MATLAB 2018a was usedtoproduce the above segmentation. The disease-affected region was also segmented and the disease-affected area wasestimated using these segmentations. REFERENCES [1] P.Balamurugan, R.Rajesh, “Neural Network BasedSystem for the Classification of Leaf Rot Disease in Cocos Nucifera Tree Leaves”, European Journal of Scientific Research, ISSN 1450-216X Vol.88 No 1 October, 2012, pp.137-145. [2]P.Revathi, M.Hemalatha, “Classification of Cotton Leaf Spot Diseases Using Image Processing Edge Detection Techniques”, International Conference on Emerging Trends in Science Engineering and Technology, ISBN: 978-1-4673- 5144-7/12, 2012. [3] Sanjay B. Dhaygude, Mr.Nitin, P.Kumbhar, “Agricultural plant Leaf Disease Detection Using Image Processing”, International Journal of Advanced ResearchinElectrical and Intrumentation Engineering Vol.2, Issue 1, January2013. [4]RongZhou, Shun’ichi Kaneko, Fumio Tanaka, Miyuki Kayamori, Motoshige Shimizu “Early Detection and Continuous Quantization of Plant Disease Using Template Matching and SupportVectorMachineAlgorithm”,2013First International Symbosium on Computing and Networking DOI 10.1109/CANDAR.2013.52. [5]Shital Bankar, Ajita Dube,Pranali Kadam, Prof. Sunil Deokule “Plant Disease Detection Techniques Using Canny Edge Detection & Color Histogram in Image Processing“ ,International Journal of Computer Science and Information Technologies,Vol.5(2),2014,1165-1168. [6] Dr.K.Thangadurai,K.Padmavathi“ComputerVisionimage Enhancement For Plant Leaves Disease Detection“,2014 World Congress on Computing and Communication Technologies, DOI 10.1109/WCCCT.2014.39. [7]Rajleen Kaur,Dr.Sandeep SinghKang“AnEnhancementin Classifier Support Vector Machine to Improve Plant Disease Detection”2015 IEEE 3rd International Conference on MOOCs, Innovation and Technology in Education (MITE). Original Contrast Enhance Object Cluster1 Object Cluster2 Object Cluster3 Healthy images Leaf blight Stem bleedin g Red Palm weevil
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2485 [8]Sachin D. Khirade, A.B. Patil “Plant Disease Detection Using Image Processing”, 2015 International Conference on Computing Communication Control and Automation. [9]Ani Dath, M.Balakrishnan “Expert System on Coconut Disease Management and Variety Selection” International Journal of Advanced Research in Computer Science and Software Engineering, Volume 6, Issue 3, March 2016. [10] Yang Zhang, Chenglong Song, Dongwen Zhang “Deep Learning-based Object Detection Improvement for Tomato Disease” Hindawi Publishing Corporation Computational Intelligence and Neuroscience, Volume 2016. [11] Jayme Garcia Arnal Barbedo, Luciano Vieira Koenigkan, Thiago Teixeira Santos “Identifying multiple plant diseases using digital image processing”, ELSEVIER 1537-5110, 2016. [12]Sujatha R ,Y Sravan Kumar and Garine Uma Akhil “Leaf disease detection using image processing”,Journal of Chemical and Pharmaceutical Sciences, March2017. [13]Malti K. Singh , Subrat Chetia “Detection and Classification of Plant Leaf Diseases in Image Processing using MATLAB”, International Journal of Life Sciences Research,Vol.5,Issue 4,pp120-124),December2017. [14] Jayme Garcia Arnal Barbedo “Impact of dataset sizeand variety on the effectiveness of deep learning and transfer learning for plant disease classification”, ELSEVIER 0168- 1699, August 2018. [15] Guiling Sun, Xinglong Jia, Tianyu Geng “Plant Diseases RecognitionBasedonImageProcessingTechnology”,Journal of Electrical and Computer Engineering, Volume 2018,DOI:10.1155/2018/6070129. [16] Jayme Garcia Arnal Barbedo “Plant disease identification from individual lesions and spots using deep learning” ELSEVIER, 1537-5110, 2019. [17] Dr. Abraham Chandy “Pest infestation identification in coconut trees using deep learning”, Journal of Artificial Intelligence and Capsule Networks (2019), Vol.01/No.01,DOI:http://doi.org/10.36548/jaicn.2019.1.002 [18]S.Siddesha, S.K.Niranjan. “Detection of Mite Disease and Computation of AffectedArea inRawCoconut”,International Journal of Emerging Technologies 11(2):08-12(2020). [19]Dr.A.Anushya “Identifying Infected Coconut trees via Classification”, International Journal of Advanced Research in Computer Science and Electronics Engineering(IJARCSEE),Volume 9,Issue 2,February 2020. [20] H.D.Gadade, Dr. D.K.Kirange “Machine Learning Based Identification of Tomato Leaf Diseases at Various Stages of Development”, Proceedings of the Fifth International Conference on Computing Methodologies and Communication (ICCMC2021). [21] Shrihari Kallapur, Mahith Hegde, Adithya D. Sanil, Raghavendra Pai, Sneha NS “Identification of aromatic coconuts using image processing and machine learning techniques”, Global Transitions Proceedings,August2021.