SlideShare a Scribd company logo
1 of 5
Download to read offline
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD27899 | Volume – 3 | Issue – 5 | July - August 2019 Page 2187
Pest Classification and Pesticide Recommendation System
Myat Mon Kyaw1, San San Nwe1, Myint Myint Yee2
1Faculty of Information Science 2Information Technology Supporting and Maintaining Department
1,2University of Computer Studies, Maubin, Myanmar
How to cite this paper: Myat Mon Kyaw |
San San Nwe | Myint Myint Yee "Pest
Classification and
Pesticide
Recommendation
System" Published
in International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 | Issue-5, August 2019,
pp.2187-2191,
https://doi.org/10.31142/ijtsrd27899
Copyright © 2019 by author(s) and
International Journal ofTrend inScientific
Research and
Development Journal.
This is an Open
Access article distributed undertheterms
of the Creative Commons Attribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
Myanmar is an agricultural country and agriculture constitutes the largest
sector of the economy. Recognizing of pests is a vital problem especially for
farmers, agricultural researchers, and environmentalists. The proposed
system is to classify the types of pest using the CNN model, whichis oftenused
when applying deep learning to imageprocessing,andtorecommendthemost
suitable pesticide according to the type of pest. This system will help to know
easily information of pests and pesticides which should be used to the user.
Using a public dataset of 1265 images of pests, a convolutional network and
supervised methods are trained to classify four kinds of pest species and
recommend the suitable pesticides.
KEYWORDS: CNN
INTRODUCTION
Agriculture not only provides food for thehuman existencebutalsoa bigsource
for the economy of any country. In agriculture, pest control has always been
considered as the most challenging task for farmers. Most of the farmers used
the traditional pest management methods which is the regular spray program
based on schedules rather than the presence of insect pests on thepaddy fields.
Insects and pests damage the crops and, thus,areverydangerous fortheoverall
growth of the crop. So, there is a need to detect these pests at all stages of their
lifecycle: One method to protect the crop is early pest detection so that thecrop
can be protected from pests’ attack. If useful pests are detected, appropriate
measures can be taken to protect the crop from a big productionlossattheend.
Early detection would be helpful for minimizing theusage of
the pesticides and would provide guidance for the selection
of the pesticides. Early detection of the pests in crops is a
major challenge facing farmers during these days. Manual
examination of wide crop fields is very time consuming and
less effective. It also requires availability of experts, so it
becomes a very costly activity. Automation of pest
recognition is an important process for the fields working
with pests.
A. Convolutional Neural Network
A convolutional neural network is an artificial neural
network that presents a sparse connectivity, on biological
inspiration, and it is applied with success in many computer
vision problems. In the classification problem, the structure
of a convolutional neural network is the series of
computational blocks (or layers) stacking together and
ending with a classifier, Convolutional neural networks
(CNNs) have become popular especially in computer vision
in the last few years because of outstanding performance on
different tasks, such as image classifications. Convolutional
Networks are a category of Neural Networks that have
proven very effective in areas such as image recognitionand
classification.
B. CNN Architecture
 LeNet-5, a pioneering 7-level convolutional network by
LeCun et al in 1998, that classifies digits, was applied by
several banks to recognize hand-written numbers on
checks digitized in 32x32 pixel greyscale input images.
The ability to process higher resolution images requires
larger and more convolutional layers, so this technique
is constrained by the availability of computing
resources.
 AlexNet significantly outperformed all the prior
competitors and won the challenge by reducing the top-
5 error from 26% to 15.3%. The second place top-5
error rate, which was not a CNN variation, was around
26.2%. The network had a very similar architecture as
LeNet by Yann LeCun et al but was deeper, with more
filters per layer, and withstacked convolutional layers.It
consisted 11x11, 5x5,3x3, convolutions, max pooling,
dropout, data augmentation, ReLU activations,SGDwith
momentum.
 The winner of the ILSVRC 2014 competition was
GoogLeNet (a.k.a. Inception V1) fromGoogle.Itachieved
a top-5 error rate of 6.67%! This was very close to
human level performance which the organizers of the
challenge were now forced to evaluate. As it turns out,
this was actually rather hard to do and required some
human training in order to beat GoogLeNet accuracy.
After a few days of training, the human expert (Andrej
Karpathy) was able to achieve a top-5 error rate of
5.1%(single model) and 3.6%(ensemble). The network
used CNN inspired by LeNet but implemented a novel
element which is dubbed an inception module. It used
batch normalization, image distortions and RMSprop.
This module is based on several very small convolutions
in order to drastically reduce the numberofparameters.
Their architecture consisted of a 22-layer deep CNN but
IJTSRD27899
International Journal of Trend in Scientific Research and Development (IJTSRD)
@ IJTSRD | Unique Paper ID – IJTSRD27899
reduced the number of parameters from 60 million
(AlexNet) to 4 million.
 ILSVRC 2013 winner was also CNN which became
known as ZFNet. It achieved a top-5 error rate of 14.8%
which is now already half of the prior mentioned non
neural error rate. It was mostly an achievement by
tweaking the hyper-parameters of AlexNet while
maintaining the same structure with additional Deep
Learning elements.
 AlexNet has parallel two CNN line trained on two GPUs
