SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume: 3 | Issue: 4 | May-Jun 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 - 6470
@ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 491
Ayurvedic Herb Detection using Image Processing
Dinesh Shitole, Faisal Tamboli, Krishna Motghare, Raj Kumar Raj
Student, K. K. Wagh Institute of Engineering Education and Research, Nashik, Maharashtra, India
How to cite this paper Dinesh Shitole |
Faisal Tamboli | Krishna Motghare | Raj
Kumar Raj "Ayurvedic Herb Detection
using Image Processing" Published in
International Journal of Trend in
Scientific Research and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-4, June 2019,
pp.491-494, URL:
https://www.ijtsrd.
com/papers/ijtsrd2
3605.pdf
Copyright © 2019 by author(s) and
International Journal of Trend in
Scientific Research and Development
Journal. This is an Open Access article
distributed under
the terms of the
Creative Commons
Attribution License (CC BY 4.0)
(http://creativecommons.org/licenses/
by/4.0)
I. INTRODUCTION
ABSTRACT
Trees are an inseparable part of our ecosystem and thereducingnumberof herb
varieties is a serious problem. To conserve herbs, their immediate identification
by botanists is a must, thus a tool is needed which could identify herbs using
easily accessible details. There is a growing scientific consensus that plant
shelters have been altered and species are dying at rates never seen before. The
biodiversity problem is not just about the problematic state of herbs speciesbut
also of the specialists who know them. This initially requires data about various
plant species, so that they could be foreseen, protected and can be used for next
generation. Plants form the basis of Ayurveda and today's Modern-daymedicine
are a great source of income. Due to cutting of forests and Pollution, lot of
medicinal herb leaves have almost become extinct. So, there is an immediate
need for us to identify them and replant them for the use of next generations.
Leaf Identification by physical means often leads to incorrect identification. Due
to increasing illegal transaction and incorrect practices in the nascent drug
industry on one hand and lack of enough professionals on the other hand, a self-
automated and robust identification and classification mechanism is needed to
manage the huge amount of data and to end the malpractices. This paperaimsat
implementing such system using image processing with images of the plant
leaves as a basis of classification. System returns the closest match to the query.
The proposed algorithm is implemented on 5 different plant species.
Keywords: Gaussian blur, shape features, colour features, contour, thresholding,
perspective transformation
The leaf of the plant is a very important aspect when it
comes to its identification. A plant is affected by many
factors like is environment, the ph. balance of the soil,
depending on the season the plants of the leaves either
sprout or shed. There have been rampant advances in the
field of image processing. This system consists of a camera
which captures the image of the leaf and processes it in
order to generate a textual report detailing the uses and
availability of the plant. Ayurvedic herb detection using
image processing, like in [4]. One drawback in [4] is that the
image which is given as an input must be in a proper
orientation. If the orientation of the image is changed the
result may get affected. The method proposed by this paper
is immune to change in the orientation of the image when
giving it as an input. Many systems available are not real
time and there is need of lot of pre-processingbeforefeeding
the input image to the system. As in [2,4,10] instead of
photographed image, a digitally scanned image is required.
Some system requires sheet of white paper beforeleaf being
photographed [8]. These systems have big loophole as they
require whitebackground.ManysystemsusedSVM classifier
[3,7,9] with PNN neural network [3,9]added toPCA variance
reduction technique [3,9]. For extraction of high frequency
components of leaf images, Fourier transform can be used
[1]. Gaussian blurring is better for higher level of noises the
median blur [8]. Android app can build using texture
extraction algorithm known as Grey level Co-occurrence
matrix (GLCM) [5]. This paper also proposes a presence of
GUI in the form of a web application. The web application
would enable the user to have an administrator access to
edit update different images of leaves. The presence of an
efficient leaf image detection algorithm is essential for
generation of accurate results.
II. SYSTEM METHODOLOGY
A. Captured Image: This system restrains the user to use
the leaf image taken from Smartphoneand showitto the
system. Others digital means of taking image of plant
can be considered provided that the image is to be
shown to the system webcam through the Smartphone
or tablets. The proposed system works fine for any
orientation, contrast and brightness of the leaf image.
B. RGB to Gray: Coloured leaf image of ayurvedic plant is
obtained and RGB image is converted into Gray scale.
Obtained gray scale image isconvertedintobinaryusing
appropriate level of thresholding.
C. Perspective Transform: End user shows the plant leaf
image and system will capture the leaf image with the
background along with curves of the Smartphone.Itwill
be necessity to extract only the leaf image frame from
the rest. For that purpose, perspective transform is an
important task. Perspectivetransform can beperformed
using two functions as below:
IJTSRD23605
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 492
Functions:
cv. GetPerspectiveTransform(src, dst,mapMatrix) →None
Parameters
src – Coordinates of quadrangle vertices in
the source image.
dst – Coordinates of the corresponding
quadrangle vertices in the destination
image.
The function calculates the matrix of a perspective
transforms so that:
where
cv.WarpPerspective(src, dst, mapMatrix,
flags=CV_INTER_LINEAR+CV_WARP_FILL_OUTLIERS,
fillval=(0, 0, 0, 0)) → None
Parameters
src – input image.
dst – output image that has the
size dsize and the same type as src .
M – transformation matrix.
dsize – size of the output image.
flags – combination of interpolation
methods
(INTER_LINEAR or INTER_NEAREST) and
the optional flag WARP_INVERSE_MAP, that
sets M as the inverse transformation
( ).
borderMode – pixel extrapolation method
(BORDER_CONSTANT or BORDER_REPLICA
TE).
borderValue – value used in case of a
constant border; by default, it equals 0.
The function warp Perspective transforms the sourceimage
using the specified matrix:
when the flag WARP_INVERSE_MAP is set. Otherwise, the
transformation is firstinverted with invert() and then putin
the formula above instead of M . Thefunction cannot operate
in-place.
D. Smoothing: On the successful extraction of the leaf
image inside the frame. It is now the best time to apply
smoothing for removing the noise from the image. For
this purpose, you can use guassianblurring.Itisused for
removing the high frequency content from the image. It
is highly effective for removing the guassian noise from
the image. In one-dimension guassian function is
defined as:
When working with images we simply require using two-
dimension guassian function. This is simply the product of
two one-dimension guassian function and is defined as:
E. Dataset: Every system needs some precise and concise
dataset that will perform the required function with
increasing the system complexity. For experimentation
purpose a dummy dataset is created of 40 leaf as no
standard dataset available for ayurvedic herbs. To
increase accuracy, we have taken the image of same
plant from various angle. The resolution of the image is
640 by 420 pixels.
F. Feature Extraction: Different morphological features
considered for the purposeofparametriccalculationare
as follows:
a. Shape Features:
1. Length of leaf: It can be stated as the distance between
the starting point and the ending point onthemajor axis
of the leaf contour.
2. Width of leaf: Itis defined as the distance between the
starting and ending point on the minor axis of the leaf
contour.
3. Diameter: The farthest distance between any two
points reside inside the leaf.
4. Leaf area: Leaf area is calculated as counting the
number of pixels having binary value 1 inside the leaf
margin.
5. Leaf perimeter: The number of pixels covering leaf
margin is termed as leaf perimeter.
6. Aspect ratio: It is defined as Length of leaf to theWidth.
7. Arc Length: It is defined by the integral given below:
The bounds of this integral depend on how you define the
curve. If the curve is the graph of a function y = f(x), replace
the dy term in the integral with f'(x)dx, prime, then factor
out the dx.
8. Rectangularity: It is defined as the similarity between
leaf and the rectangle. It is defined as:
9. Median: It is the middle value of the of data distribution
arranged in any order.
10. Discrete fourier transform: Generalization tothecase
of a discrete function, by letting ,
where , with , ..., . Writing this out
gives the discrete Fourier
transform as
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 493
The inverse transform is then
Discrete Fourier transforms (DFTs) are extremely useful
because they reveal periodicities in input data as well as the
relative strengths of any periodic components. There are
however a few subtleties in the interpretation of discrete
Fourier transforms. In general, the discrete Fourier
transform of a real sequence of numbers will be a sequence
of complex numbers of the same length. If are real,
then and are related by
b. Colour features
Colour moments represent colour features to characterise a
colour image. Features that can be involved are Mean,
Standard deviation, skewness and kurtosis. For RGB colour
space, the features can be extracted from each plane Red,
Green and Blue. The formulas to capture those moments are
Where M and N are the dimension of the image.P(ij) is the
values of the colour on column i and row j. In the
implementation the difference between green meanand red
mean, difference between green mean and blue mean,
difference between green standard deviation and red
standard deviation, difference between green standard
deviation and blue standard deviation, skewness and
kurtosis of the three colour planes are used as parameters in
the implementation of the software.
c. Texture Features
1. Entropy: Entropy measures the disorder of an image
and it achieves its largest value when all elements in P
matrix are equal.
2. Contrast: Contrast feature is a measure of the image
contrast or the amount of local variations present in an
image.
3. Angular Second Moment: Energy, also called Angular
Second Moment and Uniformity is a measure of textural
Uniformity of an image. Energy reaches itshighestvalue
when grey level distribution has either a constant or a
periodic form.
G. Matching: System will try to compare the extractedleaf
image threshold with the image threshold calculated for
the dataset image. It will find the closest possible match
in the dataset. If threshold is less than dataset threshold
then no match output is shown to user. In case of match
is found appropriate plant, description will be shown.
H. Plant Details: This is output phase where the plant
name along with plant description is shown.
Fig: System Architecture
III. IMPLEMENTED ALGORITHM
The main aim of the system is to find the plant from the leaf
fed to the system. Proper care should be taken by the end
user to improve the accuracy. This system will highly
dependent on the brightness, contrast of the background
where the software is used.
The care is taken as much as possible to minimise the effect
of external factor on the system.Butthereissomerestriction
for the end user also. For proper identification theusermust
feed an image of 640 * 480 resolution pixelimageinaproper
jpg extension. The contour, guassian blur, perspective
transform and then canny’s edge detection is used to get the
output. Contour is used to make the background black and
object white. For better accuracy guassian blurring
technique is used for the removal of the noise. Perspective
transform is beneficial for reducing the effectof rotationand
orientation. Canny’s edge detection will connect all the
edges of the curve and to capture the edge of the leaf.
IV. RESULT AND EXPERIMENTATION
The outcome of our system is a web page consisting of plant
name with its description. It is a real time system. A user can
easily get the details of the leaf by showing the image of the
leaf in a square frame. If the image matches withtheimagein
the data set, then it redirects the user to a web page
consisting of the details of the plant. Therearefour windows
open in front of user when it starts the system. 1st one is
main frame which is showing the image captured by the
webcam. Its only purpose is to capture the leaf image
without filtering. 2nd frame is of matching operation which
will try to compare the captured image with image in the
data set. It will extract the leaf image shape from the rest of
the shape. 3rd frame is corrected perspective which will
show the output of the compared image from the dataset. If
dataset has the image, then it redirects the user to the
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 494
desired web page. If not, the it will try to compareunlessand
until user will close the system. 4th frame of contour will
show the shape of filtered curve from the rest of the curves.
The final output will be shown on the web browser.
View of the display of the result
V. CONCLUSIONS AND FUTURE WORK
This system introduces a statistical method for plant leaf
identification. Proposed method is verified for a database of
4 plants. This system proposes identification of selected
medicinal plant leaves from a stored data base of the leaves
by processing an image of their leaves. The shape colour
features of the leaves are used for the purpose of
identification of leaf varieties. Such automated classification
mechanisms can be useful for efficient classification of plant
leaf species. The accuracy of the current method was found
to be competitive.
Future work would involve, combining venationand texture
features to the present shape colour features to improve
recognition accuracy. One major drawback of the
implementation is that the client and server is on the same
machine. We will be intended to use a dedicated server
which will run round the clock. So, Future work can be
directed in that way to make the implementation more
efficient. The implementation is a little bit computationally
expensive. Further optimization of the logic can result in
better implementation.
VI. REFERENCES
[1] Anant Bhardwaj, Manpreet Kaur, and Anupam Kumar,
“Recognition of plants by Leaf Image using Moment
Invariant and Texture Analysis”, International Journal
of Innovation and Applied StudiesISSN2028-9324Vol.
3 No. 1 May 2013.
[2] Sachin D. Chothe, V. R. Ratnaparkhe, ”Plant
Identification Using LeafImages”,InternationalJournal
of Innovative Research in Science, Engineering and
Technology Vol. 4, Special Issue 6, May 2015.
[3] D Venkataraman, and Mangayarkarasi N, ”Computer
Vision Based Feature Extraction of Leaves for
Identification of Medicinal Values of Plants”, IEEE
International Conference on Computational
Intelligence and Computing Research,2016.
[4] A Gopal, S. Prudhveeswar Reddy, and V. Gayatri
,”Classification of Selected Medicinal Plants Leaf Using
Image Processing”IEEE,2012.
[5] Sana O M, R.Jaya, ”Ayurvedic Herb Detection Using
Image Processing”, International Journal of Computer
Science and Information Technology Research ISSN
2348-120X (online)Vol. 3, Issue 4, pp: (134-139),
Month: October - December 2015.
[6] AmalaSabu, and Sreekumar K, ”Literature Review of
Image Features and ClassifiersUsed inLeaf BasedPlant
Recognition Through Image Analysis Approach”,
International Conference on InventiveCommunication
and Computational Technologies,2017.
[7] Tejas D. Dahigaonkar, and Rasika T. Kalyane,
”Identification of Ayurvedic Medicinal Plants by Image
Processing ofleaf samples”, International Research
Journal of Engineering and Technology (IRJET)e-ISSN:
2395-0056Volume: 05 Issue: 05 | May-2018
[8] Adams Begue, Venitha Kowlessur, Fawzi
Mahomoodally, UpasanaSingh, and Sameer chand
Pudaruth, ”Automatic Recognition of Medicinal Plants
using Machine Learning Techniques” ,International
Journal of Advanced Computer Science and
Applications Vol. 8, No. 4, 2017.
[9] Roopashree S, and Anitha J, ”Indian Herbal Leaf
Identification using Artificial Intelligence Approach”,
International Journal of Sciecne, Engineering and
Technology, ISSN (O): 2348-4098 , ISSN (P): 2395-
4752,2017.
[10] Manojkumar P, Surya C. M, and Varun P. Gopi,
”Identification of Ayurvedic Medicinal Plants byImage
Processing of Leaf Samples”, ”Identification of
Ayurvedic Medicinal Plants by Image Processing of
Leaf Samples”, Third International Conference on
Research in Computational Inteligence and
Communication Networks,2017.

