SlideShare ist ein Scribd-Unternehmen logo
1 von 7
Downloaden Sie, um offline zu lesen
International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019
Available at www.ijsred.com
ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 494
IoT Based Solution for Grape Disease Prediction Using
Convolutional Neural Networkand Farm Monitoring
R. Chavan1
, A. Deoghare2
, R. Dugar 3
, P. Karad 4
1, 2, 3, 4
Department of Computer Engineering, Sinhgad College of Engineering, Pune, India.
----------------------------------------************************---------------------------------------
Abstract:
Diseases in fruit cause devastating problem in economic losses and production in agricultural industry worldwide.Subsequently,
reduction in plant diseases by early diagnosis results in substantial improvement in quality of the product.A solution for predicting
the grapes disease is provided, and also detection of the grape disease will be done using CNN approach and real time collected data
of environmental parameters are used for predicting the disease probability. The CNN approach is applied on the image of the leaf.
Different layers of CNN approach are applied on the image. Training data and testing data are resized into a specific resolution and
then provided to the layers of CNN. On the other hand, the values received from humidity, temperature and soil moisture sensor
respectively are transmitted to the Microsoft’s Azure Cloud by Raspberry-Pi. Then the sensor values are used in a trained Linear
Regression model to forecast the percentage of disease. Based on the outcomes of above detection and prediction phases, suggestions
of appropriate fertilizers with their appropriate quantity will be provided to avoid excess use of fertilizers and reduce their cost.
Keywords-IoT, CNN, PDI.
----------------------------------------************************---------------------------------------
I. INTRODUCTION
Agriculture has been practiced since centuries. Also, much of
the economic growth of India depends on agriculture. In many
regions of India, most of the farmers practice very obsolete
farming techniques. Plant disease is one of the crucial causes
that reduces quantity and degrades quality of the agricultural
products. Ensuring high crop production yield is critical in
maintaining global food security. Prediction and Detection of
disease play a major role in the field of Agriculture.
Grape cultivation: Viticulture is one of the most remunerative
farming enterprises in India [1]. Grapes originated in Western
Asia and Europe. Fruit is eaten fresh or made into juice,
fermented to wines and brandy and dried into raisins [1].
Grapes also have medicinal properties to cure many
diseases.Grapes are most important fruit crop of the world and
is fairly a good source of minerals, vitamins, etc. Maharashtra
accounts for 70 % of India’s total grape production. Varieties
grown include Thompson Seedless, Sonaka, Sharad Seedless
and Tas-e-Ganesh. Harvesting lasts from early February to
early April.Main diseases causing damages to grape crops are
Downy Mildew, Black Rotand Powdery Mildew.Grapes are
grown in India in variety of climates and soils, with more than
80 percent of the area falling within the tropical climatic belt.
India has the distinction of achieving the highest productivity
of grapes in the world. Grape suffers from huge crop losses on
account of black rot, esca black measles, leaf blight, downy
mildew, powdery mildew and anthracnose [1]. According to
the survey of United States Department of Agriculture, annual
production of grapes in India was 1,006,000 MT in 2010 and
is decreased to 1,000,000 in 2011 with 0.6 % reduction.
The prediction of plant diseases has emerged as a well-
established component of epidemiology that is rapidly being
incorporated into disease management. The mathematics of
RESEARCH ARTICLE OPEN ACCESS
International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019
Available at www.ijsred.com
ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 495
the disease progress has matured to a point of becoming a
powerful and respected component in the management and
prediction of epidemics [2]. This would be especially valuable
for disease management if models would eliminate
unnecessary pesticide applications and reduce production
costs. Traditionally, plant disease models have used Leaf
Wetness Duration combined with temperature, to predict
infection and colonization, and then identify the risks of
epidemic [3]. These types of models have been used with
observed climate records to track the favourable periods,
indicating tactics or strategies of control [4] [5].
The detection of grape disease also plays an important role in
determining the amount of loss caused by disease and avoid
any further loss. The Convolutional Neural Network approach
is one of the best suited way to detect the percentage of
damage caused to grapes quality. CNN is implemented in
python using the Keras library. Keras consist of the different
models and layers of the CNN such as Convolutional layer,
max pooling, etc.
II. Related Work
IIT Bombay implemented system to detect downy mildew
based on weather information. They apply a semi empirical
model to weather data and find the probability of disease.
“A Neural Network approach for Disease Forecasting in
Grapes using Weather Parameters”, by S. Sannakki, V.S.
Rajpurohit, F. Sumira and H.Venkatesh, provides a system
uses Meteorological parameters such as temperature, rainfall
and humidity are important for agricultural systems. The
proposed system predicts the weather using a modified k-
Nearest Neighbour (NN), and Feed Forward Neural Network,
and then use above parameters predict the disease outbreaks in
grapes.
III. System Architecture
System architecture is divided into three different layers sense,
analyse & predict, act as shown in figure Fig. 1. Purpose of
sensing layer is to sense all the meteorological parameters;
hence this layer involves all the sensors. Also, the sample
image of the suspected host will be given as an input by the
user.
Fig 1: System Architecture
Before analyse & predict layer there exists a layer for data
pre-processing. This layer will transform the inputs into a
required standard format. Data pre-processing will consist of
tasks such as feature selection, data cleaning, handle out of
range values and missing values.
Next layer is analyse & predict layer, this layer includes a
trained model of for predicting the probability of occurrence
of disease. The model is trained using a dataset of image
samples of each disease. The output of this layer will be a
probability of disease occurrence.
Execution of this layer will be performed on Microsoft’s
Azure Cloud. Use of Azure cloud services is preferred to
enable the mobility of the system on field.
The next layer in the system is act which accepts the output of
analyse and predict layer as an input and it acts according to
the probability of disease occurrence.
International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019
Available at www.ijsred.com
ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 496
IV. METHODOLOGY
A. Disease Detection (Convolutional Neural Network)
An image of suspected leaf is captured by farmer through his
android smartphone’s camera and he will upload this image on
the cloud using flask web server. And this image will be pre-
processed before giving it as an input to detection
algorithm.Once the image is pre-processed it can be further
used for disease detection. But before using the image for
disease detection, it is important to identify that input given by
the farmer is a leaf and not something else. To avoid such
wrong input, we also have an object detection algorithm
which checks the input image and if the input is correctly
classified as leaf then the system accepts the leaf image and
takes the image to further stage of disease detection.
Using Convolutional Neural Network (CNN) approach, the
detection algorithm will classify the image into the most
suitable disease type among mentioned three diseases classes
Leaf Blight, Esca-black measles and Black rot. CNN consists
of different steps i.e. Convolution layer, Activation layer and
Max-pooling.
Algorithm for Disease Detection:
Step 1: Farmer log into the system through mobile
application.
Step 2: The suspected leaf’s image will be given by the
farmer for disease detection.
Step 3: To accept only the correct leaf’s image object
detection algorithm will classify the image into correct or
incorrect input image. If the input is leaf, then image will be
accepted.
Step 4: Now the leaf image will be resized before passing it
for disease detection.
Step 5: The pre-trained model of disease detection stored on
the Azure Cloud will be prickled and used for classifying the
input image.
Step 6:The output by detection model will be provided to the
farmer.
Step 7:Detection model’s output will also be stored in Azure
SQL Database and provided as detection history to farmer.
B. Forecasting Disease Model
The purpose of prediction model is to forecast a
disease.Forecasting of disease depends on the factors in
disease triangle i.e. Pathogen, Environmental parameters and
Susceptible host.In grapes, probability of disease is high at the
time of pruning. Pruning is the process of removing the
unwanted branches of the crop.Pruning time for grapes are of
two types Backward Pruning and Forward Pruning.
Backward Pruning is carried out between Marchs to May and
on the other hand Forward Pruning is carried out in the
months of September to November. Hence there are two
different models for each disease based on two different time.
Models for Downy mildew, Anthracnose, Powdery
Germination and Powdery Penetration rate are developed for
both the pruning times.
Backward Pruning Model(Downy Mildew)
• Following equation is used to design a Backward Pruning
model:
= 1.7 3 − 3.7X1 + 4.9X5
o Y = Average PDI
o X1 = Maximum Temperature(o
C )
o X3 = Relative Humidity 7.30hrs (%)
o X5 = Evaporation (mm)
International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019
Available at www.ijsred.com
ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 497
• This is a regression model. Above equation uses of 3
environmental parameters. The result of above equation is
found to be 93.7% incidence of downy mildew.
Forward Pruning Model(Downy Mildew)
• Following equation is used to design a Forward Pruning
model:
= 2.18 2 + 0.4 3 + 1.2 4
o Y = Average PDI
o X2 = Minimum Temperature( o
C )
o X3 = Relative Humidity 7.30hrs (%)
o X4 = Relative Humidity
• This is a regression model.Above equation uses of 3
environmental parameters.The result of above equation is
found to be 88% incidence of downy mildew.
Disease Forecasting Model for Anthracnose
• The regression equation for the prediction of severity of
anthracnose:
= 32.00 + 3.30 1 + 0.77 3 − 0.65 4 + 0.20 5
o Y = Average PDI
o X1 = Maximum Temperature( o
C )
o X3 = Relative Humidity (7.30 hrs.)
o X4 = Relative Humidity (1.30 hrs.)
o X5 = Cumulative Rainfall (mm)
• Above equation uses of 4 environmental parameters.The
result of above equation is found to be 85% of R2
values.
Disease Forecasting Model for Powdery Mildew
• The powdery mildew disease depends on two factors for
disease germination rate and its penetration rate.
o Germination Rate:
GR = -2.641+0.256T-0.00528T2
o Penetration Rate:
PR = -0.639+0.108T-0.00254 T2
Algorithm for Disease Prediction:
Step 1: Farmer logs into the mobile application on his android
device.
Step 2: After successful login farmer requests for Prediction
of all the diseases.
Step 3:Once farmer requests for Disease Prediction, model for
prediction gathers the weather parameters of last 7 days from
Weather API and Raspberry PI.
Step 4:By calculating the mean of all the parameters, the
mean of these parameters is passed to all the disease
prediction models.
Step 5: The output of every individual model will be PDI
(Percent Disease Index) of disease.
C. Fertilizer Suggestion
The most crucially important feature of this system is to
suggest the Fertilizers to the farmer according to the present
status of the farm and appropriate quantity of the fertilizer is
provided to avoid side effects caused by over fertilization and
reduce cost of fertilizers. Fertilizer Suggestion module uses
the PDI calculated by the Disease Prediction module and the
pruning date provided by the farmer. If PDI of one or more
disease is predicted above 60% the fertilizer suggestion
module suggest the fertilizers to farmers.
Initially model takes the input from user i.e. date on which
pruning was performed. .The model considers combination of
every possible disease and based on the occurrence probability
the disease, it is capable of suggesting the pesticides for
multiple disease.Finally all the collected results (like fertilizer
International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019
Available at www.ijsred.com
ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 498
name, quantity of fertilizers), these results are sent to the users
device. Thesesuggestions becomes useful to the farmers to
make the fertilizers available in time, so that there is no delay
in spraying the fertilizers.
V. ACTIVITY DIAGRAM
Below figure Fig. 2 shows the activity diagram of the working
system. As we see, that the system is activities are partitioned
into three sections viz. Field, Cloud and User. Activities at
field level are the inputs given from the sensors. At cloud
level all the processing of the inputs from the user as well as
the sensors are processed in order to provide the appropriate
output to the user. Finally at user level we could see the
suggested fertilizers, disease detected and the probability of all
the disease i.e. PDI.
Fig 2: Activity Diagram
International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019
Available at www.ijsred.com
ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 499
VI. RESULTS AND DISCUSSIONS
This Plant Disease Detection and Prediction is totally
android based application. It allows to capture images of
suspected leaves and detect the type of disease on leaf.
The application also allows the user to predict the disease
in advance by fetching the historical data from weather
APIs and passing that data to the models designed for
every disease. This returns the percent disease index.
Fertilizer suggestion is also provided so that farmer uses
appropriate fertilizers with appropriate amount of
fertilizers based on the current status of the farm. This
system uses Microsoft azure cloud services hence it
requires continuous internet connection to work which
makes the application accessible anywhere and at any
time. The application is very light as there is no
processing present at client side. Following there are
some snapshots of our android application.
Fig 3(a): Disease Detection
Fig 3(b): Disease Detection
Fig 4: Disease Prediction
Fig 5(a): Fertilizer Suggestion
Fig 5(b): Fertilizer Suggestion
International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019
Available at www.ijsred.com
ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 500
VII. CONCLUSION
In this paper, respectively, the application of Convolutional
Neural Network have been formulated for classification of
disease in grape leaves. Recognizing the disease is main
purpose of the proposed approach. Thus, the proposed
algorithm was tested on four diseases which had higher
influence on production of grapes. These diseases are Esca
black measles, anthracnose, leaf blight, black rot. Including
disease detection this system also provides disease prediction
using the historical weather data. For every disease an
individual model is developed which gives the percent
chances of the disease to occur on the next day. Finally if the
chances of disease are high i.e. greater than 60% then this
system also provides the fertilizers with their appropriate
quantity. This suggestion of fertilizers is based on the current
status of the farm so to avoid unnecessary use of fertilizers
and reduce the cost of fertilizers too. So, we have developed a
complete Decision Support System for the farmer, which
allows him to totally be relaxed and take decisions
accordingly. We will dedicate our future to make this system
more accurate and reliable for the users.
REFERENCES
[1] A report of the expert consultation on viticulture in Asia
and the Pacific. May 2000, Bangkok, Thailand. RAP
publication:2000/13.
[2] Seem, R., 2001. Plant disease forecasting in the era of
information technology. In: Plant Disease Forecast:
Information Technology in Plant Pathology, Kyongju,
Republic of Korea.
[3] Jabrzemski, R., Sutherland, A., 2006. An innovative
approach to weather-based decision-support for
Agricultural Models. In: 22nd
International Conference on
Interactive Information Processing Systems for
Meteorology, Oceanography, and Hydrology. American
Meterological society, Washington, DC, USA.
[4] Fernandes, J., Ponte, E.D., Pavan, W., Cunha, G., 2007a.
Climate Prediction and Agriculture.Springer, Berlin
Heidelberg, Ch. Web-based System to True-Forecast
Disease Epidemics—Case Study for Fusarium Head
Blight of Wheat, pp. 265–271.
[5] Fernandes, J., Ponte, E., Pavan, W., Cunha, G., 2007b.
Wheat Production in Stressed Environments. Springer,
Netherlands, Ch. Web-based System to True-Forecast
Disease Epidemics, pp. 259– 264.
[6] Ipsita Das, CPRG Naveen, Shailendra S. Yadav, bhishek,
A. Kodilkar, N.G.Shah, S.N.Merchant, U.B.Desai,
2011.”WSN Monitoring of Weather and Crop Parameters
for Possible Disease Risk Evaluation for Grape Farms -
Sula Vineyards, A Case Study”.
[7] Sannakki, V .S. Rajpurohit, “A Neural Network approach
for Disease Forecasting in Grapes using Weather
Parameters”,4th
International Conference on Computing
Communication and Networking Technologies ,2013.
[8] Yun Shi, Zhen Wang, “Internet of Things Application to
Monitoring Plant Disease and Insect Pests”, American
Society of Engineers Of Indian Origin, 2015.
[9] Thomas Truong, Anh Dinh. “An IoT Environmental
DataCollectionSystem for Fungal Detection in Crop
Fields “30th
IEEE Canadian Conference on Computer
Engineering, 2017.
[10]Vikramsinh Kadam, Mrudang, Shukla, Amol Ubale,
“Prevention of downey mildew disease in grape field”,
International Journal of Advances in Engineering &
Technology, Mar. 2014.
[11]N.Vijay, R. Venugopalan, A Srinivasaraghavan, “The
Influence And Reliability of Weather Parameters on
Incidence of Downy Mildew Grapes”.
[12]Chiyurl Yoon, Miyoung Huh. “Implement Smart Farm
with IOT Technology“, International Conference on
Advanced Communications Technology (ICACT).
[13]“Weather-Pest-disease-relations in Grape : Powdery
Mildew, Downy Mildew And Anthracnose ”, Project
No.7.