with cross-connections, GoogLeNet has inception
modules, ResNet has residualconnections.At theILSVRC
2015, the so called ResidualNeural Network (ResNet)by
Kaiming He et al introduced anovel architecture with
“skip connections” and features heavy batch
normalization. Such skip connections are also known as
gated units or gated recurrent units and have a strong
similarity to recent successfulelementsappliedinRNNs.
Because of this technique, it is possible to train a NN
with 152 layers while still having lower complexitythan
VGGNet. It achieves a top-5 error rate of 3.57% which
beats human-level performance on this dataset.
C. GoogLeNet/Inception
By the “GoogLeNet” name, it willbereferredtotheparticular
incarnation of the Inception architectureusedfortheILSVRC
2014 competition. It also be used one deeper and wider
Inception network with slightly superior quality, but adding
it to the ensemble seemed to improve the results only
marginally. The details of that network are omitted, as
empirical evidence suggests that the influen
architectural parameters is relatively minor. The network
was designed with computational efficiency and practicality
in mind, so that inference can be run on individual devices
including even those with limited computational resources,
especially with low-memory footprint.
Figure1. GoogLeNet Structure
D. Training Methodology
GoogLeNet networks were trained using the DistBelief
distributed machine learning system using modest amount
of model and data-parallelism. Although we used a CPU
based implementation only, a rough estimate suggests that
the GoogLeNet network could be trained to convergence
using few high-end GPUs within a week, the main limitation
being the memory usage. Image sampling methods have
changed substantially over the months leading to the
competition, and already converged models weretrainedon
with other options, some- times in conjunctionwithchanged
hyperparameters, such as dropout and the learning rate.
Therefore, it is hard to give a definitive guidance to the most
effective single way to train these networks.
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com
27899 | Volume – 3 | Issue – 5 | July - August 20
reduced the number of parameters from 60 million
ILSVRC 2013 winner was also CNN which became
5 error rate of 14.8%
which is now already half of the prior mentioned non-
neural error rate. It was mostly an achievement by
parameters of AlexNet while
maintaining the same structure with additional Deep
AlexNet has parallel two CNN line trained on two GPUs
t has inception
modules, ResNet has residualconnections.At theILSVRC
2015, the so called ResidualNeural Network (ResNet)by
Kaiming He et al introduced anovel architecture with
“skip connections” and features heavy batch
tions are also known as
gated units or gated recurrent units and have a strong
similarity to recent successfulelementsappliedinRNNs.
Because of this technique, it is possible to train a NN
with 152 layers while still having lower complexitythan
5 error rate of 3.57% which
level performance on this dataset.
By the “GoogLeNet” name, it willbereferredtotheparticular
incarnation of the Inception architectureusedfortheILSVRC
on. It also be used one deeper and wider
Inception network with slightly superior quality, but adding
it to the ensemble seemed to improve the results only
marginally. The details of that network are omitted, as
empirical evidence suggests that the influence of the exact
architectural parameters is relatively minor. The network
was designed with computational efficiency and practicality
in mind, so that inference can be run on individual devices
including even those with limited computational resources,
GoogLeNet Structure
GoogLeNet networks were trained using the DistBelief
distributed machine learning system using modest amount
parallelism. Although we used a CPU
based implementation only, a rough estimate suggests that
the GoogLeNet network could be trained to convergence
week, the main limitation
being the memory usage. Image sampling methods have
changed substantially over the months leading to the
competition, and already converged models weretrainedon
times in conjunctionwithchanged
rameters, such as dropout and the learning rate.
Therefore, it is hard to give a definitive guidance to the most
effective single way to train these networks.
E. System Design
Figure2: System Design
F. Detail of the system
In first stage, training is performedand1265imagesareused
as the training images. In the training process, firstly, the
program takes the four types of pest images as the training
data. Then, the training data is trained using Convolutional
Neural Network model, GoogLeNet. Finally,
features are stored in a CNN feature set.
In second stage, testing will be done. In the testing process,
the user must input the test pest image. The user’s input pest
image will be classified by CNN and the system will give the
result what kind of the pest. Lastly, the system will give the
most probabilistic answer ofwhich group the pest is belongs
to and recommend the most suitable pesticide for it.
When the system gives the type of pest, four rules are usedto
emphasize this type of pest.
Rule:1
If the type of pest is “hadda beetle”
Then the Name is “Hadda Beetle”
And the Family is “Coccinellidae”
And the Scientific Name is “Henosepilachna
vigintioctopunctata”
And the Order is “Beetle”
Rule:2
If the type of pest is “green stink bug”
Then the Name is “Green Stink Bug”
And the Family is “Pentatomidae”
And the Scientific Name is “Chinavia hilaris”
And the Order is “Hemiptera”
Rule:3
If the type of pest is “looper”
Then the Name is “Looper”
And the Family is “Noctuidae”
And the Scientific Name is “Trichoplusia ni”
And the Order is “Lepidoptera”
Rule:4
If the type of pest is “black cutworm”
Then the Name is “Black Cutworm”
And the Family is “Noctuidae”
And the Scientific Name is “Agrotis ipsilon”
And the Order is “Lepidoptera”
www.ijtsrd.com eISSN: 2456-6470
August 2019 Page 2188
Figure2: System Design
formedand1265imagesareused
as the training images. In the training process, firstly, the
program takes the four types of pest images as the training
data. Then, the training data is trained using Convolutional
Neural Network model, GoogLeNet. Finally, the resulted
features are stored in a CNN feature set.
In second stage, testing will be done. In the testing process,
the user must input the test pest image. The user’s input pest
image will be classified by CNN and the system will give the
result what kind of the pest. Lastly, the system will give the
robabilistic answer ofwhich group the pest is belongs
to and recommend the most suitable pesticide for it.
When the system gives the type of pest, four rules are usedto
the type of pest is “hadda beetle”
Name is “Hadda Beetle”
the Family is “Coccinellidae”
the Scientific Name is “Henosepilachna
the Order is “Beetle”
the type of pest is “green stink bug”
the Name is “Green Stink Bug”
atomidae”
the Scientific Name is “Chinavia hilaris”
the Order is “Hemiptera”
the type of pest is “looper”
the Name is “Looper”
the Family is “Noctuidae”
the Scientific Name is “Trichoplusia ni”
“Lepidoptera”
the type of pest is “black cutworm”
the Name is “Black Cutworm”
the Family is “Noctuidae”
the Scientific Name is “Agrotis ipsilon”
the Order is “Lepidoptera”
International Journal of Trend in Scientific Research and Development (IJTSRD)
@ IJTSRD | Unique Paper ID – IJTSRD27899
G. System Implementation
Figure3: Welcome Page
Figure4: Process for ‘Start’ button
When the user clicks the ‘Start’button, the pests’information
will appear as shown in figure 4.
The user will see the facts of the pests that damage the crops
and plants. When the user clicks the button of
(hadda beetle)’, the damage signature and life cycle of this
hadda beetle will be displayed as shown in figure 5. When
the user clicks the button of ‘ထြာေကာင္စိမ္း
damage signature and life cycle of this looper will be
displayed as shown in figure 6. When the user clicks the
button of ‘ပင္ျဖတ္ပိုး(black cutworm)’, the damage signature
and life cycle of this black cutworm will be displayed as
shown in figure 7. When the user clicksthebuttonof
(green stink bug)’, the damage signature and lifecycleofthis
green stink bug will be displayed as shown in figure 8.
Figure5: Knowledge page for hadda beetle
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com
27899 | Volume – 3 | Issue – 5 | July - August 20
Figure3: Welcome Page
Figure4: Process for ‘Start’ button
When the user clicks the ‘Start’button, the pests’information
The user will see the facts of the pests that damage the crops
and plants. When the user clicks the button of ‘လိပ္ခံုးက်ိဳင္း
’, the damage signature and life cycle of this
hadda beetle will be displayed as shown in figure 5. When
ထြာေကာင္စိမ္း (looper)’, the
damage signature and life cycle of this looper will be
yed as shown in figure 6. When the user clicks the
’, the damage signature
and life cycle of this black cutworm will be displayed as
shown in figure 7. When the user clicksthebuttonof‘ဂ်ပိုးစိမ္း
the damage signature and lifecycleofthis
green stink bug will be displayed as shown in figure 8.
hadda beetle
Figure6: Knowledge page for
Figure7: Knowledge page for
Figure8: Knowledge page
If the user chooses the image of ‘Green Stink Bug’ as an input
and clicks ‘Classify Process’, the system will classify the type
of pest as Green Stink Bug and display Name of this pest,
Family Name of this pest, Scientific Name and Ord
Figure 9: Classification Process for green stink bug
If the user clicks ‘Instruction’ button, the respective
instruction for the pests will be appeared as shown in figure
10.
www.ijtsrd.com eISSN: 2456-6470
August 2019 Page 2189
Knowledge page for looper
Knowledge page for black cutworm
8: Knowledge page for green stink bug
If the user chooses the image of ‘Green Stink Bug’ as an input
and clicks ‘Classify Process’, the system will classify the type
of pest as Green Stink Bug and display Name of this pest,
Family Name of this pest, Scientific Name and Order.
Figure 9: Classification Process for green stink bug
If the user clicks ‘Instruction’ button, the respective
instruction for the pests will be appeared as shown in figure
International Journal of Trend in Scientific Research and Development (IJTSRD)
@ IJTSRD | Unique Paper ID – IJTSRD27899
Figure10: Instruction page for green stink bug
If the user chooses the image of ‘looper’as aninputandclicks
‘Classify Process’, the system will classify the type of pest as
Green Stink Bug and display Name of this pest, Family Name
of this pest, Scientific Name and Order.
Figure11: Classification Process for looper
If the user clicks ‘Instruction’ button, the respective
instruction for the pests will be appeared as shown in figure
12.
Figure 12: Instruction page for looper
If the user chooses the image of ‘black cutworm’ as an input
and clicks ‘Classify Process’, the system will classify the type
of pest as Green Stink Bug and display Name of this pest,
Family Name of this pest, Scientific Name and Order.
Figure13: Classification Process for black cutworm
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com
27899 | Volume – 3 | Issue – 5 | July - August 20
Figure10: Instruction page for green stink bug
image of ‘looper’as aninputandclicks
‘Classify Process’, the system will classify the type of pest as
Green Stink Bug and display Name of this pest, Family Name
11: Classification Process for looper
the user clicks ‘Instruction’ button, the respective
instruction for the pests will be appeared as shown in figure
Figure 12: Instruction page for looper
If the user chooses the image of ‘black cutworm’ as an input
the system will classify the type
of pest as Green Stink Bug and display Name of this pest,
Family Name of this pest, Scientific Name and Order.
13: Classification Process for black cutworm
If the user clicks ‘Instruction’ button, the respective
instruction for the pests will be appeared as shown in figure
14.
Figure14: Instruction page for black cutworm
If the user chooses the image of ‘
clicks ‘Classify Process’, the system will classify the type of
pest as Green Stink Bugand display Name of thispest,Family
Name of this pest, Scientific Name and Order.
Figure15: Classification Process for hadda beetle
If the user clicks ‘Instruction’ button, the respective
instruction for the pests will be appeared as shown in
16.
Figure16: Instruction page for hadda beetle
H. Conclusion
Pest recognition and pesticide recommendation can play an
essential role in agriculture to help farmers, to know
information of pests and pesticides which should be used.
The user can get knowledge about the type of pest in
agriculture and pesticide for this pest. The user inputs test
image is classified and recognized which type
using CNN classifier. And then, by using rules
the suitable pesticide according to the type of pest is
recommended. The failure to recognize/verify animage was
due to poor image quality and high similarity between four
pests. This system is implemented with Mat lab
programming.
www.ijtsrd.com eISSN: 2456-6470
August 2019 Page 2190
If the user clicks ‘Instruction’ button, the respective
nstruction for the pests will be appeared as shown in figure
14: Instruction page for black cutworm
If the user chooses the image of ‘hadda beetle’asaninputand
clicks ‘Classify Process’, the system will classify the type of
tink Bugand display Name of thispest,Family
Name of this pest, Scientific Name and Order.
15: Classification Process for hadda beetle
If the user clicks ‘Instruction’ button, the respective
instruction for the pests will be appeared as shown in figure
16: Instruction page for hadda beetle
Pest recognition and pesticide recommendation can play an
agriculture to help farmers, to know
information of pests and pesticides which should be used.
The user can get knowledge about the type of pest in
agriculture and pesticide for this pest. The user inputs test
image is classified and recognized which type of pest it is by
using CNN classifier. And then, by using rules-based method,
the suitable pesticide according to the type of pest is
recommended. The failure to recognize/verify animage was
due to poor image quality and high similarity between four
. This system is implemented with Mat lab
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD27899 | Volume – 3 | Issue – 5 | July - August 2019 Page 2191
References
[1] Chowdhury Rafeed Rahman, Preetom Saha Arko,
“Identification and Recognition of Rice Disease and
Pests Using Convolutional Neural Networks”, 14 May,
2019.
[2] Chee Seng Chan, Sue Han Lee, “Deep-Plant: Plant
Identification with Convolutional Neural Networks,
Kingston University, United Kingdom, 28 June 2015.
[3] Emanuel Cortes, “Plant Disease Classification Using
Convolutional Neural Networks and Generative
Adversarial Networks, Stanford University.
[4] RuJing Wang, Jie Zhang, “A Crop Pests Image
Classification Algorithm Based on Deep Convolutional
Neural Network, September 2017.
[5] Srdjan Sladojevic, “Deep Neural Network Based
Recognition of Plant Diseases by Leaf Image
Classification”, Computational Intelligence and
Neuroscience, Volume 2016.