Weitere ähnliche Inhalte

Was ist angesagt?

Foliage Measurement Using Image Processing Techniques
Foliage Measurement Using Image Processing TechniquesFoliage Measurement Using Image Processing Techniques
Foliage Measurement Using Image Processing TechniquesIJTET Journal
 
IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...
IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...
IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...IRJET Journal
 
Flower Grain Image Classification Using Supervised Classification Algorithm
Flower Grain Image Classification Using Supervised Classification AlgorithmFlower Grain Image Classification Using Supervised Classification Algorithm
Flower Grain Image Classification Using Supervised Classification AlgorithmIJERD Editor
 
IRJET- Surveillance for Leaf Detection using Hexacopter
IRJET- Surveillance for Leaf Detection using HexacopterIRJET- Surveillance for Leaf Detection using Hexacopter
IRJET- Surveillance for Leaf Detection using HexacopterIRJET Journal
 
IRJET- Plant Disease Identification System
IRJET- Plant Disease Identification SystemIRJET- Plant Disease Identification System
IRJET- Plant Disease Identification SystemIRJET Journal
 
Content Based Image Retrieval
Content Based Image RetrievalContent Based Image Retrieval
Content Based Image Retrievalijtsrd
 
Clustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clusteringClustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clusteringeSAT Journals
 