Weitere ähnliche Inhalte

Was ist angesagt?

IRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
IRJET- Health Monitoring System using IoT using Arduino Uno MicrocontrollerIRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
IRJET- Health Monitoring System using IoT using Arduino Uno MicrocontrollerIRJET Journal
 
Design and development of fall detector using fall acceleration
Design and development of fall detector using fall accelerationDesign and development of fall detector using fall acceleration
Design and development of fall detector using fall accelerationeSAT Journals
 
Mechatronic based energy management and automation system for agro industries
Mechatronic based energy management and automation system for agro industriesMechatronic based energy management and automation system for agro industries
Mechatronic based energy management and automation system for agro industrieseSAT Journals
 
IRJET- Android base Healthcare Monitoring and Management System using IoT
IRJET- Android base Healthcare Monitoring and Management System using IoTIRJET- Android base Healthcare Monitoring and Management System using IoT
IRJET- Android base Healthcare Monitoring and Management System using IoTIRJET Journal
 
EXTEMPORIZING HEALTHCARE USING SMART FABRIC
EXTEMPORIZING HEALTHCARE USING SMART FABRICEXTEMPORIZING HEALTHCARE USING SMART FABRIC
EXTEMPORIZING HEALTHCARE USING SMART FABRICAM Publications,India
 