More Related Content

What's hot

Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...
Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...
Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...
Simplilearn
 
Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...
Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...
Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...
Simplilearn
 
Transfer Learning and Fine-tuning Deep Neural Networks
 Transfer Learning and Fine-tuning Deep Neural Networks Transfer Learning and Fine-tuning Deep Neural Networks
Transfer Learning and Fine-tuning Deep Neural Networks
PyData
 

What's hot (20)

Hands on machine learning with scikit-learn and tensor flow by ahmed yousry
Hands on machine learning with scikit-learn and tensor flow by ahmed yousryHands on machine learning with scikit-learn and tensor flow by ahmed yousry
Hands on machine learning with scikit-learn and tensor flow by ahmed yousry
 
Python Presentation
Python PresentationPython Presentation
Python Presentation
 
Convolutional Neural Networks
Convolutional Neural NetworksConvolutional Neural Networks
Convolutional Neural Networks
 
Convolutional neural network
Convolutional neural networkConvolutional neural network
Convolutional neural network
 
Deep learning with tensorflow
Deep learning with tensorflowDeep learning with tensorflow
Deep learning with tensorflow
 
Facial Expression Recognitino
Facial Expression RecognitinoFacial Expression Recognitino
Facial Expression Recognitino
 
Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...
Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...
Deep Learning With Python | Deep Learning And Neural Networks | Deep Learning...
 
