SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 179
Automated Mechanism for Sugarcane Bud Detection & Cutting
Azmatali Nadaf1, S. S. Sankpal2, D. B. Kadam3 Prathamesh Kumbhar4 Shreyas Patil5 Sejal
Gaikwad6
1,4,5,6 B.Tech IV, E&TC, Padmabhooshan Vasantraodada Patil Institute of Technology, Budhgaon, Maharashtra,
India.
2Associate Professor, E&TC, Padmabhooshan Vasantraodada Patil Institute of Technology, Budhgaon,
Maharashtra, India.
3Professor, E&TC, Padmabhooshan Vasantraodada Patil Institute of Technology, Budhgaon, Maharashtra, India.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – An automatic sugarcane bud detection and
cutting mechanism is an innovative technology that utilizes
computer vision to accurately detect and send signal to the
hardware module i.e. in our case an Arduino UNO which will
then control the cutting mechanism and the sugarcane
movement with the use of a conveyor belt. This machine offers
a significant improvement over traditional manual methodof
sugarcane bud cutting, as it reduces labor cost, increase
efficiency and improves the accuracy of the cutting process.
One of the major advantages of this machine is its ability to
accurately detect and cut sugarcane buds, which in turn
reduce the time and effortrequiredfor manualcutting. Overall
the automatic sugarcane bud detection and cutting
mechanism is a promisinginnovationinthefieldofagriculture
that has the potential torevolutionizehowsugarcaneisgrown
and harvested.
Key Words: Image Processing, Computer Vision, Sugarcane
Bud Cutting, Automatic Sugarcane Bud Cutting, Arduino
UNO, Continuous Servo Motor, Camera, Cutter.
1. INTRODUCTION
Sugarcane cultivation is a vital component of the global
economy and plays a crucial role in the food and beverage
industry. The process of cultivating sugarcane involves
various manual operations, such as bud cutting, which
require significant time and labor investments. The existing
bud cutting machines have limited capabilities and require
constant supervision, which leads to increased labor costs
and reduced efficiency. In this context, the development of
automated sugarcane bud detection and cutting mechanism
could bring substantial benefits to the industry.
This research project proposes a system for detecting and
cutting sugarcane buds using computer vision and machine
learning techniques.TheproposedsystemutilizestheHough
Circle Transform algorithm to detect the circular shape of
the sugarcane buds and an Arduino-based controller to
control the cutting mechanism.
The system's effectiveness was tested by conducting
experiments on real sugarcane plants, and the results
demonstrate promising accuracy levels.
Figure 1 - Sugarcane Buds
The proposed system has the potential to improve the
efficiency and reduce the labor costs of sugarcane bud
cutting, which could ultimately contribute to a sustainable
and profitable sugarcane industry.
2. IMAGE PROCESSING
Image processing is a method used to manipulate digital
images through mathematical algorithms and techniques to
enhance the image's quality, clarity, and interpretability. In
our project, image processing is utilized to extract features
from the images and classify them based on those features.
There are several methods used in image processing,
including:
1. Image filtering: This method is used to remove
unwanted noise from the image or enhance specific
features by applying a filter. Common filtering
techniques include Gaussian filtering, Median
filtering, and Sobel filtering.
2. Image segmentation: This technique is used to
partition an image into multiple regions or
segments to extract meaningful information from
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 180
the image. Common segmentation techniques
include thresholding, clustering, and region
growing.
3. Feature extraction: This techniqueisusedto extract
meaningful features from the image, which can be
used for classification or further analysis. Common
feature extraction techniques include edge
detection, corner detection, and texture analysis.
4. Image classification: This method is used to classify
images based on their features. Common
classification techniques include support vector
machines, decision trees, and artificial neural
networks.
In our project, we are using a combination of these
techniques to extract features from the images and classify
them based on those features. Specifically, we are using
image filtering to remove noise from the images, image
segmentation to extract regions of interest, feature
extraction to extract meaningful featuresfromthoseregions,
and image classificationtoclassifytheimagesbasedonthose
features.
Figure 2 - Grayscale Image
Overall, image processing is an essential tool for analyzing
digital images and extracting meaningful information from
them. By using a combination of techniques such as filtering,
segmentation, feature extraction, and classification, we can
obtain valuable insights from images in various fields,
including medical imaging, remotesensing,andsurveillance.
3. BUD DETECTION
Bud detection is a crucial aspect of precision agriculture and
plays a vital role in crop management. It involves the
identification and tracking of buds in crops, which can help
farmers make informed decisions about when to apply
fertilizers, pesticides, and irrigation. In our project, we are
using image processing techniques to detect buds in crops.
3.1 Image Segmentation
One of the primary methods used in our project for bud
detection is image segmentation. Image segmentation
involves dividing an image into differentregionsorsegments
based on pixel intensity, color, texture, or other features. In
our project, weare using the watershed algorithm, whichisa
popular image segmentation technique. This algorithm
considers the image as a topographic surface where pixels
are considered as elevations, and watershed lines are drawn
based on the local minima. These lines help us identify the
different segments of the image, which may correspond to
buds or other features of interest.
3.2 Edge Detection
Another method used in our project forbud detectionisedge
detection.Edgedetectioninvolvesidentifyingtheboundaries
between different regions or segments in an image. We are
using the Canny edgedetection algorithm, which is apopular
edgedetection technique. Thisalgorithminvolvessmoothing
the image, computing the gradient of the image, and then
thresholding the gradient to identify edges. By detecting
edges in an image, we can identify the boundaries of buds,
which can be used to extract features and classify them.
3.3 Extract Features
Once the budshavebeenidentifiedusingimagesegmentation
and edge detection, we can extract features such as color,
shape, and size to classify them. Here we are detecting the
circle i.e. the shape of buds on the sugarcane using Hough
Circle Transform.
4. Hough Circle Transform
In our project, we have used Hough Circle Transform to
detect the buds in the images. Hough Circle Transform is a
technique used to detect circles in an image. It works by first
applying an edge detection algorithm to the image and then
searching for the circular shape in the image by looking for
peaks in a 3-dimensional parameter space. The three
parameters are the x-coordinate of the center of the circle,
the y-coordinate of the center of the circle, and the radius of
the circle. By searching forthe peaks in this parameterspace,
we can identify the centers and radii of the circles present in
the image. In our project, we have tuned the parameters of
the Hough Circle Transform to detect only the buds in the
image, which has helped ustoaccuratelycountthenumberof
buds in the image.
4.1 Highlighting Circles
In our project, wehave implemented afeaturethathighlights
the detected circles on the video feed with red circles. This
was done using the OpenCV library, which provides several
functions for drawing on images. When a circle is detected
using the Hough Circle Transform,thefunctionreturnsthe(x,
y) coordinates of the circle's center and its radius. We used
these values to draw a red circle on the video feed using the
“cv2.circle()” function in OpenCV. The circle's center
coordinates were used as the center of the drawn circle, and
the radius was used to set thesize of the circle. This helps the
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 181
user visualize the detected circles and their positions in the
video feed.
Figure 3 – Highlighted Detected Bud
Figure 4 – Python Screen Detecting Buds & Highlighting
4.2 Sending Signal
In our project, we use the serial port to send signals to an
external device when a bud is detected. The signal sending
mechanism on the serial port involves establishing a
connection between the computer and the external device
using a USB cable. Once the connection is established, the
software sends a signal in the form of bytes to the external
device, indicating the detection of a bud. The external device
then receives the signal and processes it accordingly.
Figure 5 – Confirmation for data sent on Serial Port
Additionally, we have implemented a detection pausing
mechanism in our project. This mechanism allows the
software to pause detection temporarily when it detects too
many false positives or encounters any other issues.
This mechanism helps to ensuretheaccuracyofthedetection
process and prevents false detections from beingreportedto
the external device.
5. HARDWARE INTERFACE
The details of the hardware interface used in the project is
listed below-
Figure 6 – Hardware Interface
5.1 Camera
The camera captures the video feed ofthebuddetectionarea.
The video feed is then processed using the Hough Circle
Transform algorithm to detect the presence of buds in the
frame. Once the bud is detected, a red circle is drawn around
it, indicating its location. This information is then sent
through the serial port to the Arduino Uno, which controls
the operation of the cutter and the conveyor belt.
5.2 Arduino Uno
The Arduino Uno receives the signal from the computer
through the serial portand activates the cutter to cut the bud
from the plant. The conveyor belt is then activated to
transport the cut bud to the next stage of the process. The
conveyor belt is controlled using a motor driver circuit
connected to the Arduino Uno.
5.3 Cutter
The cutter used in our project is a rotary cutter, which is
connected to a stepper motor. The stepper motor is
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 182
controlled by the Arduino Uno, which sends the necessary
signals to the motor driver circuit. When the cutter is
activated, it rotates and cuts the bud from the plant.
5.4 Conveyor belt
The conveyor belt used in our project is a simple belt driven
by a DC motor. The speed of the conveyor belt is controlled
using a motor driver circuit connected to the Arduino Uno.
When the conveyor belt is activated, it moves the cut bud to
the next stage of the process. Overall,theintegrationofthese
components allows for efficient and automated bud cutting
and transportation.
6. RESULTS & ANALYSIS
After conducting several experiments using the system, we
were able to evaluate its performance in terms of accuracy
and speed. Our system was able to detect and classify the
buds accurately with an average accuracy of 92%. We were
able to identify the sources of errors and were able to
correct them by fine-tuning the parameters of the image
processing algorithms used in the system.
Figure 7 – Working of Mechanism
Overall, the results obtained from the system were
promising, and the accuracy and speed achieved were
satisfactory for practical applications. The system can be
further improved by incorporating machine learning
techniques for improved accuracy and efficiency.
7. DISCUSSION
Despite the successful implementation of our project, there
are several limitations that should be taken into
consideration. One major limitation is the processing speed
of the image analysis algorithms, which can slow down the
overall system performance. This can result in a delay in the
detection of buds or a delay in the cutting process, which
may reduce the efficiencyofthesystem.Anotherlimitationis
the accuracy of the detection system, which can be affected
by various factors such as lighting conditions, camera
quality, and the size and shape of buds. Additionally, the
cutting mechanism may not be suitable for all typesofplants
and may cause damage to some delicate plants. Finally, the
system is limited to the detection and cutting of buds, and
may not be suitable for other applications in agriculture or
other fields. These limitations should be addressed in future
iterations of the system to improve its efficiency and
accuracy.
8. CONCLUSION
In conclusion, our project successfully addressed the
problem of automated bud detection and cutting in the
horticulture industry. By using image processingtechniques
and an automated cutting mechanism, we were able to
accurately detect and remove buds from the plants in real-
time. The results of our project showed that the system was
effective in detecting budswithanaccuracyofover90%,and
the cutting mechanism was able to remove the buds with
high precision and consistency.
However, there were also some limitations to our project.
One of the major limitations was the requirement of a stable
and controlled environment, as any variations in lighting or
background could affect the accuracy of bud detection.
Another limitation was the relianceona singlecamera angle,
which restricted the system's ability to detect buds on all
sides of the plants. Additionally, the system was only
designed to work on plants of a specific size and shape,
limiting its applicability to a wider range of plant species.
Despite these limitations, our project lays the foundation for
future research and development in the field of automated
horticulture. With further improvements, the system can be
made more robust and versatile, opening up new
possibilities for improving efficiency and productivity inthe
horticulture industry. Overall, our project demonstratedthe
potential of combining computer vision and automation
technologies for addressing real-world problems, and we
believe that it can serve as a valuable reference for future
projects in this area.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 183
REFERENCES
[1] Pragati V. Jadhav, Sonali S. Surwase, Smita S. Lad, and
S.S.Sankpal “Automatic Sugarcane Bud Detection and
Cutting Mechanism” IRJET Volume: 07 Issue: 06 | June
2020.
[2] Tejaswi Patil, Parth Ransubhe and Durga Tatke “Design
and Development of Sugarcane Bud Cutting Machine”
IRJET Volume: 05 Issue: 04 | Apr-2018.
[3] Siddhesh Phapale, Prof. A.A. Tamboli, Prof. D.L. Shinde
“Design And Fabrication Of Sugarcane Node Cutting
Machine.”June 2017 IJSDR, volume 2,Issue 6.

