SlideShare a Scribd company logo
1 of 6
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5352
Plant Disease Detection using ML and UAV
Manpreet Sandhu 1, Pratik Hadawale2, Saumaan Momin3, Prof. Ajitkumar Khachane 4
1,2,3Department of Information Technology Engineering, Vidyalankar Institute of Technology, Mumbai
4Associate Professor, Department of Information Technology Engineering, Vidyalankar Institute of Technology,
Mumbai
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - Agriculture serves as the primary source of food
in India, and it predominantly affects the economy ofIndia. To
increase the productivity of cultivated plants, early detection
of diseases is very important so that all other crops remain
uninfected. The manual detection of disease realistically is an
extremely challenging task. We can apply machine learning
algorithms to develop a system that correctly identifies
diseases in leaves. This will typicallyassist farmerstominimize
crop failure and accurately identify the infections in plants
more precisely and effortlessly. This paper is concerned with
the development of an automated system that can
automatically detect disease using leaf image classification.
We can utilize ML to automatically findthechangesincoloror
the existence of spots or rotten areas in the plant leaf.
Furthermore, in this system, we also automate the process of
capturing images of the leaves using an unmanned aerial
vehicle(UAV) with a camera that automatically captures the
images.
Key Words: plant disease detection, Neural network,
Drone, AutoML, UAV, Automatic image capturing
1. INTRODUCTION
In developing countries like India, the economy mainly
depends on agriculture. In India, agriculture is the principal
source of food as well as the primary source of income for
farmers. Hence, a loss of cultivated crops due to a disease
would indeed imply a significant loss of income for the
farmers and if this happens on a massive scale, then it will
lead to the scarcity of food. Agriculture also serves as a
solution to many environmental problems and provides
habitats, preserves the ecosystem and as well plays a role in
the water cycle.
Plant diseases drastically reduce the quality and quantity
of crops which destroys the potential benefits of agriculture.
Reducing yield loss to diseaseswill typicallyallowfarmersto
produce food more efficiently, benefiting the agricultural
industry and the environment. Plant diseases are extremely
important to be detected and properly cured at an initial
stage else, the uncured disease might affect the entire farm
and ruin it.
Currently, farmers have to carefully analyze each and
every crop periodically to detect diseases, which is an
extremely challenging and time-consuming task (notably
when the number of crops is enormous).
If we can automate the process, then this will yield
massive benefits for the farmer. Hence, our mainobjective is
to reduce the human effort and increase the accuracy to
detect the disease and eliminate the traditional method of
visiting the farm for identifying diseases by developing an
automated system for the same.
2. Literature Survey
This section describes the variousmethodsused byothers to
detect plant diseases
Vijai Singh, A.K. Mishra... [1] Here, weseetheapplicationof
image processing and Genetic algorithm for the detection of
plant diseases. Image processing is used for pre-processing
of the image which includes removing distortion from the
image, clipping the image, image smoothing. Then green
pixels are masked. After this, image segmentation is done
using clustering and Genetic algorithms. Then,theminimum
distance criterion and SVM is used to do the classification.
Anandhakrishnan MG Joel Hanson, Annette Joy, Jerin
Francis... [2] In this, a dataset is createdfortraininga neural
network for image classification. The images for the dataset
were downloaded from the internet. To get better feature
extraction, image preprocessing was done which included
noise removal,intensitynormalization,removingreflections,
and masking portions of the image. Then using these
processed images, a deep convolutional neural network
model was trained to classify the images. Tensor Flow
software library was used for numerical computations.
Saradhambal.G, Dhivya.R, Latha.S, R.Rajesh... [3] In this
system, they included a voice navigation system so a person
with less expertise will also be able to use the software. In
this system, images of various diseasesareacquiredfrom the
public repository. After the acquisition of the image, the
noise in the image is eliminated, so that the quality of the
image is enhanced. After this, image segmentation and
clustering are performed using the Otsu classifier and k-
means clustering algorithm. The last step is feature
extraction. Here, the shape oriented features likeArea,Color
axis length, eccentricity, solidity, and perimeter and texture
oriented feature extraction likecontrast,correlation,energy,
homogeneity and mean are found.
S. Batmavady, S. Samundeeswari... [4] Inputtothissystem
is cotton leaf images that are acquired from the village plant
dataset which is available on the internet. The first step
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5353
includes conversion of the images to grayscale which is then
used for noise removal. Then enhancement of the image is
done using histogram enhancement and then using
morphological process. After this, segmentation is
performed to segment theinfected partusingFuzzyC-Means
algorithm. Feature extractionisperformedonthesegmented
image, and then these features areinputtotheSVMclassifier
and proposed RBF neural network classifier.
3. Proposed System
The project is divided into two parts:
a) Building a UAV (unmanned aerial vehicle ordrone).
b) Training a neural network model for the prediction
of plant diseases.
3.1 Building a UAV
The first part involves building a UAV and attaching a
camera to it so that it can be used to get images of plants in
real-time. The UAV should be capable of flying missions by
giving the appropriate commands and GPSco-ordinates, it
can automatically survey the whole farm. The drone will be
used to capture images of the specified area.
A Quadcopter or Hexacopter will be suitable for such
missions. Below is the explanation of components of the
quadcopter drone.
The setup
The quadcopter itself has two main components:
a) flight components (stuff required to fly) and
b) radio gear (network components).
The ground station is also divided into two main parts:
a) radio gear and
b) monitoring (for mission planning and monitoring)
equipment.
Radio gear
It uses a network of Wi-Fi cards in “monitor mode” to obtain
a bi-directional UDP style stream.
It is used for RC control, video downlink and telemetry
downlink
Ground station
The ground station uses three Wi-Fi cards connected to a
raspberry pi in a “diversity” configuration.
Here packets from the quadcopter are receivedbyall theWi-
Fi-cards simultaneously, so if a bad packet is received it can
be replaced by the packet from another Wi-Fi card.
Below are some of the images of the ground station:
Fig -1(a): Side view of the ground station
Fig -1(b): Top view of the ground station
Network components on the drone
On the quadcopter, we have a raspberry pi 3 a+ (a smaller
version of the raspberry pi 3), an8mp Sonycameraanda Wi-
Fi card. The UART from the raspberry pi is connected to the
flight controller to receive and transmit critical flight data.
The camera feed obtained from the camera is compressed
and sent to the ground station.
Throughout the software, care is taken to reduce latency as
much as possible. We were able to achieve a video latency of
about 80-120 milliseconds in ideal conditions.
The software used for this purpose is OpenHd.
Quadcopter hardware
It uses 4 brushless motors alongwitha 30Amp(perchannel)
4 in 1 Electronic speed controller to interface the brushless
motors with a flight computer.
The flight computer (also known as a flight controller) has
built-in sensors necessary for flight.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5354
It has an onboard gyroscope and accelerometer (to tell its
orientation in space) and a barometer detects its altitude.
For autonomous navigation, external GPSandcompasswere
added.
Quadcopter software
The flight controller on the quadcopter runs a software
called Ardupilot. This is an open-source flight control
software specially engineered for autonomous vehicles. It
supports waypoint missions, remote mission planning,
Blackbox logging, mission simulation among many other
tasks.
Below are some images of the drone:
Fig -2(a): Top view of drone
Fig -2(b): Side view of drone
3.2 Training a neural network model for the prediction
of plant diseases.
The second part involves the training of a neural network
model. The images required for training the model aretaken
from the datasets that are easily available on the internet.
The dataset available is preprocessed and then it is used to
train the neural network.
There are two ways in which the dataset can be used for
training. If the dataset is big enough then the model can be
directly trained. Alternatively, if the number of images in a
dataset is limited, then augmentation can be performed
which includes rotating,shifting,zooming,flippingtheimage
to create new data for training.
Many neural network architectures can be used to train a
neural network. We have used two different
models/architectures for prediction which are Google's
AutoML and Inception_v3. Inception_v3 is a widely used
model for image classification, andithasa fixedarchitecture.
Instead of creating a very deep neural network,Inception_v3
uses a wider network with less depth. On the other hand,
AutoML doesn't have a fixed architecture, and it uses a
Neural Architecture Search (NAS). NAS is a technique used
for automating the process of designing/searching the best
neural network architecture that fits our data.
Below is a basic flowchart for training the model:
Fig -3: Flowchart for training the model
The images of plants taken by the UAV are appropriately
cropped and the cropped images serve as an input to the
neural network model which then predicts the disease if
present in the plant.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5355
Below is a flowchart of how the entire system works:
Fig -4: Flowchart of working of the entire system
Additionally, we require an external camera to be attached
to the drone that can capture images of the crops. But there
are some issues while capturing images which are:
 The drone flies at a certain height from the ground