IRJET- Smart Medical Assistant using Wearable Device
IRJET- Smart Medical Assistant using Wearable DeviceIRJET- Smart Medical Assistant using Wearable Device
IRJET- Smart Medical Assistant using Wearable DeviceIRJET Journal
 
IRJET- Vertical Farming with Smart Robotics
IRJET- Vertical Farming with Smart RoboticsIRJET- Vertical Farming with Smart Robotics
IRJET- Vertical Farming with Smart RoboticsIRJET Journal
 
Design of Self-Learning System for Diagnosing Health Parameters using ANFIS
Design of Self-Learning System for Diagnosing Health Parameters using ANFISDesign of Self-Learning System for Diagnosing Health Parameters using ANFIS
Design of Self-Learning System for Diagnosing Health Parameters using ANFISIRJET Journal
 
Gsm based patient monitoring system in nicu
Gsm based patient monitoring system in nicuGsm based patient monitoring system in nicu
Gsm based patient monitoring system in nicueSAT Publishing House
 
IRJET- Medicine Box which Serves Patient using IoT
IRJET- Medicine Box which Serves Patient using IoTIRJET- Medicine Box which Serves Patient using IoT
IRJET- Medicine Box which Serves Patient using IoTIRJET Journal
 
IRJET - Poultry Farm Controlling based on IoT
IRJET -  	  Poultry Farm Controlling based on IoTIRJET -  	  Poultry Farm Controlling based on IoT
IRJET - Poultry Farm Controlling based on IoTIRJET Journal
 