More Related Content

Similar to Automated Mechanism for Sugarcane Bud Detection & Cutting

FACE RECOGNITION ATTENDANCE SYSTEM
FACE RECOGNITION ATTENDANCE SYSTEMFACE RECOGNITION ATTENDANCE SYSTEM
FACE RECOGNITION ATTENDANCE SYSTEMIRJET Journal
 
IMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITS
IMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITSIMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITS
IMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITSIRJET Journal
 
A survey on content based medical image retrieval for
A survey on content based medical image retrieval forA survey on content based medical image retrieval for
A survey on content based medical image retrieval foreSAT Publishing House
 
IRJET-Next Generation Sequences Analysis using Pattern Matching Algorithm
IRJET-Next Generation Sequences Analysis using Pattern Matching AlgorithmIRJET-Next Generation Sequences Analysis using Pattern Matching Algorithm
IRJET-Next Generation Sequences Analysis using Pattern Matching AlgorithmIRJET Journal
 
IRJET - Detection and Classification of Brain Tumor
IRJET - Detection and Classification of Brain TumorIRJET - Detection and Classification of Brain Tumor
IRJET - Detection and Classification of Brain TumorIRJET Journal
 
IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...
IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...
IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...IRJET Journal
 
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter i...
IRJET-  	  Nail based Disease Analysis at Earlier Stage using Median Filter i...IRJET-  	  Nail based Disease Analysis at Earlier Stage using Median Filter i...
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter i...IRJET Journal
 
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...IRJET Journal
 