ViT (Vision Transformer) Review [CDM]
ViT (Vision Transformer) Review [CDM]ViT (Vision Transformer) Review [CDM]
ViT (Vision Transformer) Review [CDM]
 
Face recognition v1
Face recognition v1Face recognition v1
Face recognition v1
 
Deep neural networks
Deep neural networksDeep neural networks
Deep neural networks
 
neural networks
 neural networks neural networks
neural networks
 
Deep learning presentation
Deep learning presentationDeep learning presentation
Deep learning presentation
 
AlexNet(ImageNet Classification with Deep Convolutional Neural Networks)
AlexNet(ImageNet Classification with Deep Convolutional Neural Networks)AlexNet(ImageNet Classification with Deep Convolutional Neural Networks)
AlexNet(ImageNet Classification with Deep Convolutional Neural Networks)
 
Facial Emotion Recognition: A Deep Learning approach
Facial Emotion Recognition: A Deep Learning approachFacial Emotion Recognition: A Deep Learning approach
Facial Emotion Recognition: A Deep Learning approach
 
Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...
Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...
Convolutional Neural Network - CNN | How CNN Works | Deep Learning Course | S...
 
Convolutional neural network
Convolutional neural networkConvolutional neural network
Convolutional neural network
 
Convolutional Neural Network and Its Applications
Convolutional Neural Network and Its ApplicationsConvolutional Neural Network and Its Applications
Convolutional Neural Network and Its Applications
 
Facial Expression Recognition
Facial Expression Recognition Facial Expression Recognition
Facial Expression Recognition
 
Image classification using CNN
Image classification using CNNImage classification using CNN
Image classification using CNN
 
Transfer Learning and Fine-tuning Deep Neural Networks
 Transfer Learning and Fine-tuning Deep Neural Networks Transfer Learning and Fine-tuning Deep Neural Networks
Transfer Learning and Fine-tuning Deep Neural Networks
 

Similar to Pest Classification and Pesticide Recommendation System

A deep learning-based approach for early detection of disease in sugarcane pl...
A deep learning-based approach for early detection of disease in sugarcane pl...A deep learning-based approach for early detection of disease in sugarcane pl...
A deep learning-based approach for early detection of disease in sugarcane pl...
IAESIJAI
 
Hyper-parameter optimization of convolutional neural network based on particl...
Hyper-parameter optimization of convolutional neural network based on particl...Hyper-parameter optimization of convolutional neural network based on particl...
Hyper-parameter optimization of convolutional neural network based on particl...
journalBEEI
 
weed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjj
weed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjjweed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjj
weed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjj
nareshjakaram5
 

Similar to Pest Classification and Pesticide Recommendation System (20)

IRJET- CROP MONITORING: Using Mobilenet Models
IRJET- CROP MONITORING: Using Mobilenet ModelsIRJET- CROP MONITORING: Using Mobilenet Models
IRJET- CROP MONITORING: Using Mobilenet Models
 
AUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEMAUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEM
 
Deep Learning based Multi-class Brain Tumor Classification
Deep Learning based Multi-class Brain Tumor ClassificationDeep Learning based Multi-class Brain Tumor Classification
Deep Learning based Multi-class Brain Tumor Classification
 
A deep learning-based approach for early detection of disease in sugarcane pl...
A deep learning-based approach for early detection of disease in sugarcane pl...A deep learning-based approach for early detection of disease in sugarcane pl...
A deep learning-based approach for early detection of disease in sugarcane pl...
 