Patient Health Monitoring System using IOT
Patient Health Monitoring System using IOTPatient Health Monitoring System using IOT
Patient Health Monitoring System using IOTIRJET Journal
 
An intelligent patient tele monitoring system using android technology
An intelligent patient tele monitoring system using android technologyAn intelligent patient tele monitoring system using android technology
An intelligent patient tele monitoring system using android technologyeSAT Journals
 
Intelligent Healthcare Monitoring in IoT
Intelligent Healthcare Monitoring in IoTIntelligent Healthcare Monitoring in IoT
Intelligent Healthcare Monitoring in IoTIJAEMSJORNAL
 
IRJET- Allergy Symptom Prediction and Detection using android Web Platform
IRJET- Allergy Symptom Prediction and Detection using android Web PlatformIRJET- Allergy Symptom Prediction and Detection using android Web Platform
IRJET- Allergy Symptom Prediction and Detection using android Web PlatformIRJET Journal
 
Agricultural Management through Wireless Sensors and Internet of Things
Agricultural Management through Wireless Sensors and Internet of Things Agricultural Management through Wireless Sensors and Internet of Things
Agricultural Management through Wireless Sensors and Internet of Things IJECEIAES
 
IRJET- Smart ICU using IoT
IRJET- Smart ICU using IoTIRJET- Smart ICU using IoT
IRJET- Smart ICU using IoTIRJET Journal
 

Was ist angesagt? (20)

Ijecet 06 09_004
Ijecet 06 09_004Ijecet 06 09_004
Ijecet 06 09_004
 
IRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
IRJET- Health Monitoring System using IoT using Arduino Uno MicrocontrollerIRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
IRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
 
Design and development of fall detector using fall acceleration
Design and development of fall detector using fall accelerationDesign and development of fall detector using fall acceleration
Design and development of fall detector using fall acceleration
 
Mechatronic based energy management and automation system for agro industries
Mechatronic based energy management and automation system for agro industriesMechatronic based energy management and automation system for agro industries
Mechatronic based energy management and automation system for agro industries
 
IRJET- Android base Healthcare Monitoring and Management System using IoT
IRJET- Android base Healthcare Monitoring and Management System using IoTIRJET- Android base Healthcare Monitoring and Management System using IoT
IRJET- Android base Healthcare Monitoring and Management System using IoT
 
E0512535
E0512535E0512535
E0512535
 
EXTEMPORIZING HEALTHCARE USING SMART FABRIC
EXTEMPORIZING HEALTHCARE USING SMART FABRICEXTEMPORIZING HEALTHCARE USING SMART FABRIC
EXTEMPORIZING HEALTHCARE USING SMART FABRIC
 
IRJET- Smart Medical Assistant using Wearable Device
IRJET- Smart Medical Assistant using Wearable DeviceIRJET- Smart Medical Assistant using Wearable Device
IRJET- Smart Medical Assistant using Wearable Device
 
IRJET- Vertical Farming with Smart Robotics
IRJET- Vertical Farming with Smart RoboticsIRJET- Vertical Farming with Smart Robotics
IRJET- Vertical Farming with Smart Robotics
 
Design of Self-Learning System for Diagnosing Health Parameters using ANFIS
Design of Self-Learning System for Diagnosing Health Parameters using ANFISDesign of Self-Learning System for Diagnosing Health Parameters using ANFIS
Design of Self-Learning System for Diagnosing Health Parameters using ANFIS
 
Gsm based patient monitoring system in nicu
Gsm based patient monitoring system in nicuGsm based patient monitoring system in nicu
Gsm based patient monitoring system in nicu
 
IRJET- Medicine Box which Serves Patient using IoT
IRJET- Medicine Box which Serves Patient using IoTIRJET- Medicine Box which Serves Patient using IoT
IRJET- Medicine Box which Serves Patient using IoT
 
IRJET - Poultry Farm Controlling based on IoT
IRJET -  	  Poultry Farm Controlling based on IoTIRJET -  	  Poultry Farm Controlling based on IoT
IRJET - Poultry Farm Controlling based on IoT
 
Patient Health Monitoring System using IOT
Patient Health Monitoring System using IOTPatient Health Monitoring System using IOT
Patient Health Monitoring System using IOT
 
An intelligent patient tele monitoring system using android technology
An intelligent patient tele monitoring system using android technologyAn intelligent patient tele monitoring system using android technology
An intelligent patient tele monitoring system using android technology
 
Intelligent Healthcare Monitoring in IoT
Intelligent Healthcare Monitoring in IoTIntelligent Healthcare Monitoring in IoT
Intelligent Healthcare Monitoring in IoT
 
IRJET- Allergy Symptom Prediction and Detection using android Web Platform
IRJET- Allergy Symptom Prediction and Detection using android Web PlatformIRJET- Allergy Symptom Prediction and Detection using android Web Platform
IRJET- Allergy Symptom Prediction and Detection using android Web Platform
 
Agricultural Management through Wireless Sensors and Internet of Things
Agricultural Management through Wireless Sensors and Internet of Things Agricultural Management through Wireless Sensors and Internet of Things
Agricultural Management through Wireless Sensors and Internet of Things
 
I017546373
I017546373I017546373
I017546373
 
IRJET- Smart ICU using IoT
IRJET- Smart ICU using IoTIRJET- Smart ICU using IoT
IRJET- Smart ICU using IoT
 

Ähnlich wie IJSRED-V2I3P58

IRJET- Crop Prediction and Disease Detection
IRJET-  	  Crop Prediction and Disease DetectionIRJET-  	  Crop Prediction and Disease Detection
IRJET- Crop Prediction and Disease DetectionIRJET Journal
 
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...IRJET Journal
 
RICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNING
RICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNINGRICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNING
RICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNINGIRJET Journal
 
Kissan Konnect – A Smart Farming App
Kissan Konnect – A Smart Farming AppKissan Konnect – A Smart Farming App
Kissan Konnect – A Smart Farming AppIRJET Journal
 
Plant Diseases Prediction Using Image Processing
Plant Diseases Prediction Using Image ProcessingPlant Diseases Prediction Using Image Processing
Plant Diseases Prediction Using Image ProcessingIRJET Journal
 
IRJET- Detection of Leaf Diseases and Classifying them using Multiclass SVM
IRJET-  	  Detection of Leaf Diseases and Classifying them using Multiclass SVMIRJET-  	  Detection of Leaf Diseases and Classifying them using Multiclass SVM
IRJET- Detection of Leaf Diseases and Classifying them using Multiclass SVMIRJET Journal
 
IRJET - E-Learning Package for Grape & Disease Analysis
IRJET - E-Learning Package for Grape & Disease AnalysisIRJET - E-Learning Package for Grape & Disease Analysis
IRJET - E-Learning Package for Grape & Disease AnalysisIRJET Journal
 
Deep learning for Precision farming: Detection of disease in plants
Deep learning for Precision farming: Detection of disease in plantsDeep learning for Precision farming: Detection of disease in plants
Deep learning for Precision farming: Detection of disease in plantsIRJET Journal
 
“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...
“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...
“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...IRJET Journal
 
IRJET- Plant Leaf Disease Detection using Image Processing
IRJET- Plant Leaf Disease Detection using Image ProcessingIRJET- Plant Leaf Disease Detection using Image Processing
IRJET- Plant Leaf Disease Detection using Image ProcessingIRJET Journal
 
711201940
711201940711201940
711201940IJRAT
 
711201940
711201940711201940
711201940IJRAT
 
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...IRJET Journal
 
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...IRJET Journal
 
Plant Leaf Disease Detection Using Machine Learning
Plant Leaf Disease Detection Using Machine LearningPlant Leaf Disease Detection Using Machine Learning
Plant Leaf Disease Detection Using Machine LearningIRJET Journal
 
Fruit Disease Detection And Fertilizer Recommendation
Fruit Disease Detection And Fertilizer RecommendationFruit Disease Detection And Fertilizer Recommendation
Fruit Disease Detection And Fertilizer RecommendationIRJET Journal
 
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...IRJET Journal
 
Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...
Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...
Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...IRJET Journal
 
8. 10168 12478-1-pb
8. 10168 12478-1-pb8. 10168 12478-1-pb
8. 10168 12478-1-pbIAESIJEECS
 

Ähnlich wie IJSRED-V2I3P58 (20)

IRJET- Crop Prediction and Disease Detection
IRJET-  	  Crop Prediction and Disease DetectionIRJET-  	  Crop Prediction and Disease Detection
IRJET- Crop Prediction and Disease Detection
 
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
 
RICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNING
RICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNINGRICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNING
RICE PLANT DISEASE DETECTION AND REMEDIES RECOMMENDATION USING MACHINE LEARNING
 
Kissan Konnect – A Smart Farming App
Kissan Konnect – A Smart Farming AppKissan Konnect – A Smart Farming App
Kissan Konnect – A Smart Farming App
 
Plant Diseases Prediction Using Image Processing
Plant Diseases Prediction Using Image ProcessingPlant Diseases Prediction Using Image Processing
Plant Diseases Prediction Using Image Processing
 
IRJET- Detection of Leaf Diseases and Classifying them using Multiclass SVM
IRJET-  	  Detection of Leaf Diseases and Classifying them using Multiclass SVMIRJET-  	  Detection of Leaf Diseases and Classifying them using Multiclass SVM
IRJET- Detection of Leaf Diseases and Classifying them using Multiclass SVM
 
IRJET - E-Learning Package for Grape & Disease Analysis
IRJET - E-Learning Package for Grape & Disease AnalysisIRJET - E-Learning Package for Grape & Disease Analysis
IRJET - E-Learning Package for Grape & Disease Analysis
 
Deep learning for Precision farming: Detection of disease in plants
Deep learning for Precision farming: Detection of disease in plantsDeep learning for Precision farming: Detection of disease in plants
Deep learning for Precision farming: Detection of disease in plants
 
“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...
“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...
“Plant Disease Detection by Using Deep LearningAlgorithm with Product, Price ...
 
IRJET- Plant Leaf Disease Detection using Image Processing
IRJET- Plant Leaf Disease Detection using Image ProcessingIRJET- Plant Leaf Disease Detection using Image Processing
IRJET- Plant Leaf Disease Detection using Image Processing
 
711201940
711201940711201940
711201940
 
711201940
711201940711201940
711201940
 
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
 
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
A Review: Plant leaf Disease Detection Using Convolution Neural Network in Ma...
 
Plant Leaf Disease Detection Using Machine Learning
Plant Leaf Disease Detection Using Machine LearningPlant Leaf Disease Detection Using Machine Learning
Plant Leaf Disease Detection Using Machine Learning
 
Fruit Disease Detection And Fertilizer Recommendation
Fruit Disease Detection And Fertilizer RecommendationFruit Disease Detection And Fertilizer Recommendation
Fruit Disease Detection And Fertilizer Recommendation
 
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
IRJET- AI Based Fault Detection on Leaf and Disease Prediction using K-means ...
 
Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...
Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...
Leaf Disease Detection and Selection of Fertilizers using Artificial Neural N...
 
ijatcse21932020.pdf
ijatcse21932020.pdfijatcse21932020.pdf
ijatcse21932020.pdf
 
8. 10168 12478-1-pb
8. 10168 12478-1-pb8. 10168 12478-1-pb
8. 10168 12478-1-pb
 

Mehr von IJSRED

IJSRED-V3I6P13
IJSRED-V3I6P13IJSRED-V3I6P13
IJSRED-V3I6P13IJSRED
 
School Bus Tracking and Security System
School Bus Tracking and Security SystemSchool Bus Tracking and Security System
School Bus Tracking and Security SystemIJSRED
 
BigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunityBigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunityIJSRED
 
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
 
DC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric VehiclesDC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric VehiclesIJSRED
 