level. Therefore, we require a camera thatcanretainall
the pixels of the leaf image properly after the image is
captured from the specified height.
 The drone is in motion, so if we capture images, we
might get blurred images.
To overcome the above challenges, we need an external
camera with some properties or requirements as stated
below:
 The camera should have high resolution and should be
capable to provide optical zoom so that the image of
the leaf is clear, and no information about the pixels of
the image is lost.
 The shutter speed of the camera must be adjustable.
This will help us to reduce motion blur.
We have taken a sample output of the implemented neural
network. For this, we have taken images of leaves from the
internet which serve as an input to the model. Below are
some screenshots of the output.
Fig -5(a): Input to the model trained using InceptionV3
Fig -5(b): Output given by model trained using
InceptionV3
The image in Fig -5(a) is used as an input to model trained
using inceptionV3andFig-5(b)representsitscorresponding
output. In the output, we get the name of the disease along
with its probability which is indicated as a score in Fig -5(b).
The output model trained using AutoML wascheckedontwo
different sample inputs.
Fig -6(a): Input1 to model trained using AutoML
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5356
Fig -6(b): Output1 given by model trained using AutoML
Fig 7(a): Input2 to model trained using AutoML
Fig 7(b): Output2 given by model trained using AutoML
The images of leaf as shown in Fig -6(a) and Fig -7(a) were
given as input to the model trained using AutoML. These
images were given as input without the bounding boxes.The
trained model detects diseases in leaves and draws a
bounding box at the location of each disease in the leaf. Also,
disease present in the corresponding bounding box is
displayed as an output along with the probability of disease
as shown in Fig -6(b) and Fig -7(b)
4. Observations
We split the dataset for train and test data. We trained both
the models by keeping all the input parameters (images,
number of images, species of plants) constant for both the
models. After training was complete, we tested the models
on the test data. The images for testing were directly taken
from the internet. By testing model trained by inception_v3,
we got an accuracy of 92% and by testing the model trained
by Google's AutoML, we have achieved an accuracy of 94%.
When we test the models using the images captured using
the drone, the accuracy reduces drasticallyduetothequality
of the image.
5. CONCLUSIONS
The proposed system allows theuserstoautomatetheentire
process of plant disease detection thus reducing the
difficulties that the farmers face while growing crops and
saving their time. We have achieved good accuracy in the
prediction of plant diseases. The model trained using
AutoML delivers a better accuracy as comparedtothe model
trained by using the Inception_v3 architecture.
Although this method can be pretty effective for disease
detection in plants, but there is a veryimportantchallenge in
designing this system, which is capturing the images using
the camera and drone. The challenge is to get a high-
resolution image of the plant leaf for which we need a
camera with proper shutter speed, optical zoom, and a high
resolution. We need to look at various parameters to make
this system perfect.
 Before training the model, we can use some clustering