IRJET - Facial Recognition based Attendance System with LBPH
IRJET -  	  Facial Recognition based Attendance System with LBPHIRJET -  	  Facial Recognition based Attendance System with LBPH
IRJET - Facial Recognition based Attendance System with LBPHIRJET Journal
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET Journal
 
BREAST CANCER DETECTION USING MACHINE LEARNING
BREAST CANCER DETECTION USING MACHINE LEARNINGBREAST CANCER DETECTION USING MACHINE LEARNING
BREAST CANCER DETECTION USING MACHINE LEARNINGIRJET Journal
 
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...IRJET Journal
 
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...IRJET Journal
 
IRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A ReviewIRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A ReviewIRJET 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
 
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET Journal
 
IRJET- Survey on Face Recognition using Biometrics
IRJET-  	  Survey on Face Recognition using BiometricsIRJET-  	  Survey on Face Recognition using Biometrics
IRJET- Survey on Face Recognition using BiometricsIRJET Journal
 
IRJET- Comparative Study of Artificial Neural Networks and Convolutional N...
IRJET- 	  Comparative Study of Artificial Neural Networks and Convolutional N...IRJET- 	  Comparative Study of Artificial Neural Networks and Convolutional N...
IRJET- Comparative Study of Artificial Neural Networks and Convolutional N...IRJET Journal
 