Pest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image ProcessingPest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image ProcessingIOSR Journals
 
A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...
A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...
A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...National Cheng Kung University
 
Brain tumour segmentation based on local independent projection based classif...
Brain tumour segmentation based on local independent projection based classif...Brain tumour segmentation based on local independent projection based classif...
Brain tumour segmentation based on local independent projection based classif...eSAT Journals
 
IRJET- Recognition of Plants using Leaf Image with Neural Network and Com...
IRJET-  	  Recognition of Plants using Leaf Image with Neural Network and Com...IRJET-  	  Recognition of Plants using Leaf Image with Neural Network and Com...
IRJET- Recognition of Plants using Leaf Image with Neural Network and Com...IRJET Journal
 
K-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease DetectionK-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease DetectionIJERA Editor
 
Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...eSAT Publishing House
 
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...IRJET Journal
 
Brain tumor mri image segmentation and detection
Brain tumor mri image segmentation and detectionBrain tumor mri image segmentation and detection
Brain tumor mri image segmentation and detectioneSAT Publishing House
 
Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...Tamilarasan N
 
Feature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesFeature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesIRJET Journal
 
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACESSEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACESIJCSEA Journal
 

Was ist angesagt? (19)

Foliage Measurement Using Image Processing Techniques
Foliage Measurement Using Image Processing TechniquesFoliage Measurement Using Image Processing Techniques
Foliage Measurement Using Image Processing Techniques
 
IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...
IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...
IRJET- Identification of Indian Medicinal Plant by using Artificial Neural Ne...
 
Flower Grain Image Classification Using Supervised Classification Algorithm
Flower Grain Image Classification Using Supervised Classification AlgorithmFlower Grain Image Classification Using Supervised Classification Algorithm
Flower Grain Image Classification Using Supervised Classification Algorithm
 
IRJET- Surveillance for Leaf Detection using Hexacopter
IRJET- Surveillance for Leaf Detection using HexacopterIRJET- Surveillance for Leaf Detection using Hexacopter
IRJET- Surveillance for Leaf Detection using Hexacopter
 
IRJET- Plant Disease Identification System
IRJET- Plant Disease Identification SystemIRJET- Plant Disease Identification System
IRJET- Plant Disease Identification System
 
Content Based Image Retrieval
Content Based Image RetrievalContent Based Image Retrieval
Content Based Image Retrieval
 
Clustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clusteringClustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clustering
 
Pest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image ProcessingPest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image Processing
 
A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...
A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...
A Paper Report Of Estimating And Mapping Forest Structural Diversity Using Ai...
 
Brain tumour segmentation based on local independent projection based classif...
Brain tumour segmentation based on local independent projection based classif...Brain tumour segmentation based on local independent projection based classif...
Brain tumour segmentation based on local independent projection based classif...
 
La2418611866
La2418611866La2418611866
La2418611866
 
IRJET- Recognition of Plants using Leaf Image with Neural Network and Com...
IRJET-  	  Recognition of Plants using Leaf Image with Neural Network and Com...IRJET-  	  Recognition of Plants using Leaf Image with Neural Network and Com...
IRJET- Recognition of Plants using Leaf Image with Neural Network and Com...
 
K-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease DetectionK-Means Segmentation Method for Automatic Leaf Disease Detection
K-Means Segmentation Method for Automatic Leaf Disease Detection
 
Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...
 
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
 
Brain tumor mri image segmentation and detection
Brain tumor mri image segmentation and detectionBrain tumor mri image segmentation and detection
Brain tumor mri image segmentation and detection
 
Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...
 
Feature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesFeature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering Techniques
 
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACESSEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
SEGMENTATION OF LUNG GLANDULAR CELLS USING MULTIPLE COLOR SPACES
 

Ähnlich wie Ayurvedic Herb Detection using Image Processing

Automatic Recognition of Medicinal Plants using Machine Learning Techniques
Automatic Recognition of Medicinal Plants using Machine Learning TechniquesAutomatic Recognition of Medicinal Plants using Machine Learning Techniques
Automatic Recognition of Medicinal Plants using Machine Learning TechniquesIRJET Journal
 
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITION
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITIONA NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITION
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITIONsipij
 