algorithms to extract the infectedpartoftheleafanduse
these features to train the model.
 We can create and use a datasetofmulti-spectral images
to create the model, andthen usemulti-spectralcameras
on drones for capturing images.
REFERENCES
[1] Vijai Singh, A.K. Mishra, "Detection of plant leaf diseases
using image segmentation and soft computing
techniques", Information Processing in Agriculture
Volume 4, Issue 1, March 2017
6. Future Scope
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5357
[2] Anandhakrishnan MG Joel Hanson, Annette Joy, Jerin
Francis, "Plant Leaf Disease Detection using Deep
Learning and Convolutional Neural Network",
International Journal of Engineering Science and
Computing, Volume 7, Issue No.3, March 2017.
[3] Saradhambal.G, Dhivya.R, Latha.S, R.Rajesh, "Plant
Disease Detection And Its Solution Using Image
Classification",International Journal ofPureandApplied
Mathematics, ISSN: 1314-3395, Volume 119 No. 14,
2018
[4] S. Batmavady, S. Samundeeswari, "Detection of Cotton
Leaf Diseases Using Image Processing", International
Journal of Recent Technology and Engineering (IJRTE)
ISSN: 2277-3878, Volume-8 Issue-2S4, July 2019

More Related Content

What's hot

Volume 2-issue-6-1974-1978
Volume 2-issue-6-1974-1978Volume 2-issue-6-1974-1978
Volume 2-issue-6-1974-1978
Editor IJARCET
 