Similar to Automated Mechanism for Sugarcane Bud Detection & Cutting (20)

FACE RECOGNITION ATTENDANCE SYSTEM
FACE RECOGNITION ATTENDANCE SYSTEMFACE RECOGNITION ATTENDANCE SYSTEM
FACE RECOGNITION ATTENDANCE SYSTEM
 
IMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITS
IMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITSIMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITS
IMAGE PROCESSING BASED MONITORING OF PESTICIDES AND QUALITY ANALYSIS OF FRUITS
 
A survey on content based medical image retrieval for
A survey on content based medical image retrieval forA survey on content based medical image retrieval for
A survey on content based medical image retrieval for
 
IRJET-Next Generation Sequences Analysis using Pattern Matching Algorithm
IRJET-Next Generation Sequences Analysis using Pattern Matching AlgorithmIRJET-Next Generation Sequences Analysis using Pattern Matching Algorithm
IRJET-Next Generation Sequences Analysis using Pattern Matching Algorithm
 
IRJET - Detection and Classification of Brain Tumor
IRJET - Detection and Classification of Brain TumorIRJET - Detection and Classification of Brain Tumor
IRJET - Detection and Classification of Brain Tumor
 
IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...
IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...
IRJET- Automatic Detection of Diabetic Retinopathy Using SRC Classifier from ...
 
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter i...
IRJET-  	  Nail based Disease Analysis at Earlier Stage using Median Filter i...IRJET-  	  Nail based Disease Analysis at Earlier Stage using Median Filter i...
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter i...
 
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...
IRJET- Nail based Disease Analysis at Earlier Stage using Median Filter in Im...
 
IRJET - Facial Recognition based Attendance System with LBPH
IRJET -  	  Facial Recognition based Attendance System with LBPHIRJET -  	  Facial Recognition based Attendance System with LBPH
IRJET - Facial Recognition based Attendance System with LBPH
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
 