An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...
An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...
An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...IJMER
 
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...IRJET Journal
 
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...IRJET Journal
 
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)IRJET Journal
 
Ayur-Vriksha A Deep Learning Approach for Classification of Medicinal Plants
Ayur-Vriksha A Deep Learning Approach for Classification of Medicinal PlantsAyur-Vriksha A Deep Learning Approach for Classification of Medicinal Plants
Ayur-Vriksha A Deep Learning Approach for Classification of Medicinal PlantsIRJET Journal
 
IRJET- IoT based Preventive Crop Disease Model using IP and CNN
IRJET-  	  IoT based Preventive Crop Disease Model using IP and CNNIRJET-  	  IoT based Preventive Crop Disease Model using IP and CNN
IRJET- IoT based Preventive Crop Disease Model using IP and CNNIRJET Journal
 
Plant Leaf Disease Detection using Deep Learning and CNN
Plant Leaf Disease Detection using Deep Learning and CNNPlant Leaf Disease Detection using Deep Learning and CNN
Plant Leaf Disease Detection using Deep Learning and CNNIRJET Journal
 
Plant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image ProcessingPlant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image ProcessingIRJET Journal
 
A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...IRJET Journal
 
Brain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineIRJET Journal
 
IRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation SystemIRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation SystemIRJET Journal
 
IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...
IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...
IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...IRJET Journal
 
IRJET - Plant Leaf Disease Detection and Automated Medicine using IoT
IRJET -  	  Plant Leaf Disease Detection and Automated Medicine using IoTIRJET -  	  Plant Leaf Disease Detection and Automated Medicine using IoT
IRJET - Plant Leaf Disease Detection and Automated Medicine using IoTIRJET Journal
 
Thesis Presentation.pptx
Thesis Presentation.pptxThesis Presentation.pptx
Thesis Presentation.pptxclothingrooh
 
Automated Plant Identification with CNN
Automated Plant Identification with CNNAutomated Plant Identification with CNN
Automated Plant Identification with CNNIRJET Journal
 
Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...
Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...
Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...IJCSIS Research Publications
 
Plant Monitoring using Image Processing, Raspberry PI & IOT
 	  Plant Monitoring using Image Processing, Raspberry PI & IOT 	  Plant Monitoring using Image Processing, Raspberry PI & IOT
Plant Monitoring using Image Processing, Raspberry PI & IOTIRJET Journal
 

Ähnlich wie Ayurvedic Herb Detection using Image Processing (20)

Automatic Recognition of Medicinal Plants using Machine Learning Techniques
Automatic Recognition of Medicinal Plants using Machine Learning TechniquesAutomatic Recognition of Medicinal Plants using Machine Learning Techniques
Automatic Recognition of Medicinal Plants using Machine Learning Techniques
 
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITION
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITIONA NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITION
A NOVEL DATA DICTIONARY LEARNING FOR LEAF RECOGNITION
 
An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...
An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...
An Effective Tea Leaf Recognition Algorithm for Plant Classification Using Ra...
 
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
 
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...
 
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
DETECTION OF NUTRIENT DEFICIENCIES IN CROPS USING SUPPORT VECTOR MACHINE (SVM)
 
J017134853
J017134853J017134853
J017134853
 
Ayur-Vriksha A Deep Learning Approach for Classification of Medicinal Plants
Ayur-Vriksha A Deep Learning Approach for Classification of Medicinal PlantsAyur-Vriksha A Deep Learning Approach for Classification of Medicinal Plants
Ayur-Vriksha A Deep Learning Approach for Classification of Medicinal Plants
 
IRJET- IoT based Preventive Crop Disease Model using IP and CNN
IRJET-  	  IoT based Preventive Crop Disease Model using IP and CNNIRJET-  	  IoT based Preventive Crop Disease Model using IP and CNN
IRJET- IoT based Preventive Crop Disease Model using IP and CNN
 
Plant Leaf Disease Detection using Deep Learning and CNN
Plant Leaf Disease Detection using Deep Learning and CNNPlant Leaf Disease Detection using Deep Learning and CNN
Plant Leaf Disease Detection using Deep Learning and CNN
 
Plant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image ProcessingPlant Leaf Disease Detection and Classification Using Image Processing
Plant Leaf Disease Detection and Classification Using Image Processing
 
A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...A Novel Machine Learning Based Approach for Detection and Classification of S...
A Novel Machine Learning Based Approach for Detection and Classification of S...
 
Brain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector Machine
 
IRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation SystemIRJET- A Plant Identification and Recommendation System
IRJET- A Plant Identification and Recommendation System
 
IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...
IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...
IDENTIFICATION AND CLASSIFICATION OF RARE MEDICINAL PLANTS USING MACHINE LEAR...
 
IRJET - Plant Leaf Disease Detection and Automated Medicine using IoT
IRJET -  	  Plant Leaf Disease Detection and Automated Medicine using IoTIRJET -  	  Plant Leaf Disease Detection and Automated Medicine using IoT
IRJET - Plant Leaf Disease Detection and Automated Medicine using IoT
 