Growth Path Followed by France
Growth Path Followed by FranceGrowth Path Followed by France
Growth Path Followed by FranceIJSRED
 
Acquisition System
Acquisition SystemAcquisition System
Acquisition SystemIJSRED
 
Parallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPParallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPIJSRED
 
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. AmaraStudy of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. AmaraIJSRED
 
Understanding Architecture of Internet of Things
Understanding Architecture of Internet of ThingsUnderstanding Architecture of Internet of Things
Understanding Architecture of Internet of ThingsIJSRED
 
Smart shopping cart
Smart shopping cartSmart shopping cart
Smart shopping cartIJSRED
 
An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...IJSRED
 
Smart Canteen Management
Smart Canteen ManagementSmart Canteen Management
Smart Canteen ManagementIJSRED
 
Gandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic EthicsGandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic EthicsIJSRED
 
Impacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric SolutionImpacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric SolutionIJSRED
 
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...IJSRED
 
Inginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition SystemInginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition SystemIJSRED
 
Farmer's Analytical assistant
Farmer's Analytical assistantFarmer's Analytical assistant
Farmer's Analytical assistantIJSRED
 
Functions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in IndiaFunctions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in IndiaIJSRED
 
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....IJSRED
 

Mehr von IJSRED (20)

IJSRED-V3I6P13
IJSRED-V3I6P13IJSRED-V3I6P13
IJSRED-V3I6P13
 
School Bus Tracking and Security System
School Bus Tracking and Security SystemSchool Bus Tracking and Security System
School Bus Tracking and Security System
 
BigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunityBigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunity
 
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
 
DC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric VehiclesDC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric Vehicles
 
Growth Path Followed by France
Growth Path Followed by FranceGrowth Path Followed by France
Growth Path Followed by France
 
Acquisition System
Acquisition SystemAcquisition System
Acquisition System
 
Parallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPParallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MP
 
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. AmaraStudy of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. Amara
 
Understanding Architecture of Internet of Things
Understanding Architecture of Internet of ThingsUnderstanding Architecture of Internet of Things
Understanding Architecture of Internet of Things
 
Smart shopping cart
Smart shopping cartSmart shopping cart
Smart shopping cart
 
An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...
 
Smart Canteen Management
Smart Canteen ManagementSmart Canteen Management
Smart Canteen Management
 
Gandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic EthicsGandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic Ethics
 
Impacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric SolutionImpacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric Solution
 
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
 
Inginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition SystemInginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition System
 
Farmer's Analytical assistant
Farmer's Analytical assistantFarmer's Analytical assistant
Farmer's Analytical assistant
 
Functions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in IndiaFunctions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in India
 
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
 

Kürzlich hochgeladen

IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
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
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
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
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
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
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 

Kürzlich hochgeladen (20)

IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
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...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
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
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
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...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
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
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 