BREAST CANCER DETECTION USING MACHINE LEARNING
BREAST CANCER DETECTION USING MACHINE LEARNINGBREAST CANCER DETECTION USING MACHINE LEARNING
BREAST CANCER DETECTION USING MACHINE LEARNING
 
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
 
T03301030107
T03301030107T03301030107
T03301030107
 
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...
 
IRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A ReviewIRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A Review
 
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
 
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
 
IRJET- Survey on Face Recognition using Biometrics
IRJET-  	  Survey on Face Recognition using BiometricsIRJET-  	  Survey on Face Recognition using Biometrics
IRJET- Survey on Face Recognition using Biometrics
 
IRJET- Comparative Study of Artificial Neural Networks and Convolutional N...
IRJET- 	  Comparative Study of Artificial Neural Networks and Convolutional N...IRJET- 	  Comparative Study of Artificial Neural Networks and Convolutional N...
IRJET- Comparative Study of Artificial Neural Networks and Convolutional N...
 
A04820104
A04820104A04820104
A04820104
 

More from IRJET Journal

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

More from IRJET Journal (20)

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

Recently uploaded

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 

Recently uploaded (20)

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 

Automated Mechanism for Sugarcane Bud Detection & Cutting

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 179 Automated Mechanism for Sugarcane Bud Detection & Cutting Azmatali Nadaf1, S. S. Sankpal2, D. B. Kadam3 Prathamesh Kumbhar4 Shreyas Patil5 Sejal Gaikwad6 1,4,5,6 B.Tech IV, E&TC, Padmabhooshan Vasantraodada Patil Institute of Technology, Budhgaon, Maharashtra, India. 2Associate Professor, E&TC, Padmabhooshan Vasantraodada Patil Institute of Technology, Budhgaon, Maharashtra, India. 3Professor, E&TC, Padmabhooshan Vasantraodada Patil Institute of Technology, Budhgaon, Maharashtra, India. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – An automatic sugarcane bud detection and cutting mechanism is an innovative technology that utilizes computer vision to accurately detect and send signal to the hardware module i.e. in our case an Arduino UNO which will then control the cutting mechanism and the sugarcane movement with the use of a conveyor belt. This machine offers a significant improvement over traditional manual methodof sugarcane bud cutting, as it reduces labor cost, increase efficiency and improves the accuracy of the cutting process. One of the major advantages of this machine is its ability to accurately detect and cut sugarcane buds, which in turn reduce the time and effortrequiredfor manualcutting. Overall the automatic sugarcane bud detection and cutting mechanism is a promisinginnovationinthefieldofagriculture that has the potential torevolutionizehowsugarcaneisgrown and harvested. Key Words: Image Processing, Computer Vision, Sugarcane Bud Cutting, Automatic Sugarcane Bud Cutting, Arduino UNO, Continuous Servo Motor, Camera, Cutter. 1. INTRODUCTION Sugarcane cultivation is a vital component of the global economy and plays a crucial role in the food and beverage industry. The process of cultivating sugarcane involves various manual operations, such as bud cutting, which require significant time and labor investments. The existing bud cutting machines have limited capabilities and require constant supervision, which leads to increased labor costs and reduced efficiency. In this context, the development of automated sugarcane bud detection and cutting mechanism could bring substantial benefits to the industry. This research project proposes a system for detecting and cutting sugarcane buds using computer vision and machine learning techniques.TheproposedsystemutilizestheHough Circle Transform algorithm to detect the circular shape of the sugarcane buds and an Arduino-based controller to control the cutting mechanism. The system's effectiveness was tested by conducting experiments on real sugarcane plants, and the results demonstrate promising accuracy levels. Figure 1 - Sugarcane Buds The proposed system has the potential to improve the efficiency and reduce the labor costs of sugarcane bud cutting, which could ultimately contribute to a sustainable and profitable sugarcane industry. 2. IMAGE PROCESSING Image processing is a method used to manipulate digital images through mathematical algorithms and techniques to enhance the image's quality, clarity, and interpretability. In our project, image processing is utilized to extract features from the images and classify them based on those features. There are several methods used in image processing, including: 1. Image filtering: This method is used to remove unwanted noise from the image or enhance specific features by applying a filter. Common filtering techniques include Gaussian filtering, Median filtering, and Sobel filtering. 2. Image segmentation: This technique is used to partition an image into multiple regions or segments to extract meaningful information from
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 180 the image. Common segmentation techniques include thresholding, clustering, and region growing. 3. Feature extraction: This techniqueisusedto extract meaningful features from the image, which can be used for classification or further analysis. Common feature extraction techniques include edge detection, corner detection, and texture analysis. 4. Image classification: This method is used to classify images based on their features. Common classification techniques include support vector machines, decision trees, and artificial neural networks. In our project, we are using a combination of these techniques to extract features from the images and classify them based on those features. Specifically, we are using image filtering to remove noise from the images, image segmentation to extract regions of interest, feature extraction to extract meaningful featuresfromthoseregions, and image classificationtoclassifytheimagesbasedonthose features. Figure 2 - Grayscale Image Overall, image processing is an essential tool for analyzing digital images and extracting meaningful information from them. By using a combination of techniques such as filtering, segmentation, feature extraction, and classification, we can obtain valuable insights from images in various fields, including medical imaging, remotesensing,andsurveillance. 3. BUD DETECTION Bud detection is a crucial aspect of precision agriculture and plays a vital role in crop management. It involves the identification and tracking of buds in crops, which can help farmers make informed decisions about when to apply fertilizers, pesticides, and irrigation. In our project, we are using image processing techniques to detect buds in crops. 3.1 Image Segmentation One of the primary methods used in our project for bud detection is image segmentation. Image segmentation involves dividing an image into differentregionsorsegments based on pixel intensity, color, texture, or other features. In our project, weare using the watershed algorithm, whichisa popular image segmentation technique. This algorithm considers the image as a topographic surface where pixels are considered as elevations, and watershed lines are drawn based on the local minima. These lines help us identify the different segments of the image, which may correspond to buds or other features of interest. 3.2 Edge Detection Another method used in our project forbud detectionisedge detection.Edgedetectioninvolvesidentifyingtheboundaries between different regions or segments in an image. We are using the Canny edgedetection algorithm, which is apopular edgedetection technique. Thisalgorithminvolvessmoothing the image, computing the gradient of the image, and then thresholding the gradient to identify edges. By detecting edges in an image, we can identify the boundaries of buds, which can be used to extract features and classify them. 3.3 Extract Features Once the budshavebeenidentifiedusingimagesegmentation and edge detection, we can extract features such as color, shape, and size to classify them. Here we are detecting the circle i.e. the shape of buds on the sugarcane using Hough Circle Transform. 4. Hough Circle Transform In our project, we have used Hough Circle Transform to detect the buds in the images. Hough Circle Transform is a technique used to detect circles in an image. It works by first applying an edge detection algorithm to the image and then searching for the circular shape in the image by looking for peaks in a 3-dimensional parameter space. The three parameters are the x-coordinate of the center of the circle, the y-coordinate of the center of the circle, and the radius of the circle. By searching forthe peaks in this parameterspace, we can identify the centers and radii of the circles present in the image. In our project, we have tuned the parameters of the Hough Circle Transform to detect only the buds in the image, which has helped ustoaccuratelycountthenumberof buds in the image. 4.1 Highlighting Circles In our project, wehave implemented afeaturethathighlights the detected circles on the video feed with red circles. This was done using the OpenCV library, which provides several functions for drawing on images. When a circle is detected using the Hough Circle Transform,thefunctionreturnsthe(x, y) coordinates of the circle's center and its radius. We used these values to draw a red circle on the video feed using the “cv2.circle()” function in OpenCV. The circle's center coordinates were used as the center of the drawn circle, and the radius was used to set thesize of the circle. This helps the
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 181 user visualize the detected circles and their positions in the video feed. Figure 3 – Highlighted Detected Bud Figure 4 – Python Screen Detecting Buds & Highlighting 4.2 Sending Signal In our project, we use the serial port to send signals to an external device when a bud is detected. The signal sending mechanism on the serial port involves establishing a connection between the computer and the external device using a USB cable. Once the connection is established, the software sends a signal in the form of bytes to the external device, indicating the detection of a bud. The external device then receives the signal and processes it accordingly. Figure 5 – Confirmation for data sent on Serial Port Additionally, we have implemented a detection pausing mechanism in our project. This mechanism allows the software to pause detection temporarily when it detects too many false positives or encounters any other issues. This mechanism helps to ensuretheaccuracyofthedetection process and prevents false detections from beingreportedto the external device. 5. HARDWARE INTERFACE The details of the hardware interface used in the project is listed below- Figure 6 – Hardware Interface 5.1 Camera The camera captures the video feed ofthebuddetectionarea. The video feed is then processed using the Hough Circle Transform algorithm to detect the presence of buds in the frame. Once the bud is detected, a red circle is drawn around it, indicating its location. This information is then sent through the serial port to the Arduino Uno, which controls the operation of the cutter and the conveyor belt. 5.2 Arduino Uno The Arduino Uno receives the signal from the computer through the serial portand activates the cutter to cut the bud from the plant. The conveyor belt is then activated to transport the cut bud to the next stage of the process. The conveyor belt is controlled using a motor driver circuit connected to the Arduino Uno. 5.3 Cutter The cutter used in our project is a rotary cutter, which is connected to a stepper motor. The stepper motor is
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 182 controlled by the Arduino Uno, which sends the necessary signals to the motor driver circuit. When the cutter is activated, it rotates and cuts the bud from the plant. 5.4 Conveyor belt The conveyor belt used in our project is a simple belt driven by a DC motor. The speed of the conveyor belt is controlled using a motor driver circuit connected to the Arduino Uno. When the conveyor belt is activated, it moves the cut bud to the next stage of the process. Overall,theintegrationofthese components allows for efficient and automated bud cutting and transportation. 6. RESULTS & ANALYSIS After conducting several experiments using the system, we were able to evaluate its performance in terms of accuracy and speed. Our system was able to detect and classify the buds accurately with an average accuracy of 92%. We were able to identify the sources of errors and were able to correct them by fine-tuning the parameters of the image processing algorithms used in the system. Figure 7 – Working of Mechanism Overall, the results obtained from the system were promising, and the accuracy and speed achieved were satisfactory for practical applications. The system can be further improved by incorporating machine learning techniques for improved accuracy and efficiency. 7. DISCUSSION Despite the successful implementation of our project, there are several limitations that should be taken into consideration. One major limitation is the processing speed of the image analysis algorithms, which can slow down the overall system performance. This can result in a delay in the detection of buds or a delay in the cutting process, which may reduce the efficiencyofthesystem.Anotherlimitationis the accuracy of the detection system, which can be affected by various factors such as lighting conditions, camera quality, and the size and shape of buds. Additionally, the cutting mechanism may not be suitable for all typesofplants and may cause damage to some delicate plants. Finally, the system is limited to the detection and cutting of buds, and may not be suitable for other applications in agriculture or other fields. These limitations should be addressed in future iterations of the system to improve its efficiency and accuracy. 8. CONCLUSION In conclusion, our project successfully addressed the problem of automated bud detection and cutting in the horticulture industry. By using image processingtechniques and an automated cutting mechanism, we were able to accurately detect and remove buds from the plants in real- time. The results of our project showed that the system was effective in detecting budswithanaccuracyofover90%,and the cutting mechanism was able to remove the buds with high precision and consistency. However, there were also some limitations to our project. One of the major limitations was the requirement of a stable and controlled environment, as any variations in lighting or background could affect the accuracy of bud detection. Another limitation was the relianceona singlecamera angle, which restricted the system's ability to detect buds on all sides of the plants. Additionally, the system was only designed to work on plants of a specific size and shape, limiting its applicability to a wider range of plant species. Despite these limitations, our project lays the foundation for future research and development in the field of automated horticulture. With further improvements, the system can be made more robust and versatile, opening up new possibilities for improving efficiency and productivity inthe horticulture industry. Overall, our project demonstratedthe potential of combining computer vision and automation technologies for addressing real-world problems, and we believe that it can serve as a valuable reference for future projects in this area.
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 06 | Jun 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 183 REFERENCES [1] Pragati V. Jadhav, Sonali S. Surwase, Smita S. Lad, and S.S.Sankpal “Automatic Sugarcane Bud Detection and Cutting Mechanism” IRJET Volume: 07 Issue: 06 | June 2020. [2] Tejaswi Patil, Parth Ransubhe and Durga Tatke “Design and Development of Sugarcane Bud Cutting Machine” IRJET Volume: 05 Issue: 04 | Apr-2018. [3] Siddhesh Phapale, Prof. A.A. Tamboli, Prof. D.L. Shinde “Design And Fabrication Of Sugarcane Node Cutting Machine.”June 2017 IJSDR, volume 2,Issue 6.