RICE INSECTS CLASSIFICATION USIING TRANSFER LEARNING AND CNN
RICE INSECTS CLASSIFICATION USIING TRANSFER LEARNING AND CNNRICE INSECTS CLASSIFICATION USIING TRANSFER LEARNING AND CNN
RICE INSECTS CLASSIFICATION USIING TRANSFER LEARNING AND CNN
 
IRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET- A Survey on Medical Image Interpretation for Predicting PneumoniaIRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
 
IRJET-Breast Cancer Detection using Convolution Neural Network
IRJET-Breast Cancer Detection using Convolution Neural NetworkIRJET-Breast Cancer Detection using Convolution Neural Network
IRJET-Breast Cancer Detection using Convolution Neural Network
 
Green leaf disease detection and identification using Raspberry Pi
Green leaf disease detection and identification using Raspberry PiGreen leaf disease detection and identification using Raspberry Pi
Green leaf disease detection and identification using Raspberry Pi
 
Covid Detection Using Lung X-ray Images
Covid Detection Using Lung X-ray ImagesCovid Detection Using Lung X-ray Images
Covid Detection Using Lung X-ray Images
 
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
 
Medical Herb Identification and It’s Benefits
Medical Herb Identification and It’s BenefitsMedical Herb Identification and It’s Benefits
Medical Herb Identification and It’s Benefits
 
ORGANIC PRODUCT DISEASE DETECTION USING CNN
ORGANIC PRODUCT DISEASE DETECTION USING CNNORGANIC PRODUCT DISEASE DETECTION USING CNN
ORGANIC PRODUCT DISEASE DETECTION USING CNN
 
Plant Disease Doctor App
Plant Disease Doctor AppPlant Disease Doctor App
Plant Disease Doctor App
 
IRJET- A Fruit Quality Inspection Sytem using Faster Region Convolutional...
IRJET-  	  A Fruit Quality Inspection Sytem using Faster Region Convolutional...IRJET-  	  A Fruit Quality Inspection Sytem using Faster Region Convolutional...
IRJET- A Fruit Quality Inspection Sytem using Faster Region Convolutional...
 
IRJET- A Study of Different Convolution Neural Network Architectures for Huma...
IRJET- A Study of Different Convolution Neural Network Architectures for Huma...IRJET- A Study of Different Convolution Neural Network Architectures for Huma...
IRJET- A Study of Different Convolution Neural Network Architectures for Huma...
 
Malaria Detection System Using Microscopic Blood Smear Image
Malaria Detection System Using Microscopic Blood Smear ImageMalaria Detection System Using Microscopic Blood Smear Image
Malaria Detection System Using Microscopic Blood Smear Image
 
DETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PI
DETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PIDETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PI
DETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PI
 
DETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PI
DETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PIDETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PI
DETECTION OF DIFFERENT TYPES OF SKIN DISEASES USING RASPBERRY PI
 
Hyper-parameter optimization of convolutional neural network based on particl...
Hyper-parameter optimization of convolutional neural network based on particl...Hyper-parameter optimization of convolutional neural network based on particl...
Hyper-parameter optimization of convolutional neural network based on particl...
 
weed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjj
weed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjjweed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjj
weed detecion hhjjjjjhhbnjjjnjffhjjkkjhjjj
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
ijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
ijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
ijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
ijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
ijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
EADTU
 
Contoh Aksi Nyata Refleksi Diri ( NUR ).pdf
Contoh Aksi Nyata Refleksi Diri ( NUR ).pdfContoh Aksi Nyata Refleksi Diri ( NUR ).pdf
Contoh Aksi Nyata Refleksi Diri ( NUR ).pdf
cupulin
 
SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project research
CaitlinCummins3
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
中 央社
 

Recently uploaded (20)

Andreas Schleicher presents at the launch of What does child empowerment mean...
Andreas Schleicher presents at the launch of What does child empowerment mean...Andreas Schleicher presents at the launch of What does child empowerment mean...
Andreas Schleicher presents at the launch of What does child empowerment mean...
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
 
Major project report on Tata Motors and its marketing strategies
Major project report on Tata Motors and its marketing strategiesMajor project report on Tata Motors and its marketing strategies
Major project report on Tata Motors and its marketing strategies
 
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfFICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
 
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptxAnalyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
 
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
 
The Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFThe Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDF
 
male presentation...pdf.................
male presentation...pdf.................male presentation...pdf.................
male presentation...pdf.................
 
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMDEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
 
Supporting Newcomer Multilingual Learners
Supporting Newcomer  Multilingual LearnersSupporting Newcomer  Multilingual Learners
Supporting Newcomer Multilingual Learners
 
How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17
 
VAMOS CUIDAR DO NOSSO PLANETA! .
VAMOS CUIDAR DO NOSSO PLANETA!                    .VAMOS CUIDAR DO NOSSO PLANETA!                    .
VAMOS CUIDAR DO NOSSO PLANETA! .
 
Contoh Aksi Nyata Refleksi Diri ( NUR ).pdf
Contoh Aksi Nyata Refleksi Diri ( NUR ).pdfContoh Aksi Nyata Refleksi Diri ( NUR ).pdf
Contoh Aksi Nyata Refleksi Diri ( NUR ).pdf
 
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community PartnershipsSpring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
 
The Liver & Gallbladder (Anatomy & Physiology).pptx
The Liver &  Gallbladder (Anatomy & Physiology).pptxThe Liver &  Gallbladder (Anatomy & Physiology).pptx
The Liver & Gallbladder (Anatomy & Physiology).pptx
 
SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project research
 
Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"
 
Improved Approval Flow in Odoo 17 Studio App
Improved Approval Flow in Odoo 17 Studio AppImproved Approval Flow in Odoo 17 Studio App
Improved Approval Flow in Odoo 17 Studio App
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
 