IJSRED-V2I3P58

  • 1. International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019 Available at www.ijsred.com ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 494 IoT Based Solution for Grape Disease Prediction Using Convolutional Neural Networkand Farm Monitoring R. Chavan1 , A. Deoghare2 , R. Dugar 3 , P. Karad 4 1, 2, 3, 4 Department of Computer Engineering, Sinhgad College of Engineering, Pune, India. ----------------------------------------************************--------------------------------------- Abstract: Diseases in fruit cause devastating problem in economic losses and production in agricultural industry worldwide.Subsequently, reduction in plant diseases by early diagnosis results in substantial improvement in quality of the product.A solution for predicting the grapes disease is provided, and also detection of the grape disease will be done using CNN approach and real time collected data of environmental parameters are used for predicting the disease probability. The CNN approach is applied on the image of the leaf. Different layers of CNN approach are applied on the image. Training data and testing data are resized into a specific resolution and then provided to the layers of CNN. On the other hand, the values received from humidity, temperature and soil moisture sensor respectively are transmitted to the Microsoft’s Azure Cloud by Raspberry-Pi. Then the sensor values are used in a trained Linear Regression model to forecast the percentage of disease. Based on the outcomes of above detection and prediction phases, suggestions of appropriate fertilizers with their appropriate quantity will be provided to avoid excess use of fertilizers and reduce their cost. Keywords-IoT, CNN, PDI. ----------------------------------------************************--------------------------------------- I. INTRODUCTION Agriculture has been practiced since centuries. Also, much of the economic growth of India depends on agriculture. In many regions of India, most of the farmers practice very obsolete farming techniques. Plant disease is one of the crucial causes that reduces quantity and degrades quality of the agricultural products. Ensuring high crop production yield is critical in maintaining global food security. Prediction and Detection of disease play a major role in the field of Agriculture. Grape cultivation: Viticulture is one of the most remunerative farming enterprises in India [1]. Grapes originated in Western Asia and Europe. Fruit is eaten fresh or made into juice, fermented to wines and brandy and dried into raisins [1]. Grapes also have medicinal properties to cure many diseases.Grapes are most important fruit crop of the world and is fairly a good source of minerals, vitamins, etc. Maharashtra accounts for 70 % of India’s total grape production. Varieties grown include Thompson Seedless, Sonaka, Sharad Seedless and Tas-e-Ganesh. Harvesting lasts from early February to early April.Main diseases causing damages to grape crops are Downy Mildew, Black Rotand Powdery Mildew.Grapes are grown in India in variety of climates and soils, with more than 80 percent of the area falling within the tropical climatic belt. India has the distinction of achieving the highest productivity of grapes in the world. Grape suffers from huge crop losses on account of black rot, esca black measles, leaf blight, downy mildew, powdery mildew and anthracnose [1]. According to the survey of United States Department of Agriculture, annual production of grapes in India was 1,006,000 MT in 2010 and is decreased to 1,000,000 in 2011 with 0.6 % reduction. The prediction of plant diseases has emerged as a well- established component of epidemiology that is rapidly being incorporated into disease management. The mathematics of RESEARCH ARTICLE OPEN ACCESS
  • 2. International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019 Available at www.ijsred.com ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 495 the disease progress has matured to a point of becoming a powerful and respected component in the management and prediction of epidemics [2]. This would be especially valuable for disease management if models would eliminate unnecessary pesticide applications and reduce production costs. Traditionally, plant disease models have used Leaf Wetness Duration combined with temperature, to predict infection and colonization, and then identify the risks of epidemic [3]. These types of models have been used with observed climate records to track the favourable periods, indicating tactics or strategies of control [4] [5]. The detection of grape disease also plays an important role in determining the amount of loss caused by disease and avoid any further loss. The Convolutional Neural Network approach is one of the best suited way to detect the percentage of damage caused to grapes quality. CNN is implemented in python using the Keras library. Keras consist of the different models and layers of the CNN such as Convolutional layer, max pooling, etc. II. Related Work IIT Bombay implemented system to detect downy mildew based on weather information. They apply a semi empirical model to weather data and find the probability of disease. “A Neural Network approach for Disease Forecasting in Grapes using Weather Parameters”, by S. Sannakki, V.S. Rajpurohit, F. Sumira and H.Venkatesh, provides a system uses Meteorological parameters such as temperature, rainfall and humidity are important for agricultural systems. The proposed system predicts the weather using a modified k- Nearest Neighbour (NN), and Feed Forward Neural Network, and then use above parameters predict the disease outbreaks in grapes. III. System Architecture System architecture is divided into three different layers sense, analyse & predict, act as shown in figure Fig. 1. Purpose of sensing layer is to sense all the meteorological parameters; hence this layer involves all the sensors. Also, the sample image of the suspected host will be given as an input by the user. Fig 1: System Architecture Before analyse & predict layer there exists a layer for data pre-processing. This layer will transform the inputs into a required standard format. Data pre-processing will consist of tasks such as feature selection, data cleaning, handle out of range values and missing values. Next layer is analyse & predict layer, this layer includes a trained model of for predicting the probability of occurrence of disease. The model is trained using a dataset of image samples of each disease. The output of this layer will be a probability of disease occurrence. Execution of this layer will be performed on Microsoft’s Azure Cloud. Use of Azure cloud services is preferred to enable the mobility of the system on field. The next layer in the system is act which accepts the output of analyse and predict layer as an input and it acts according to the probability of disease occurrence.
  • 3. International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019 Available at www.ijsred.com ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 496 IV. METHODOLOGY A. Disease Detection (Convolutional Neural Network) An image of suspected leaf is captured by farmer through his android smartphone’s camera and he will upload this image on the cloud using flask web server. And this image will be pre- processed before giving it as an input to detection algorithm.Once the image is pre-processed it can be further used for disease detection. But before using the image for disease detection, it is important to identify that input given by the farmer is a leaf and not something else. To avoid such wrong input, we also have an object detection algorithm which checks the input image and if the input is correctly classified as leaf then the system accepts the leaf image and takes the image to further stage of disease detection. Using Convolutional Neural Network (CNN) approach, the detection algorithm will classify the image into the most suitable disease type among mentioned three diseases classes Leaf Blight, Esca-black measles and Black rot. CNN consists of different steps i.e. Convolution layer, Activation layer and Max-pooling. Algorithm for Disease Detection: Step 1: Farmer log into the system through mobile application. Step 2: The suspected leaf’s image will be given by the farmer for disease detection. Step 3: To accept only the correct leaf’s image object detection algorithm will classify the image into correct or incorrect input image. If the input is leaf, then image will be accepted. Step 4: Now the leaf image will be resized before passing it for disease detection. Step 5: The pre-trained model of disease detection stored on the Azure Cloud will be prickled and used for classifying the input image. Step 6:The output by detection model will be provided to the farmer. Step 7:Detection model’s output will also be stored in Azure SQL Database and provided as detection history to farmer. B. Forecasting Disease Model The purpose of prediction model is to forecast a disease.Forecasting of disease depends on the factors in disease triangle i.e. Pathogen, Environmental parameters and Susceptible host.In grapes, probability of disease is high at the time of pruning. Pruning is the process of removing the unwanted branches of the crop.Pruning time for grapes are of two types Backward Pruning and Forward Pruning. Backward Pruning is carried out between Marchs to May and on the other hand Forward Pruning is carried out in the months of September to November. Hence there are two different models for each disease based on two different time. Models for Downy mildew, Anthracnose, Powdery Germination and Powdery Penetration rate are developed for both the pruning times. Backward Pruning Model(Downy Mildew) • Following equation is used to design a Backward Pruning model: = 1.7 3 − 3.7X1 + 4.9X5 o Y = Average PDI o X1 = Maximum Temperature(o C ) o X3 = Relative Humidity 7.30hrs (%) o X5 = Evaporation (mm)
  • 4. International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019 Available at www.ijsred.com ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 497 • This is a regression model. Above equation uses of 3 environmental parameters. The result of above equation is found to be 93.7% incidence of downy mildew. Forward Pruning Model(Downy Mildew) • Following equation is used to design a Forward Pruning model: = 2.18 2 + 0.4 3 + 1.2 4 o Y = Average PDI o X2 = Minimum Temperature( o C ) o X3 = Relative Humidity 7.30hrs (%) o X4 = Relative Humidity • This is a regression model.Above equation uses of 3 environmental parameters.The result of above equation is found to be 88% incidence of downy mildew. Disease Forecasting Model for Anthracnose • The regression equation for the prediction of severity of anthracnose: = 32.00 + 3.30 1 + 0.77 3 − 0.65 4 + 0.20 5 o Y = Average PDI o X1 = Maximum Temperature( o C ) o X3 = Relative Humidity (7.30 hrs.) o X4 = Relative Humidity (1.30 hrs.) o X5 = Cumulative Rainfall (mm) • Above equation uses of 4 environmental parameters.The result of above equation is found to be 85% of R2 values. Disease Forecasting Model for Powdery Mildew • The powdery mildew disease depends on two factors for disease germination rate and its penetration rate. o Germination Rate: GR = -2.641+0.256T-0.00528T2 o Penetration Rate: PR = -0.639+0.108T-0.00254 T2 Algorithm for Disease Prediction: Step 1: Farmer logs into the mobile application on his android device. Step 2: After successful login farmer requests for Prediction of all the diseases. Step 3:Once farmer requests for Disease Prediction, model for prediction gathers the weather parameters of last 7 days from Weather API and Raspberry PI. Step 4:By calculating the mean of all the parameters, the mean of these parameters is passed to all the disease prediction models. Step 5: The output of every individual model will be PDI (Percent Disease Index) of disease. C. Fertilizer Suggestion The most crucially important feature of this system is to suggest the Fertilizers to the farmer according to the present status of the farm and appropriate quantity of the fertilizer is provided to avoid side effects caused by over fertilization and reduce cost of fertilizers. Fertilizer Suggestion module uses the PDI calculated by the Disease Prediction module and the pruning date provided by the farmer. If PDI of one or more disease is predicted above 60% the fertilizer suggestion module suggest the fertilizers to farmers. Initially model takes the input from user i.e. date on which pruning was performed. .The model considers combination of every possible disease and based on the occurrence probability the disease, it is capable of suggesting the pesticides for multiple disease.Finally all the collected results (like fertilizer
  • 5. International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019 Available at www.ijsred.com ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 498 name, quantity of fertilizers), these results are sent to the users device. Thesesuggestions becomes useful to the farmers to make the fertilizers available in time, so that there is no delay in spraying the fertilizers. V. ACTIVITY DIAGRAM Below figure Fig. 2 shows the activity diagram of the working system. As we see, that the system is activities are partitioned into three sections viz. Field, Cloud and User. Activities at field level are the inputs given from the sensors. At cloud level all the processing of the inputs from the user as well as the sensors are processed in order to provide the appropriate output to the user. Finally at user level we could see the suggested fertilizers, disease detected and the probability of all the disease i.e. PDI. Fig 2: Activity Diagram
  • 6. International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019 Available at www.ijsred.com ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 499 VI. RESULTS AND DISCUSSIONS This Plant Disease Detection and Prediction is totally android based application. It allows to capture images of suspected leaves and detect the type of disease on leaf. The application also allows the user to predict the disease in advance by fetching the historical data from weather APIs and passing that data to the models designed for every disease. This returns the percent disease index. Fertilizer suggestion is also provided so that farmer uses appropriate fertilizers with appropriate amount of fertilizers based on the current status of the farm. This system uses Microsoft azure cloud services hence it requires continuous internet connection to work which makes the application accessible anywhere and at any time. The application is very light as there is no processing present at client side. Following there are some snapshots of our android application. Fig 3(a): Disease Detection Fig 3(b): Disease Detection Fig 4: Disease Prediction Fig 5(a): Fertilizer Suggestion Fig 5(b): Fertilizer Suggestion
  • 7. International Journal of Scientific Research and Engineering Development-– Volume 2 Issue 3, May 2019 Available at www.ijsred.com ISSN : 2581-7175 ©IJSRED: All Rights are Reserved Page 500 VII. CONCLUSION In this paper, respectively, the application of Convolutional Neural Network have been formulated for classification of disease in grape leaves. Recognizing the disease is main purpose of the proposed approach. Thus, the proposed algorithm was tested on four diseases which had higher influence on production of grapes. These diseases are Esca black measles, anthracnose, leaf blight, black rot. Including disease detection this system also provides disease prediction using the historical weather data. For every disease an individual model is developed which gives the percent chances of the disease to occur on the next day. Finally if the chances of disease are high i.e. greater than 60% then this system also provides the fertilizers with their appropriate quantity. This suggestion of fertilizers is based on the current status of the farm so to avoid unnecessary use of fertilizers and reduce the cost of fertilizers too. So, we have developed a complete Decision Support System for the farmer, which allows him to totally be relaxed and take decisions accordingly. We will dedicate our future to make this system more accurate and reliable for the users. REFERENCES [1] A report of the expert consultation on viticulture in Asia and the Pacific. May 2000, Bangkok, Thailand. RAP publication:2000/13. [2] Seem, R., 2001. Plant disease forecasting in the era of information technology. In: Plant Disease Forecast: Information Technology in Plant Pathology, Kyongju, Republic of Korea. [3] Jabrzemski, R., Sutherland, A., 2006. An innovative approach to weather-based decision-support for Agricultural Models. In: 22nd International Conference on Interactive Information Processing Systems for Meteorology, Oceanography, and Hydrology. American Meterological society, Washington, DC, USA. [4] Fernandes, J., Ponte, E.D., Pavan, W., Cunha, G., 2007a. Climate Prediction and Agriculture.Springer, Berlin Heidelberg, Ch. Web-based System to True-Forecast Disease Epidemics—Case Study for Fusarium Head Blight of Wheat, pp. 265–271. [5] Fernandes, J., Ponte, E., Pavan, W., Cunha, G., 2007b. Wheat Production in Stressed Environments. Springer, Netherlands, Ch. Web-based System to True-Forecast Disease Epidemics, pp. 259– 264. [6] Ipsita Das, CPRG Naveen, Shailendra S. Yadav, bhishek, A. Kodilkar, N.G.Shah, S.N.Merchant, U.B.Desai, 2011.”WSN Monitoring of Weather and Crop Parameters for Possible Disease Risk Evaluation for Grape Farms - Sula Vineyards, A Case Study”. [7] Sannakki, V .S. Rajpurohit, “A Neural Network approach for Disease Forecasting in Grapes using Weather Parameters”,4th International Conference on Computing Communication and Networking Technologies ,2013. [8] Yun Shi, Zhen Wang, “Internet of Things Application to Monitoring Plant Disease and Insect Pests”, American Society of Engineers Of Indian Origin, 2015. [9] Thomas Truong, Anh Dinh. “An IoT Environmental DataCollectionSystem for Fungal Detection in Crop Fields “30th IEEE Canadian Conference on Computer Engineering, 2017. [10]Vikramsinh Kadam, Mrudang, Shukla, Amol Ubale, “Prevention of downey mildew disease in grape field”, International Journal of Advances in Engineering & Technology, Mar. 2014. [11]N.Vijay, R. Venugopalan, A Srinivasaraghavan, “The Influence And Reliability of Weather Parameters on Incidence of Downy Mildew Grapes”. [12]Chiyurl Yoon, Miyoung Huh. “Implement Smart Farm with IOT Technology“, International Conference on Advanced Communications Technology (ICACT). [13]“Weather-Pest-disease-relations in Grape : Powdery Mildew, Downy Mildew And Anthracnose ”, Project No.7.