Zigbee based smart fall detection and notification system with wearable senso...
Zigbee based smart fall detection and notification system with wearable senso...Zigbee based smart fall detection and notification system with wearable senso...
Zigbee based smart fall detection and notification system with wearable senso...
eSAT Journals
 

What's hot (20)

IRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image ProcessingIRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image Processing
 
IRJET- Digital Identification for Humanoids
IRJET-  	  Digital Identification for HumanoidsIRJET-  	  Digital Identification for Humanoids
IRJET- Digital Identification for Humanoids
 
Volume 2-issue-6-1974-1978
Volume 2-issue-6-1974-1978Volume 2-issue-6-1974-1978
Volume 2-issue-6-1974-1978
 
Iaetsd a low power and high throughput re-configurable bip for multipurpose a...
Iaetsd a low power and high throughput re-configurable bip for multipurpose a...Iaetsd a low power and high throughput re-configurable bip for multipurpose a...
Iaetsd a low power and high throughput re-configurable bip for multipurpose a...
 
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
 
Ingerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parentsIngerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parents
 
IRJET- Recognition of Plants using Leaf Image with Neural Network and Com...
IRJET-  	  Recognition of Plants using Leaf Image with Neural Network and Com...IRJET-  	  Recognition of Plants using Leaf Image with Neural Network and Com...
IRJET- Recognition of Plants using Leaf Image with Neural Network and Com...
 
Object Tracking System Using Motion Detection and Sound Detection
Object Tracking System Using Motion Detection and Sound DetectionObject Tracking System Using Motion Detection and Sound Detection
Object Tracking System Using Motion Detection and Sound Detection
 
Using Learning Vector Quantization in IDS Alert Management System
Using Learning Vector Quantization in IDS Alert Management SystemUsing Learning Vector Quantization in IDS Alert Management System
Using Learning Vector Quantization in IDS Alert Management System
 
S0102297102
S0102297102S0102297102
S0102297102
 
IRJET- Warehouse Management using Iot
IRJET-  	  Warehouse Management using IotIRJET-  	  Warehouse Management using Iot
IRJET- Warehouse Management using Iot
 
IRJET - A Cascade Classifier based Approach on Enhanced Safety of Motorcy...
IRJET -  	  A Cascade Classifier based Approach on Enhanced Safety of Motorcy...IRJET -  	  A Cascade Classifier based Approach on Enhanced Safety of Motorcy...
IRJET - A Cascade Classifier based Approach on Enhanced Safety of Motorcy...
 
Recognition of Silverleaf Whitefly and Western Flower Thrips Via Image Proces...
Recognition of Silverleaf Whitefly and Western Flower Thrips Via Image Proces...Recognition of Silverleaf Whitefly and Western Flower Thrips Via Image Proces...
Recognition of Silverleaf Whitefly and Western Flower Thrips Via Image Proces...
 
Simulink model for automatic detection and counting of the number of white fl...
Simulink model for automatic detection and counting of the number of white fl...Simulink model for automatic detection and counting of the number of white fl...
Simulink model for automatic detection and counting of the number of white fl...
 
Secured Spy for Highly Secured Areas
Secured Spy for Highly Secured AreasSecured Spy for Highly Secured Areas
Secured Spy for Highly Secured Areas
 
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
 
Zigbee based smart fall detection and notification
Zigbee based smart fall detection and notificationZigbee based smart fall detection and notification
Zigbee based smart fall detection and notification
 
Zigbee based smart fall detection and notification system with wearable senso...
Zigbee based smart fall detection and notification system with wearable senso...Zigbee based smart fall detection and notification system with wearable senso...
Zigbee based smart fall detection and notification system with wearable senso...
 
Human Motion Detection in Video Surveillance using Computer Vision Technique
Human Motion Detection in Video Surveillance using Computer Vision TechniqueHuman Motion Detection in Video Surveillance using Computer Vision Technique
Human Motion Detection in Video Surveillance using Computer Vision Technique
 
IRJET- Moving Object Detection with Shadow Compression using Foreground Segme...
IRJET- Moving Object Detection with Shadow Compression using Foreground Segme...IRJET- Moving Object Detection with Shadow Compression using Foreground Segme...
IRJET- Moving Object Detection with Shadow Compression using Foreground Segme...
 

Similar to IRJET - Plant Disease Detection using ML and UAV

Similar to IRJET - Plant Disease Detection using ML and UAV (20)