Thesis Presentation.pptx
Thesis Presentation.pptxThesis Presentation.pptx
Thesis Presentation.pptx
 
Automated Plant Identification with CNN
Automated Plant Identification with CNNAutomated Plant Identification with CNN
Automated Plant Identification with CNN
 
Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...
Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...
Optimised Kd-Tree Approach with Dimension Reduction for Efficient Indexing an...
 
Plant Monitoring using Image Processing, Raspberry PI & IOT
 	  Plant Monitoring using Image Processing, Raspberry PI & IOT 	  Plant Monitoring using Image Processing, Raspberry PI & IOT
Plant Monitoring using Image Processing, Raspberry PI & IOT
 

Mehr von 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 Implementationijtsrd
 
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...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 Prospectsijtsrd
 
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
 
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 ...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 Studyijtsrd
 
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
 
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...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. Sadikuijtsrd
 
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 Mapijtsrd
 
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 Societyijtsrd
 
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...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
 
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 Learningijtsrd
 

Mehr von 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
 

Kürzlich hochgeladen

AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 

Kürzlich hochgeladen (20)

AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 

Ayurvedic Herb Detection using Image Processing

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume: 3 | Issue: 4 | May-Jun 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 - 6470 @ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 491 Ayurvedic Herb Detection using Image Processing Dinesh Shitole, Faisal Tamboli, Krishna Motghare, Raj Kumar Raj Student, K. K. Wagh Institute of Engineering Education and Research, Nashik, Maharashtra, India How to cite this paper Dinesh Shitole | Faisal Tamboli | Krishna Motghare | Raj Kumar Raj "Ayurvedic Herb Detection using Image Processing" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-4, June 2019, pp.491-494, URL: https://www.ijtsrd. com/papers/ijtsrd2 3605.pdf Copyright © 2019 by author(s) and International Journal of Trend in Scientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/ by/4.0) I. INTRODUCTION ABSTRACT Trees are an inseparable part of our ecosystem and thereducingnumberof herb varieties is a serious problem. To conserve herbs, their immediate identification by botanists is a must, thus a tool is needed which could identify herbs using easily accessible details. There is a growing scientific consensus that plant shelters have been altered and species are dying at rates never seen before. The biodiversity problem is not just about the problematic state of herbs speciesbut also of the specialists who know them. This initially requires data about various plant species, so that they could be foreseen, protected and can be used for next generation. Plants form the basis of Ayurveda and today's Modern-daymedicine are a great source of income. Due to cutting of forests and Pollution, lot of medicinal herb leaves have almost become extinct. So, there is an immediate need for us to identify them and replant them for the use of next generations. Leaf Identification by physical means often leads to incorrect identification. Due to increasing illegal transaction and incorrect practices in the nascent drug industry on one hand and lack of enough professionals on the other hand, a self- automated and robust identification and classification mechanism is needed to manage the huge amount of data and to end the malpractices. This paperaimsat implementing such system using image processing with images of the plant leaves as a basis of classification. System returns the closest match to the query. The proposed algorithm is implemented on 5 different plant species. Keywords: Gaussian blur, shape features, colour features, contour, thresholding, perspective transformation The leaf of the plant is a very important aspect when it comes to its identification. A plant is affected by many factors like is environment, the ph. balance of the soil, depending on the season the plants of the leaves either sprout or shed. There have been rampant advances in the field of image processing. This system consists of a camera which captures the image of the leaf and processes it in order to generate a textual report detailing the uses and availability of the plant. Ayurvedic herb detection using image processing, like in [4]. One drawback in [4] is that the image which is given as an input must be in a proper orientation. If the orientation of the image is changed the result may get affected. The method proposed by this paper is immune to change in the orientation of the image when giving it as an input. Many systems available are not real time and there is need of lot of pre-processingbeforefeeding the input image to the system. As in [2,4,10] instead of photographed image, a digitally scanned image is required. Some system requires sheet of white paper beforeleaf being photographed [8]. These systems have big loophole as they require whitebackground.ManysystemsusedSVM classifier [3,7,9] with PNN neural network [3,9]added toPCA variance reduction technique [3,9]. For extraction of high frequency components of leaf images, Fourier transform can be used [1]. Gaussian blurring is better for higher level of noises the median blur [8]. Android app can build using texture extraction algorithm known as Grey level Co-occurrence matrix (GLCM) [5]. This paper also proposes a presence of GUI in the form of a web application. The web application would enable the user to have an administrator access to edit update different images of leaves. The presence of an efficient leaf image detection algorithm is essential for generation of accurate results. II. SYSTEM METHODOLOGY A. Captured Image: This system restrains the user to use the leaf image taken from Smartphoneand showitto the system. Others digital means of taking image of plant can be considered provided that the image is to be shown to the system webcam through the Smartphone or tablets. The proposed system works fine for any orientation, contrast and brightness of the leaf image. B. RGB to Gray: Coloured leaf image of ayurvedic plant is obtained and RGB image is converted into Gray scale. Obtained gray scale image isconvertedintobinaryusing appropriate level of thresholding. C. Perspective Transform: End user shows the plant leaf image and system will capture the leaf image with the background along with curves of the Smartphone.Itwill be necessity to extract only the leaf image frame from the rest. For that purpose, perspective transform is an important task. Perspectivetransform can beperformed using two functions as below: IJTSRD23605
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 492 Functions: cv. GetPerspectiveTransform(src, dst,mapMatrix) →None Parameters src – Coordinates of quadrangle vertices in the source image. dst – Coordinates of the corresponding quadrangle vertices in the destination image. The function calculates the matrix of a perspective transforms so that: where cv.WarpPerspective(src, dst, mapMatrix, flags=CV_INTER_LINEAR+CV_WARP_FILL_OUTLIERS, fillval=(0, 0, 0, 0)) → None Parameters src – input image. dst – output image that has the size dsize and the same type as src . M – transformation matrix. dsize – size of the output image. flags – combination of interpolation methods (INTER_LINEAR or INTER_NEAREST) and the optional flag WARP_INVERSE_MAP, that sets M as the inverse transformation ( ). borderMode – pixel extrapolation method (BORDER_CONSTANT or BORDER_REPLICA TE). borderValue – value used in case of a constant border; by default, it equals 0. The function warp Perspective transforms the sourceimage using the specified matrix: when the flag WARP_INVERSE_MAP is set. Otherwise, the transformation is firstinverted with invert() and then putin the formula above instead of M . Thefunction cannot operate in-place. D. Smoothing: On the successful extraction of the leaf image inside the frame. It is now the best time to apply smoothing for removing the noise from the image. For this purpose, you can use guassianblurring.Itisused for removing the high frequency content from the image. It is highly effective for removing the guassian noise from the image. In one-dimension guassian function is defined as: When working with images we simply require using two- dimension guassian function. This is simply the product of two one-dimension guassian function and is defined as: E. Dataset: Every system needs some precise and concise dataset that will perform the required function with increasing the system complexity. For experimentation purpose a dummy dataset is created of 40 leaf as no standard dataset available for ayurvedic herbs. To increase accuracy, we have taken the image of same plant from various angle. The resolution of the image is 640 by 420 pixels. F. Feature Extraction: Different morphological features considered for the purposeofparametriccalculationare as follows: a. Shape Features: 1. Length of leaf: It can be stated as the distance between the starting point and the ending point onthemajor axis of the leaf contour. 2. Width of leaf: Itis defined as the distance between the starting and ending point on the minor axis of the leaf contour. 3. Diameter: The farthest distance between any two points reside inside the leaf. 4. Leaf area: Leaf area is calculated as counting the number of pixels having binary value 1 inside the leaf margin. 5. Leaf perimeter: The number of pixels covering leaf margin is termed as leaf perimeter. 6. Aspect ratio: It is defined as Length of leaf to theWidth. 7. Arc Length: It is defined by the integral given below: The bounds of this integral depend on how you define the curve. If the curve is the graph of a function y = f(x), replace the dy term in the integral with f'(x)dx, prime, then factor out the dx. 8. Rectangularity: It is defined as the similarity between leaf and the rectangle. It is defined as: 9. Median: It is the middle value of the of data distribution arranged in any order. 10. Discrete fourier transform: Generalization tothecase of a discrete function, by letting , where , with , ..., . Writing this out gives the discrete Fourier transform as
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 493 The inverse transform is then Discrete Fourier transforms (DFTs) are extremely useful because they reveal periodicities in input data as well as the relative strengths of any periodic components. There are however a few subtleties in the interpretation of discrete Fourier transforms. In general, the discrete Fourier transform of a real sequence of numbers will be a sequence of complex numbers of the same length. If are real, then and are related by b. Colour features Colour moments represent colour features to characterise a colour image. Features that can be involved are Mean, Standard deviation, skewness and kurtosis. For RGB colour space, the features can be extracted from each plane Red, Green and Blue. The formulas to capture those moments are Where M and N are the dimension of the image.P(ij) is the values of the colour on column i and row j. In the implementation the difference between green meanand red mean, difference between green mean and blue mean, difference between green standard deviation and red standard deviation, difference between green standard deviation and blue standard deviation, skewness and kurtosis of the three colour planes are used as parameters in the implementation of the software. c. Texture Features 1. Entropy: Entropy measures the disorder of an image and it achieves its largest value when all elements in P matrix are equal. 2. Contrast: Contrast feature is a measure of the image contrast or the amount of local variations present in an image. 3. Angular Second Moment: Energy, also called Angular Second Moment and Uniformity is a measure of textural Uniformity of an image. Energy reaches itshighestvalue when grey level distribution has either a constant or a periodic form. G. Matching: System will try to compare the extractedleaf image threshold with the image threshold calculated for the dataset image. It will find the closest possible match in the dataset. If threshold is less than dataset threshold then no match output is shown to user. In case of match is found appropriate plant, description will be shown. H. Plant Details: This is output phase where the plant name along with plant description is shown. Fig: System Architecture III. IMPLEMENTED ALGORITHM The main aim of the system is to find the plant from the leaf fed to the system. Proper care should be taken by the end user to improve the accuracy. This system will highly dependent on the brightness, contrast of the background where the software is used. The care is taken as much as possible to minimise the effect of external factor on the system.Butthereissomerestriction for the end user also. For proper identification theusermust feed an image of 640 * 480 resolution pixelimageinaproper jpg extension. The contour, guassian blur, perspective transform and then canny’s edge detection is used to get the output. Contour is used to make the background black and object white. For better accuracy guassian blurring technique is used for the removal of the noise. Perspective transform is beneficial for reducing the effectof rotationand orientation. Canny’s edge detection will connect all the edges of the curve and to capture the edge of the leaf. IV. RESULT AND EXPERIMENTATION The outcome of our system is a web page consisting of plant name with its description. It is a real time system. A user can easily get the details of the leaf by showing the image of the leaf in a square frame. If the image matches withtheimagein the data set, then it redirects the user to a web page consisting of the details of the plant. Therearefour windows open in front of user when it starts the system. 1st one is main frame which is showing the image captured by the webcam. Its only purpose is to capture the leaf image without filtering. 2nd frame is of matching operation which will try to compare the captured image with image in the data set. It will extract the leaf image shape from the rest of the shape. 3rd frame is corrected perspective which will show the output of the compared image from the dataset. If dataset has the image, then it redirects the user to the
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID - IJTSRD23605 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 494 desired web page. If not, the it will try to compareunlessand until user will close the system. 4th frame of contour will show the shape of filtered curve from the rest of the curves. The final output will be shown on the web browser. View of the display of the result V. CONCLUSIONS AND FUTURE WORK This system introduces a statistical method for plant leaf identification. Proposed method is verified for a database of 4 plants. This system proposes identification of selected medicinal plant leaves from a stored data base of the leaves by processing an image of their leaves. The shape colour features of the leaves are used for the purpose of identification of leaf varieties. Such automated classification mechanisms can be useful for efficient classification of plant leaf species. The accuracy of the current method was found to be competitive. Future work would involve, combining venationand texture features to the present shape colour features to improve recognition accuracy. One major drawback of the implementation is that the client and server is on the same machine. We will be intended to use a dedicated server which will run round the clock. So, Future work can be directed in that way to make the implementation more efficient. The implementation is a little bit computationally expensive. Further optimization of the logic can result in better implementation. VI. REFERENCES [1] Anant Bhardwaj, Manpreet Kaur, and Anupam Kumar, “Recognition of plants by Leaf Image using Moment Invariant and Texture Analysis”, International Journal of Innovation and Applied StudiesISSN2028-9324Vol. 3 No. 1 May 2013. [2] Sachin D. Chothe, V. R. Ratnaparkhe, ”Plant Identification Using LeafImages”,InternationalJournal of Innovative Research in Science, Engineering and Technology Vol. 4, Special Issue 6, May 2015. [3] D Venkataraman, and Mangayarkarasi N, ”Computer Vision Based Feature Extraction of Leaves for Identification of Medicinal Values of Plants”, IEEE International Conference on Computational Intelligence and Computing Research,2016. [4] A Gopal, S. Prudhveeswar Reddy, and V. Gayatri ,”Classification of Selected Medicinal Plants Leaf Using Image Processing”IEEE,2012. [5] Sana O M, R.Jaya, ”Ayurvedic Herb Detection Using Image Processing”, International Journal of Computer Science and Information Technology Research ISSN 2348-120X (online)Vol. 3, Issue 4, pp: (134-139), Month: October - December 2015. [6] AmalaSabu, and Sreekumar K, ”Literature Review of Image Features and ClassifiersUsed inLeaf BasedPlant Recognition Through Image Analysis Approach”, International Conference on InventiveCommunication and Computational Technologies,2017. [7] Tejas D. Dahigaonkar, and Rasika T. Kalyane, ”Identification of Ayurvedic Medicinal Plants by Image Processing ofleaf samples”, International Research Journal of Engineering and Technology (IRJET)e-ISSN: 2395-0056Volume: 05 Issue: 05 | May-2018 [8] Adams Begue, Venitha Kowlessur, Fawzi Mahomoodally, UpasanaSingh, and Sameer chand Pudaruth, ”Automatic Recognition of Medicinal Plants using Machine Learning Techniques” ,International Journal of Advanced Computer Science and Applications Vol. 8, No. 4, 2017. [9] Roopashree S, and Anitha J, ”Indian Herbal Leaf Identification using Artificial Intelligence Approach”, International Journal of Sciecne, Engineering and Technology, ISSN (O): 2348-4098 , ISSN (P): 2395- 4752,2017. [10] Manojkumar P, Surya C. M, and Varun P. Gopi, ”Identification of Ayurvedic Medicinal Plants byImage Processing of Leaf Samples”, ”Identification of Ayurvedic Medicinal Plants by Image Processing of Leaf Samples”, Third International Conference on Research in Computational Inteligence and Communication Networks,2017.