Pest Classification and Pesticide Recommendation System

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD27899 | Volume – 3 | Issue – 5 | July - August 2019 Page 2187 Pest Classification and Pesticide Recommendation System Myat Mon Kyaw1, San San Nwe1, Myint Myint Yee2 1Faculty of Information Science 2Information Technology Supporting and Maintaining Department 1,2University of Computer Studies, Maubin, Myanmar How to cite this paper: Myat Mon Kyaw | San San Nwe | Myint Myint Yee "Pest Classification and Pesticide Recommendation System" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019, pp.2187-2191, https://doi.org/10.31142/ijtsrd27899 Copyright © 2019 by author(s) and International Journal ofTrend inScientific Research and Development Journal. This is an Open Access article distributed undertheterms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT Myanmar is an agricultural country and agriculture constitutes the largest sector of the economy. Recognizing of pests is a vital problem especially for farmers, agricultural researchers, and environmentalists. The proposed system is to classify the types of pest using the CNN model, whichis oftenused when applying deep learning to imageprocessing,andtorecommendthemost suitable pesticide according to the type of pest. This system will help to know easily information of pests and pesticides which should be used to the user. Using a public dataset of 1265 images of pests, a convolutional network and supervised methods are trained to classify four kinds of pest species and recommend the suitable pesticides. KEYWORDS: CNN INTRODUCTION Agriculture not only provides food for thehuman existencebutalsoa bigsource for the economy of any country. In agriculture, pest control has always been considered as the most challenging task for farmers. Most of the farmers used the traditional pest management methods which is the regular spray program based on schedules rather than the presence of insect pests on thepaddy fields. Insects and pests damage the crops and, thus,areverydangerous fortheoverall growth of the crop. So, there is a need to detect these pests at all stages of their lifecycle: One method to protect the crop is early pest detection so that thecrop can be protected from pests’ attack. If useful pests are detected, appropriate measures can be taken to protect the crop from a big productionlossattheend. Early detection would be helpful for minimizing theusage of the pesticides and would provide guidance for the selection of the pesticides. Early detection of the pests in crops is a major challenge facing farmers during these days. Manual examination of wide crop fields is very time consuming and less effective. It also requires availability of experts, so it becomes a very costly activity. Automation of pest recognition is an important process for the fields working with pests. A. Convolutional Neural Network A convolutional neural network is an artificial neural network that presents a sparse connectivity, on biological inspiration, and it is applied with success in many computer vision problems. In the classification problem, the structure of a convolutional neural network is the series of computational blocks (or layers) stacking together and ending with a classifier, Convolutional neural networks (CNNs) have become popular especially in computer vision in the last few years because of outstanding performance on different tasks, such as image classifications. Convolutional Networks are a category of Neural Networks that have proven very effective in areas such as image recognitionand classification. B. CNN Architecture  LeNet-5, a pioneering 7-level convolutional network by LeCun et al in 1998, that classifies digits, was applied by several banks to recognize hand-written numbers on checks digitized in 32x32 pixel greyscale input images. The ability to process higher resolution images requires larger and more convolutional layers, so this technique is constrained by the availability of computing resources.  AlexNet significantly outperformed all the prior competitors and won the challenge by reducing the top- 5 error from 26% to 15.3%. The second place top-5 error rate, which was not a CNN variation, was around 26.2%. The network had a very similar architecture as LeNet by Yann LeCun et al but was deeper, with more filters per layer, and withstacked convolutional layers.It consisted 11x11, 5x5,3x3, convolutions, max pooling, dropout, data augmentation, ReLU activations,SGDwith momentum.  The winner of the ILSVRC 2014 competition was GoogLeNet (a.k.a. Inception V1) fromGoogle.Itachieved a top-5 error rate of 6.67%! This was very close to human level performance which the organizers of the challenge were now forced to evaluate. As it turns out, this was actually rather hard to do and required some human training in order to beat GoogLeNet accuracy. After a few days of training, the human expert (Andrej Karpathy) was able to achieve a top-5 error rate of 5.1%(single model) and 3.6%(ensemble). The network used CNN inspired by LeNet but implemented a novel element which is dubbed an inception module. It used batch normalization, image distortions and RMSprop. This module is based on several very small convolutions in order to drastically reduce the numberofparameters. Their architecture consisted of a 22-layer deep CNN but IJTSRD27899
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ IJTSRD | Unique Paper ID – IJTSRD27899 reduced the number of parameters from 60 million (AlexNet) to 4 million.  ILSVRC 2013 winner was also CNN which became known as ZFNet. It achieved a top-5 error rate of 14.8% which is now already half of the prior mentioned non neural error rate. It was mostly an achievement by tweaking the hyper-parameters of AlexNet while maintaining the same structure with additional Deep Learning elements.  AlexNet has parallel two CNN line trained on two GPUs with cross-connections, GoogLeNet has inception modules, ResNet has residualconnections.At theILSVRC 2015, the so called ResidualNeural Network (ResNet)by Kaiming He et al introduced anovel architecture with “skip connections” and features heavy batch normalization. Such skip connections are also known as gated units or gated recurrent units and have a strong similarity to recent successfulelementsappliedinRNNs. Because of this technique, it is possible to train a NN with 152 layers while still having lower complexitythan VGGNet. It achieves a top-5 error rate of 3.57% which beats human-level performance on this dataset. C. GoogLeNet/Inception By the “GoogLeNet” name, it willbereferredtotheparticular incarnation of the Inception architectureusedfortheILSVRC 2014 competition. It also be used one deeper and wider Inception network with slightly superior quality, but adding it to the ensemble seemed to improve the results only marginally. The details of that network are omitted, as empirical evidence suggests that the influen architectural parameters is relatively minor. The network was designed with computational efficiency and practicality in mind, so that inference can be run on individual devices including even those with limited computational resources, especially with low-memory footprint. Figure1. GoogLeNet Structure D. Training Methodology GoogLeNet networks were trained using the DistBelief distributed machine learning system using modest amount of model and data-parallelism. Although we used a CPU based implementation only, a rough estimate suggests that the GoogLeNet network could be trained to convergence using few high-end GPUs within a week, the main limitation being the memory usage. Image sampling methods have changed substantially over the months leading to the competition, and already converged models weretrainedon with other options, some- times in conjunctionwithchanged hyperparameters, such as dropout and the learning rate. Therefore, it is hard to give a definitive guidance to the most effective single way to train these networks. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com 27899 | Volume – 3 | Issue – 5 | July - August 20 reduced the number of parameters from 60 million ILSVRC 2013 winner was also CNN which became 5 error rate of 14.8% which is now already half of the prior mentioned non- neural error rate. It was mostly an achievement by parameters of AlexNet while maintaining the same structure with additional Deep AlexNet has parallel two CNN line trained on two GPUs t has inception modules, ResNet has residualconnections.At theILSVRC 2015, the so called ResidualNeural Network (ResNet)by Kaiming He et al introduced anovel architecture with “skip connections” and features heavy batch tions are also known as gated units or gated recurrent units and have a strong similarity to recent successfulelementsappliedinRNNs. Because of this technique, it is possible to train a NN with 152 layers while still having lower complexitythan 5 error rate of 3.57% which level performance on this dataset. By the “GoogLeNet” name, it willbereferredtotheparticular incarnation of the Inception architectureusedfortheILSVRC on. It also be used one deeper and wider Inception network with slightly superior quality, but adding it to the ensemble seemed to improve the results only marginally. The details of that network are omitted, as empirical evidence suggests that the influence of the exact architectural parameters is relatively minor. The network was designed with computational efficiency and practicality in mind, so that inference can be run on individual devices including even those with limited computational resources, GoogLeNet Structure GoogLeNet networks were trained using the DistBelief distributed machine learning system using modest amount parallelism. Although we used a CPU based implementation only, a rough estimate suggests that the GoogLeNet network could be trained to convergence week, the main limitation being the memory usage. Image sampling methods have changed substantially over the months leading to the competition, and already converged models weretrainedon times in conjunctionwithchanged rameters, such as dropout and the learning rate. Therefore, it is hard to give a definitive guidance to the most effective single way to train these networks. E. System Design Figure2: System Design F. Detail of the system In first stage, training is performedand1265imagesareused as the training images. In the training process, firstly, the program takes the four types of pest images as the training data. Then, the training data is trained using Convolutional Neural Network model, GoogLeNet. Finally, features are stored in a CNN feature set. In second stage, testing will be done. In the testing process, the user must input the test pest image. The user’s input pest image will be classified by CNN and the system will give the result what kind of the pest. Lastly, the system will give the most probabilistic answer ofwhich group the pest is belongs to and recommend the most suitable pesticide for it. When the system gives the type of pest, four rules are usedto emphasize this type of pest. Rule:1 If the type of pest is “hadda beetle” Then the Name is “Hadda Beetle” And the Family is “Coccinellidae” And the Scientific Name is “Henosepilachna vigintioctopunctata” And the Order is “Beetle” Rule:2 If the type of pest is “green stink bug” Then the Name is “Green Stink Bug” And the Family is “Pentatomidae” And the Scientific Name is “Chinavia hilaris” And the Order is “Hemiptera” Rule:3 If the type of pest is “looper” Then the Name is “Looper” And the Family is “Noctuidae” And the Scientific Name is “Trichoplusia ni” And the Order is “Lepidoptera” Rule:4 If the type of pest is “black cutworm” Then the Name is “Black Cutworm” And the Family is “Noctuidae” And the Scientific Name is “Agrotis ipsilon” And the Order is “Lepidoptera” www.ijtsrd.com eISSN: 2456-6470 August 2019 Page 2188 Figure2: System Design formedand1265imagesareused as the training images. In the training process, firstly, the program takes the four types of pest images as the training data. Then, the training data is trained using Convolutional Neural Network model, GoogLeNet. Finally, the resulted features are stored in a CNN feature set. In second stage, testing will be done. In the testing process, the user must input the test pest image. The user’s input pest image will be classified by CNN and the system will give the result what kind of the pest. Lastly, the system will give the robabilistic answer ofwhich group the pest is belongs to and recommend the most suitable pesticide for it. When the system gives the type of pest, four rules are usedto the type of pest is “hadda beetle” Name is “Hadda Beetle” the Family is “Coccinellidae” the Scientific Name is “Henosepilachna the Order is “Beetle” the type of pest is “green stink bug” the Name is “Green Stink Bug” atomidae” the Scientific Name is “Chinavia hilaris” the Order is “Hemiptera” the type of pest is “looper” the Name is “Looper” the Family is “Noctuidae” the Scientific Name is “Trichoplusia ni” “Lepidoptera” the type of pest is “black cutworm” the Name is “Black Cutworm” the Family is “Noctuidae” the Scientific Name is “Agrotis ipsilon” the Order is “Lepidoptera”
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ IJTSRD | Unique Paper ID – IJTSRD27899 G. System Implementation Figure3: Welcome Page Figure4: Process for ‘Start’ button When the user clicks the ‘Start’button, the pests’information will appear as shown in figure 4. The user will see the facts of the pests that damage the crops and plants. When the user clicks the button of (hadda beetle)’, the damage signature and life cycle of this hadda beetle will be displayed as shown in figure 5. When the user clicks the button of ‘ထြာေကာင္စိမ္း damage signature and life cycle of this looper will be displayed as shown in figure 6. When the user clicks the button of ‘ပင္ျဖတ္ပိုး(black cutworm)’, the damage signature and life cycle of this black cutworm will be displayed as shown in figure 7. When the user clicksthebuttonof (green stink bug)’, the damage signature and lifecycleofthis green stink bug will be displayed as shown in figure 8. Figure5: Knowledge page for hadda beetle International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com 27899 | Volume – 3 | Issue – 5 | July - August 20 Figure3: Welcome Page Figure4: Process for ‘Start’ button When the user clicks the ‘Start’button, the pests’information The user will see the facts of the pests that damage the crops and plants. When the user clicks the button of ‘လိပ္ခံုးက်ိဳင္း ’, the damage signature and life cycle of this hadda beetle will be displayed as shown in figure 5. When ထြာေကာင္စိမ္း (looper)’, the damage signature and life cycle of this looper will be yed as shown in figure 6. When the user clicks the ’, the damage signature and life cycle of this black cutworm will be displayed as shown in figure 7. When the user clicksthebuttonof‘ဂ်ပိုးစိမ္း the damage signature and lifecycleofthis green stink bug will be displayed as shown in figure 8. hadda beetle Figure6: Knowledge page for Figure7: Knowledge page for Figure8: Knowledge page If the user chooses the image of ‘Green Stink Bug’ as an input and clicks ‘Classify Process’, the system will classify the type of pest as Green Stink Bug and display Name of this pest, Family Name of this pest, Scientific Name and Ord Figure 9: Classification Process for green stink bug If the user clicks ‘Instruction’ button, the respective instruction for the pests will be appeared as shown in figure 10. www.ijtsrd.com eISSN: 2456-6470 August 2019 Page 2189 Knowledge page for looper Knowledge page for black cutworm 8: Knowledge page for green stink bug If the user chooses the image of ‘Green Stink Bug’ as an input and clicks ‘Classify Process’, the system will classify the type of pest as Green Stink Bug and display Name of this pest, Family Name of this pest, Scientific Name and Order. Figure 9: Classification Process for green stink bug If the user clicks ‘Instruction’ button, the respective instruction for the pests will be appeared as shown in figure
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ IJTSRD | Unique Paper ID – IJTSRD27899 Figure10: Instruction page for green stink bug If the user chooses the image of ‘looper’as aninputandclicks ‘Classify Process’, the system will classify the type of pest as Green Stink Bug and display Name of this pest, Family Name of this pest, Scientific Name and Order. Figure11: Classification Process for looper If the user clicks ‘Instruction’ button, the respective instruction for the pests will be appeared as shown in figure 12. Figure 12: Instruction page for looper If the user chooses the image of ‘black cutworm’ as an input and clicks ‘Classify Process’, the system will classify the type of pest as Green Stink Bug and display Name of this pest, Family Name of this pest, Scientific Name and Order. Figure13: Classification Process for black cutworm International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com 27899 | Volume – 3 | Issue – 5 | July - August 20 Figure10: Instruction page for green stink bug image of ‘looper’as aninputandclicks ‘Classify Process’, the system will classify the type of pest as Green Stink Bug and display Name of this pest, Family Name 11: Classification Process for looper the user clicks ‘Instruction’ button, the respective instruction for the pests will be appeared as shown in figure Figure 12: Instruction page for looper If the user chooses the image of ‘black cutworm’ as an input the system will classify the type of pest as Green Stink Bug and display Name of this pest, Family Name of this pest, Scientific Name and Order. 13: Classification Process for black cutworm If the user clicks ‘Instruction’ button, the respective instruction for the pests will be appeared as shown in figure 14. Figure14: Instruction page for black cutworm If the user chooses the image of ‘ clicks ‘Classify Process’, the system will classify the type of pest as Green Stink Bugand display Name of thispest,Family Name of this pest, Scientific Name and Order. Figure15: Classification Process for hadda beetle If the user clicks ‘Instruction’ button, the respective instruction for the pests will be appeared as shown in 16. Figure16: Instruction page for hadda beetle H. Conclusion Pest recognition and pesticide recommendation can play an essential role in agriculture to help farmers, to know information of pests and pesticides which should be used. The user can get knowledge about the type of pest in agriculture and pesticide for this pest. The user inputs test image is classified and recognized which type using CNN classifier. And then, by using rules the suitable pesticide according to the type of pest is recommended. The failure to recognize/verify animage was due to poor image quality and high similarity between four pests. This system is implemented with Mat lab programming. www.ijtsrd.com eISSN: 2456-6470 August 2019 Page 2190 If the user clicks ‘Instruction’ button, the respective nstruction for the pests will be appeared as shown in figure 14: Instruction page for black cutworm If the user chooses the image of ‘hadda beetle’asaninputand clicks ‘Classify Process’, the system will classify the type of tink Bugand display Name of thispest,Family Name of this pest, Scientific Name and Order. 15: Classification Process for hadda beetle If the user clicks ‘Instruction’ button, the respective instruction for the pests will be appeared as shown in figure 16: Instruction page for hadda beetle Pest recognition and pesticide recommendation can play an agriculture to help farmers, to know information of pests and pesticides which should be used. The user can get knowledge about the type of pest in agriculture and pesticide for this pest. The user inputs test image is classified and recognized which type of pest it is by using CNN classifier. And then, by using rules-based method, the suitable pesticide according to the type of pest is recommended. The failure to recognize/verify animage was due to poor image quality and high similarity between four . This system is implemented with Mat lab
  • 5. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD27899 | Volume – 3 | Issue – 5 | July - August 2019 Page 2191 References [1] Chowdhury Rafeed Rahman, Preetom Saha Arko, “Identification and Recognition of Rice Disease and Pests Using Convolutional Neural Networks”, 14 May, 2019. [2] Chee Seng Chan, Sue Han Lee, “Deep-Plant: Plant Identification with Convolutional Neural Networks, Kingston University, United Kingdom, 28 June 2015. [3] Emanuel Cortes, “Plant Disease Classification Using Convolutional Neural Networks and Generative Adversarial Networks, Stanford University. [4] RuJing Wang, Jie Zhang, “A Crop Pests Image Classification Algorithm Based on Deep Convolutional Neural Network, September 2017. [5] Srdjan Sladojevic, “Deep Neural Network Based Recognition of Plant Diseases by Leaf Image Classification”, Computational Intelligence and Neuroscience, Volume 2016.