IRJET - Disease Detection in Plant using Machine Learning
IRJET -  	  Disease Detection in Plant using Machine LearningIRJET -  	  Disease Detection in Plant using Machine Learning
IRJET - Disease Detection in Plant using Machine Learning
 
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
 
IRJET- Analysis of Predicting Diseases for Smart Croping
IRJET- Analysis of Predicting Diseases for Smart CropingIRJET- Analysis of Predicting Diseases for Smart Croping
IRJET- Analysis of Predicting Diseases for Smart Croping
 
Artificial Intelligence In Agriculture: Crop Disease Detection And Monitoring...
Artificial Intelligence In Agriculture: Crop Disease Detection And Monitoring...Artificial Intelligence In Agriculture: Crop Disease Detection And Monitoring...
Artificial Intelligence In Agriculture: Crop Disease Detection And Monitoring...
 
Autonomous Eye
Autonomous EyeAutonomous Eye
Autonomous Eye
 
Ladies Compartment Intruder Alert
Ladies Compartment Intruder AlertLadies Compartment Intruder Alert
Ladies Compartment Intruder Alert
 
IRJET - Automatic Methods for Classi?cation of Plant Diseases using Back...
IRJET  -  	  Automatic Methods for Classi?cation of Plant Diseases using Back...IRJET  -  	  Automatic Methods for Classi?cation of Plant Diseases using Back...
IRJET - Automatic Methods for Classi?cation of Plant Diseases using Back...
 
IRJET - Biometric Identification using Gait Analyis by Deep Learning
IRJET -  	  Biometric Identification using Gait Analyis by Deep LearningIRJET -  	  Biometric Identification using Gait Analyis by Deep Learning
IRJET - Biometric Identification using Gait Analyis by Deep Learning
 
IRJET - Gesture Controlled Home Automation using CNN
IRJET -  	  Gesture Controlled Home Automation using CNNIRJET -  	  Gesture Controlled Home Automation using CNN
IRJET - Gesture Controlled Home Automation using CNN
 
IRJET - Driver Monitoring System
IRJET - Driver Monitoring SystemIRJET - Driver Monitoring System
IRJET - Driver Monitoring System
 
IRJET-5G Mobile Technology
IRJET-5G Mobile TechnologyIRJET-5G Mobile Technology
IRJET-5G Mobile Technology
 
IRJET- IoT Based Crop Growth Detection and Irrigation System using Raspberry PI
IRJET- IoT Based Crop Growth Detection and Irrigation System using Raspberry PIIRJET- IoT Based Crop Growth Detection and Irrigation System using Raspberry PI
IRJET- IoT Based Crop Growth Detection and Irrigation System using Raspberry PI
 
IRJET- IoT Based Crop Growth Detection and Irrigation System using Raspbe...
IRJET-  	  IoT Based Crop Growth Detection and Irrigation System using Raspbe...IRJET-  	  IoT Based Crop Growth Detection and Irrigation System using Raspbe...
IRJET- IoT Based Crop Growth Detection and Irrigation System using Raspbe...
 
SURVEY PAPER ON CROP DISEASE NOTIFICATION SYSTEM
SURVEY PAPER ON CROP DISEASE NOTIFICATION SYSTEMSURVEY PAPER ON CROP DISEASE NOTIFICATION SYSTEM
SURVEY PAPER ON CROP DISEASE NOTIFICATION SYSTEM
 
IRJET - Examination Forgery Avoidance System using Image Processing and IoT
IRJET - Examination Forgery Avoidance System using Image Processing and IoTIRJET - Examination Forgery Avoidance System using Image Processing and IoT
IRJET - Examination Forgery Avoidance System using Image Processing and IoT
 
IRJET - Road Condition Improvement in Smart Cities using IoT
IRJET - Road Condition Improvement in Smart Cities using IoTIRJET - Road Condition Improvement in Smart Cities using IoT
IRJET - Road Condition Improvement in Smart Cities using IoT
 
IRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: SurveyIRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: Survey
 
A Review on Internet of Things (IoT) in Agriculture: Benefits, Challenges and...
A Review on Internet of Things (IoT) in Agriculture: Benefits, Challenges and...A Review on Internet of Things (IoT) in Agriculture: Benefits, Challenges and...
A Review on Internet of Things (IoT) in Agriculture: Benefits, Challenges and...
 
IRJET- Collision Avoidance based on Obstacle Detection using OpenCV
IRJET-  	  Collision Avoidance based on Obstacle Detection using OpenCVIRJET-  	  Collision Avoidance based on Obstacle Detection using OpenCV
IRJET- Collision Avoidance based on Obstacle Detection using OpenCV
 
IRJET-Intelligent Farms
IRJET-Intelligent FarmsIRJET-Intelligent Farms
IRJET-Intelligent Farms
 

More from 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

1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
AldoGarca30
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
pritamlangde
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
jaanualu31
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 

Recently uploaded (20)

HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
 
Passive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.pptPassive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.ppt
 
fitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .pptfitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .ppt
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
Databricks Generative AI Fundamentals .pdf
Databricks Generative AI Fundamentals  .pdfDatabricks Generative AI Fundamentals  .pdf
Databricks Generative AI Fundamentals .pdf
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information Systems
 
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
 
Adsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) pptAdsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) ppt
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To Curves
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Signal Processing and Linear System Analysis
Signal Processing and Linear System AnalysisSignal Processing and Linear System Analysis
Signal Processing and Linear System Analysis
 

IRJET - Plant Disease Detection using ML and UAV

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5352 Plant Disease Detection using ML and UAV Manpreet Sandhu 1, Pratik Hadawale2, Saumaan Momin3, Prof. Ajitkumar Khachane 4 1,2,3Department of Information Technology Engineering, Vidyalankar Institute of Technology, Mumbai 4Associate Professor, Department of Information Technology Engineering, Vidyalankar Institute of Technology, Mumbai ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - Agriculture serves as the primary source of food in India, and it predominantly affects the economy ofIndia. To increase the productivity of cultivated plants, early detection of diseases is very important so that all other crops remain uninfected. The manual detection of disease realistically is an extremely challenging task. We can apply machine learning algorithms to develop a system that correctly identifies diseases in leaves. This will typicallyassist farmerstominimize crop failure and accurately identify the infections in plants more precisely and effortlessly. This paper is concerned with the development of an automated system that can automatically detect disease using leaf image classification. We can utilize ML to automatically findthechangesincoloror the existence of spots or rotten areas in the plant leaf. Furthermore, in this system, we also automate the process of capturing images of the leaves using an unmanned aerial vehicle(UAV) with a camera that automatically captures the images. Key Words: plant disease detection, Neural network, Drone, AutoML, UAV, Automatic image capturing 1. INTRODUCTION In developing countries like India, the economy mainly depends on agriculture. In India, agriculture is the principal source of food as well as the primary source of income for farmers. Hence, a loss of cultivated crops due to a disease would indeed imply a significant loss of income for the farmers and if this happens on a massive scale, then it will lead to the scarcity of food. Agriculture also serves as a solution to many environmental problems and provides habitats, preserves the ecosystem and as well plays a role in the water cycle. Plant diseases drastically reduce the quality and quantity of crops which destroys the potential benefits of agriculture. Reducing yield loss to diseaseswill typicallyallowfarmersto produce food more efficiently, benefiting the agricultural industry and the environment. Plant diseases are extremely important to be detected and properly cured at an initial stage else, the uncured disease might affect the entire farm and ruin it. Currently, farmers have to carefully analyze each and every crop periodically to detect diseases, which is an extremely challenging and time-consuming task (notably when the number of crops is enormous). If we can automate the process, then this will yield massive benefits for the farmer. Hence, our mainobjective is to reduce the human effort and increase the accuracy to detect the disease and eliminate the traditional method of visiting the farm for identifying diseases by developing an automated system for the same. 2. Literature Survey This section describes the variousmethodsused byothers to detect plant diseases Vijai Singh, A.K. Mishra... [1] Here, weseetheapplicationof image processing and Genetic algorithm for the detection of plant diseases. Image processing is used for pre-processing of the image which includes removing distortion from the image, clipping the image, image smoothing. Then green pixels are masked. After this, image segmentation is done using clustering and Genetic algorithms. Then,theminimum distance criterion and SVM is used to do the classification. Anandhakrishnan MG Joel Hanson, Annette Joy, Jerin Francis... [2] In this, a dataset is createdfortraininga neural network for image classification. The images for the dataset were downloaded from the internet. To get better feature extraction, image preprocessing was done which included noise removal,intensitynormalization,removingreflections, and masking portions of the image. Then using these processed images, a deep convolutional neural network model was trained to classify the images. Tensor Flow software library was used for numerical computations. Saradhambal.G, Dhivya.R, Latha.S, R.Rajesh... [3] In this system, they included a voice navigation system so a person with less expertise will also be able to use the software. In this system, images of various diseasesareacquiredfrom the public repository. After the acquisition of the image, the noise in the image is eliminated, so that the quality of the image is enhanced. After this, image segmentation and clustering are performed using the Otsu classifier and k- means clustering algorithm. The last step is feature extraction. Here, the shape oriented features likeArea,Color axis length, eccentricity, solidity, and perimeter and texture oriented feature extraction likecontrast,correlation,energy, homogeneity and mean are found. S. Batmavady, S. Samundeeswari... [4] Inputtothissystem is cotton leaf images that are acquired from the village plant dataset which is available on the internet. The first step
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5353 includes conversion of the images to grayscale which is then used for noise removal. Then enhancement of the image is done using histogram enhancement and then using morphological process. After this, segmentation is performed to segment theinfected partusingFuzzyC-Means algorithm. Feature extractionisperformedonthesegmented image, and then these features areinputtotheSVMclassifier and proposed RBF neural network classifier. 3. Proposed System The project is divided into two parts: a) Building a UAV (unmanned aerial vehicle ordrone). b) Training a neural network model for the prediction of plant diseases. 3.1 Building a UAV The first part involves building a UAV and attaching a camera to it so that it can be used to get images of plants in real-time. The UAV should be capable of flying missions by giving the appropriate commands and GPSco-ordinates, it can automatically survey the whole farm. The drone will be used to capture images of the specified area. A Quadcopter or Hexacopter will be suitable for such missions. Below is the explanation of components of the quadcopter drone. The setup The quadcopter itself has two main components: a) flight components (stuff required to fly) and b) radio gear (network components). The ground station is also divided into two main parts: a) radio gear and b) monitoring (for mission planning and monitoring) equipment. Radio gear It uses a network of Wi-Fi cards in “monitor mode” to obtain a bi-directional UDP style stream. It is used for RC control, video downlink and telemetry downlink Ground station The ground station uses three Wi-Fi cards connected to a raspberry pi in a “diversity” configuration. Here packets from the quadcopter are receivedbyall theWi- Fi-cards simultaneously, so if a bad packet is received it can be replaced by the packet from another Wi-Fi card. Below are some of the images of the ground station: Fig -1(a): Side view of the ground station Fig -1(b): Top view of the ground station Network components on the drone On the quadcopter, we have a raspberry pi 3 a+ (a smaller version of the raspberry pi 3), an8mp Sonycameraanda Wi- Fi card. The UART from the raspberry pi is connected to the flight controller to receive and transmit critical flight data. The camera feed obtained from the camera is compressed and sent to the ground station. Throughout the software, care is taken to reduce latency as much as possible. We were able to achieve a video latency of about 80-120 milliseconds in ideal conditions. The software used for this purpose is OpenHd. Quadcopter hardware It uses 4 brushless motors alongwitha 30Amp(perchannel) 4 in 1 Electronic speed controller to interface the brushless motors with a flight computer. The flight computer (also known as a flight controller) has built-in sensors necessary for flight.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5354 It has an onboard gyroscope and accelerometer (to tell its orientation in space) and a barometer detects its altitude. For autonomous navigation, external GPSandcompasswere added. Quadcopter software The flight controller on the quadcopter runs a software called Ardupilot. This is an open-source flight control software specially engineered for autonomous vehicles. It supports waypoint missions, remote mission planning, Blackbox logging, mission simulation among many other tasks. Below are some images of the drone: Fig -2(a): Top view of drone Fig -2(b): Side view of drone 3.2 Training a neural network model for the prediction of plant diseases. The second part involves the training of a neural network model. The images required for training the model aretaken from the datasets that are easily available on the internet. The dataset available is preprocessed and then it is used to train the neural network. There are two ways in which the dataset can be used for training. If the dataset is big enough then the model can be directly trained. Alternatively, if the number of images in a dataset is limited, then augmentation can be performed which includes rotating,shifting,zooming,flippingtheimage to create new data for training. Many neural network architectures can be used to train a neural network. We have used two different models/architectures for prediction which are Google's AutoML and Inception_v3. Inception_v3 is a widely used model for image classification, andithasa fixedarchitecture. Instead of creating a very deep neural network,Inception_v3 uses a wider network with less depth. On the other hand, AutoML doesn't have a fixed architecture, and it uses a Neural Architecture Search (NAS). NAS is a technique used for automating the process of designing/searching the best neural network architecture that fits our data. Below is a basic flowchart for training the model: Fig -3: Flowchart for training the model The images of plants taken by the UAV are appropriately cropped and the cropped images serve as an input to the neural network model which then predicts the disease if present in the plant.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5355 Below is a flowchart of how the entire system works: Fig -4: Flowchart of working of the entire system Additionally, we require an external camera to be attached to the drone that can capture images of the crops. But there are some issues while capturing images which are:  The drone flies at a certain height from the ground level. Therefore, we require a camera thatcanretainall the pixels of the leaf image properly after the image is captured from the specified height.  The drone is in motion, so if we capture images, we might get blurred images. To overcome the above challenges, we need an external camera with some properties or requirements as stated below:  The camera should have high resolution and should be capable to provide optical zoom so that the image of the leaf is clear, and no information about the pixels of the image is lost.  The shutter speed of the camera must be adjustable. This will help us to reduce motion blur. We have taken a sample output of the implemented neural network. For this, we have taken images of leaves from the internet which serve as an input to the model. Below are some screenshots of the output. Fig -5(a): Input to the model trained using InceptionV3 Fig -5(b): Output given by model trained using InceptionV3 The image in Fig -5(a) is used as an input to model trained using inceptionV3andFig-5(b)representsitscorresponding output. In the output, we get the name of the disease along with its probability which is indicated as a score in Fig -5(b). The output model trained using AutoML wascheckedontwo different sample inputs. Fig -6(a): Input1 to model trained using AutoML
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5356 Fig -6(b): Output1 given by model trained using AutoML Fig 7(a): Input2 to model trained using AutoML Fig 7(b): Output2 given by model trained using AutoML The images of leaf as shown in Fig -6(a) and Fig -7(a) were given as input to the model trained using AutoML. These images were given as input without the bounding boxes.The trained model detects diseases in leaves and draws a bounding box at the location of each disease in the leaf. Also, disease present in the corresponding bounding box is displayed as an output along with the probability of disease as shown in Fig -6(b) and Fig -7(b) 4. Observations We split the dataset for train and test data. We trained both the models by keeping all the input parameters (images, number of images, species of plants) constant for both the models. After training was complete, we tested the models on the test data. The images for testing were directly taken from the internet. By testing model trained by inception_v3, we got an accuracy of 92% and by testing the model trained by Google's AutoML, we have achieved an accuracy of 94%. When we test the models using the images captured using the drone, the accuracy reduces drasticallyduetothequality of the image. 5. CONCLUSIONS The proposed system allows theuserstoautomatetheentire process of plant disease detection thus reducing the difficulties that the farmers face while growing crops and saving their time. We have achieved good accuracy in the prediction of plant diseases. The model trained using AutoML delivers a better accuracy as comparedtothe model trained by using the Inception_v3 architecture. Although this method can be pretty effective for disease detection in plants, but there is a veryimportantchallenge in designing this system, which is capturing the images using the camera and drone. The challenge is to get a high- resolution image of the plant leaf for which we need a camera with proper shutter speed, optical zoom, and a high resolution. We need to look at various parameters to make this system perfect.  Before training the model, we can use some clustering algorithms to extract the infectedpartoftheleafanduse these features to train the model.  We can create and use a datasetofmulti-spectral images to create the model, andthen usemulti-spectralcameras on drones for capturing images. REFERENCES [1] Vijai Singh, A.K. Mishra, "Detection of plant leaf diseases using image segmentation and soft computing techniques", Information Processing in Agriculture Volume 4, Issue 1, March 2017 6. Future Scope
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5357 [2] Anandhakrishnan MG Joel Hanson, Annette Joy, Jerin Francis, "Plant Leaf Disease Detection using Deep Learning and Convolutional Neural Network", International Journal of Engineering Science and Computing, Volume 7, Issue No.3, March 2017. [3] Saradhambal.G, Dhivya.R, Latha.S, R.Rajesh, "Plant Disease Detection And Its Solution Using Image Classification",International Journal ofPureandApplied Mathematics, ISSN: 1314-3395, Volume 119 No. 14, 2018 [4] S. Batmavady, S. Samundeeswari, "Detection of Cotton Leaf Diseases Using Image Processing", International Journal of Recent Technology and Engineering (IJRTE) ISSN: 2277-3878, Volume-8 Issue-2S4, July 2019