SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2405
Cleaner Drone
Ameya Parkar1, Aditi Prabhudesai2
1Assistant Professor, Mumbai University,Mumbai,India
2MCA 3rd Year Student, Mumbai University, Mumbai, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Cleaner drone is a system designed to locate
garbage in an area with help of drone. The drone comes with
high quality camera and a GPS tracker in it. The drone will
follow a pre-assigned path to which it will be assigned. It will
locate potential garbage material and send snapshot of the
same along with its GPS location. On the server side, analysis
of the image sent by drone will be done with help of Computer
vision technology that mainly involves segmentation,
recognition and reconstruction. If garbage is found in an
image, the server will check for cleaners stationed nearby and
give an alert for garbage collection to the one with closest
proximity. The cleaner who received alert will go to the
location and update the status after cleaning garbage. For
verification, a checker drone will monitor status at those
specific locations where garbage was located. It will check
whether garbage was cleaned properly or not. This endeavor
will contribute to the ‘Swachcha Bharat mission’ of the
government by keeping the area neat and clean with the help
of regular drone surveillance.
Key Words: Cleaner drone,detectordrone,checkerdrone,
cleaner
1.INTRODUCTION
A detector drone will start its work from location, say x
which is predefined in the database. It will continuously
capture images and send it to server. Drone will follow the
pre assigned path and will keep sending images of that area.
Server on the other hand, will receive image captured by
drone. Captured image will be processed with the help of
image processing algorithms in computer visiontechnology.
The captured image will be segmented and each segment
will be compared with datasets of garbage images. If any
garbage object is recognized, an alert will be generated by
the system. On receiving alert,serverwill check forcloseness
of cleaners (to the location where potential garbage is
detected). Server will send alert message to the cleaner who
is closest to the garbage location. The cleaner will receive an
alert message from the server on his smartphone with
garbage location information. When the cleaner will select,
view location, a directed path will be provided to him to
reach that specific location. Once the cleaner reaches the
location, status update windowwill beenabledonhismobile
screen, wher e he is supposed to update the status as
‘Cleaned’, once cleaning work has been finished. If hecarries
insufficient equipment to clean the garbage or requires an
additional hand, he will select ‘Help’ option which will
connect him to his superior through a call. After a certain
timeslot (say 30 minutes) the checker drone starts flying
from its current location to those specific locations where
garbage was located by detectordrone&systemhadverified
object as garbage. Checker drone will verifyifthecleaner has
cleaned the place or not. A single checker drone is assigned
supervision of multiple detector drones. Fig.1 explains
working of Cleaner drone.
2. WORKING OF DRONE
2.1 Detector Drone
Drone starts flying from location it is currently stationed at.
It follows the path which has been programmed into it by
system. The drone is fit with a small camera on the dorsal
side. It will click pictures at periodic intervals as decided by
operator. These images are sent to the server. The server
does the work of identifying garbage in the images sent by
the drone. If garbage is detected, the image is saved with its
GPS co-ordinates.ServeractivatesSwachhBharatapp,which
locates cleaner with closest proximitytoarea wheregarbage
has been detected. The image is then sent via app to the
cleaner. The cleaner accepts the job and starts his journey.
His journey is tracked till he reachesthelocation.Heupdates
his status at location. If it’s a false call, he reports it. On
completion of the job, he clicks a picture and sends it to the
server with status updated as complete. Else, if there is
incomplete manpower or equipment;requestforthesameis
sent. There will be multiple Detector drones assigned to an
area depending on the budget, the level of efficiency
expected and size of the area segment.
1.2 Checker Drone
It checks whether the garbage detected in areas are cleaned
or not. The drone revolves in the area allocated and hence
does not follow a linear path. It verifies and validates the
garbage cleaning process. In contrast totheDetectordrones,
the checker drone is singular. It monitors the work of all
detector drones working in the designated area. Thus, cross
validation of work by the cleaner.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2406
Fig.1
3. IMAGE PROCESSING AT BACKEND
3.1 Computer Vision System
Computer vision is an interdisciplinary field that deals with
how computer can be made for gaining high level
understanding from digital images. Computer vision tries to
do what human brain does with retinal data that means
understanding scene basedonimagedata.Itautomatestasks
that the human visual system can do. Tasks includemethods
for acquiring, processing, analyzing & understanding digital
images, then extraction of high dimensional data.
3.2 Convolutional Neural Network
It is the core & crux of Computer Vision System.
Among neural networks, Convolutional Neural Networks or
CNN’s seemed the most rational choice due to best possible
correction detection rates achieved. They use stochastic &
not deterministic methods, hence random variables are
picked up. This ensures a non-linear approach to feature
definitions or selections at the final output stage.
CNN’s are usually classified into the following layers:-
1. Convolutional Layers-Feature extraction occurs
here. At the initial convolutional layers, simple
features such as lines, curves or points are
extracted. The shapes get complex in subsequent
layers.
2. Pooling Layers- Reduction is performed on
resolution of object’s features. Robust features are
selected while lesser features with noise &
distortion are filtered out. The features are
averaged out or max_value is selected among sub
array of similar features.
3. ReLu Layers-. Used as a triggering or a non-linear
activation function. Makes surethatthesizeofinput
is equal to size of output generated. But, at thesame
time makes data more sparse. Has reduced
likelihood of vanishing gradient problem though it
generate dead filters as the sparsity of data
increases for several features. Functions that could
be used for non-linear data functions include
hyperbolic tangents, absolute hyperbolic tangents
or sigmoids.
4. Fully Connected Layers- Here, final computation of
the output occurs. It involves taking elements of
previous features & computing them together to
generate the final output.
CNN’s can have anywhere between 5to25layers,depending
on how deep you want to construct the network. Another
reason why CNN’s are the preferred network isbecausethey
are shift variant, that is, the same weights are maintained
across the network space. Since, the weights are constant,
memory usage is also significantly lesser.
3.3 Maintain Dataset
- Datasets under consideration are ImageSet, a
readily available repository of images.
- Images generated by drones & through constant
machine learning at geo-sites.
- CNN’s had a problem with respect to identifyingoff-
center or skewed objects. Window sliding
techniques are used to take successive images
which are stored as a separate image in the dataset.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2407
3.4 Segmentation & Recognition
Image Segmentation- The image initially undergoes image
coding, where its bandwidth is reduced & then image
enhancement techniques are used to improve its
appearance.
Image Recognition- Two potential methods identified were
Template Matching & model based object recognition.
a. Model Based – Geometric state transformationsare
used to classify objects & maps into a sensory co-ordinate
system. It offers good running time but can generate errors
while using hashing algorithm techniques.
b. Template Based- It is a hierarchical process where
scaling & rotation iterations are performed on objects. An
object is first saved with x & y co-ordinate positions of its
center & the co-ordinates of other pixels. The sum of
products of the center & each pixel are computed. The
highest value is chosen as the best position & is saved as
template filter mask. The number of increment related
computing can be reduced by using clustering techniques.
The images of potential garbage will be stored as dataset in
system. When server will receiveanimagefromdrone,it will
check the image with pre-loaded dataset. The comparison
will be done with help of template based object recognition.
If match found from dataset, an alert message will be
generated by the server with GPS location of the image.
4. END USER APPLICATION
The cleaner is one of the end users of this system. The
proposed system can help the cleaner a great deal. They do
not have to wander from place to place in search of garbage.
It can save time, money and resources such as using vehicle
in search of garbage. This search can instead be done by the
drones now.
Today smartphone is a basic necessity and many people use
it. Smartphones with the help of an androidappconnects the
cleaner and system together to complete their task, i.e
cleaner to clean the trash and later notify system regarding
work done.
The Report Status activity of the android application gets
enabled when cleaner reaches the destination (where the
trash is located). The application is programmedtocompare
the user & garbage locations in periodic intervals to see if it
matches. On getting the same location the user is directed to
window with two options. First option:Conveytothesystem
that the trash is cleaned and Second: Asking Help.Incasethe
cleaner is unable to clean the trash or needs some more
equipment.
5. TASK COMPLETION VERIFICATION
Fig.2 explains the verification process of garbage collection
by checker drone.
Considering possibilities of wrong updates by cleaners,
process of verification is necessary.
In this process, a checker drone who is having data of
multiple drones will visit to the spots where potential
garbage was located and will check if it is actually cleared or
not. Working process of checker drone is as follows:
1.Checker drone navigatesto spotswherethedetectordrone
had captured images with garbage.
2.It captures image of the same position where the detector
drone have detected garbage . This location is fed into
Checker drone by the server.
4.At the server site, using image processing it again tries to
detect garbage. If it’s cleaned, the job status is validated. If
not cleaned, server sends notification to nearest available
cleaner.
5.The checker drone repeats the same activity for all alerted
positions by detector drone.
Fig. 2
6. CONCLUSIONS
With help of modern technology, we can maintain our
area neat andclean without investingmoremanpower
and can lead to good governance of keeping our own
country clean.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2408
7. ACKNOWLEDGEMENT
The idea of “Cleaner Drone” being turned into a vision
and now being proposed as research paper was only
possible by endless support we received from our
colleagues and professors. We would like to thank
Department of MCA, VESIT, Chembur for their
acceptance and assistance throughout duration of
research.
A sincere thanks to Mr. Ameya Parkar(Asst. Professor,
VESIT) for supervision and guidance. We would like to
show our gratitude to Mrs. Rohini Temkar and Mr.
Sunny Nahar(Asst. Professors) for their
encouragement.
I appreciate all the support we received without
which the research would have been more difficult.
However, any errors or mistakes are our own and
should not affect the reputations of these respected
people.
REFERENCES
1. https://www.youtube.com/channel/UC9OeZkI
whzfv-_Cb7fCikLQ
2. http://cs231n.github.io/convolutional-
networks/
3. https://en.wikipedia.org/wiki/Convolutional_
neural_network
4. http://deeplearning.net/tutorial/lenet.html
5. www.draw.io
6. www.ieee.org
7. https://adeshpande3.github.io/adeshpande3.g
ithub.io/The-9-Deep-Learning-Papers-You-
Need-To-Know-About.html
8. https://www.analyticsvidhya.com/blog/2016/
04/deep-learning-computer-vision-
introduction-convolution-neural-networks
9. https://www.mathworks.com/products/image
.html
10. http://stats.stackexchange.com/questions/126
2 38/what-are-the-advantages-of-relu-over-
sigmoid-function-in-deep-neural-network

More Related Content

What's hot

Ijmsr 2016-10
Ijmsr 2016-10Ijmsr 2016-10
Ijmsr 2016-10ijmsr
 
Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network  Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network ijcga
 
Video surveillance Moving object detection& tracking Chapter 1
Video surveillance Moving object detection& tracking Chapter 1 Video surveillance Moving object detection& tracking Chapter 1
Video surveillance Moving object detection& tracking Chapter 1 ahmed mokhtar
 
Interactive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor networkInteractive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor networkijcga
 
Paper id 6122018109
Paper id 6122018109Paper id 6122018109
Paper id 6122018109IJRAT
 
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCEHUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCEAswinraj Manickam
 
Simultaneous Mapping and Navigation For Rendezvous in Space Applications
Simultaneous Mapping and Navigation For Rendezvous in Space ApplicationsSimultaneous Mapping and Navigation For Rendezvous in Space Applications
Simultaneous Mapping and Navigation For Rendezvous in Space ApplicationsNandakishor Jahagirdar
 
Trajectory Based Unusual Human Movement Identification for ATM System
	 Trajectory Based Unusual Human Movement Identification for ATM System	 Trajectory Based Unusual Human Movement Identification for ATM System
Trajectory Based Unusual Human Movement Identification for ATM SystemIRJET Journal
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...eSAT Journals
 
IRJET- Proposed Design for 3D Map Generation using UAV
IRJET- Proposed Design for 3D Map Generation using UAVIRJET- Proposed Design for 3D Map Generation using UAV
IRJET- Proposed Design for 3D Map Generation using UAVIRJET Journal
 
Multisensor Data Fusion : Techno Briefing
Multisensor Data Fusion : Techno BriefingMultisensor Data Fusion : Techno Briefing
Multisensor Data Fusion : Techno BriefingPaveen Juntama
 
IRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image ProcessingIRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image ProcessingIRJET Journal
 
IRJET- Secure Online Payment with Facial Recognition using CNN
IRJET-  	  Secure Online Payment with Facial Recognition using CNNIRJET-  	  Secure Online Payment with Facial Recognition using CNN
IRJET- Secure Online Payment with Facial Recognition using CNNIRJET Journal
 

What's hot (18)

Ijmsr 2016-10
Ijmsr 2016-10Ijmsr 2016-10
Ijmsr 2016-10
 
Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network  Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network
 
Video surveillance Moving object detection& tracking Chapter 1
Video surveillance Moving object detection& tracking Chapter 1 Video surveillance Moving object detection& tracking Chapter 1
Video surveillance Moving object detection& tracking Chapter 1
 
Interactive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor networkInteractive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor network
 
Paper id 6122018109
Paper id 6122018109Paper id 6122018109
Paper id 6122018109
 
INCAST_2008-014__2_
INCAST_2008-014__2_INCAST_2008-014__2_
INCAST_2008-014__2_
 
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCEHUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
 
2007-_01-3912
2007-_01-39122007-_01-3912
2007-_01-3912
 
Simultaneous Mapping and Navigation For Rendezvous in Space Applications
Simultaneous Mapping and Navigation For Rendezvous in Space ApplicationsSimultaneous Mapping and Navigation For Rendezvous in Space Applications
Simultaneous Mapping and Navigation For Rendezvous in Space Applications
 
Trajectory Based Unusual Human Movement Identification for ATM System
	 Trajectory Based Unusual Human Movement Identification for ATM System	 Trajectory Based Unusual Human Movement Identification for ATM System
Trajectory Based Unusual Human Movement Identification for ATM System
 
thesis
thesisthesis
thesis
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...
 
IRJET- Proposed Design for 3D Map Generation using UAV
IRJET- Proposed Design for 3D Map Generation using UAVIRJET- Proposed Design for 3D Map Generation using UAV
IRJET- Proposed Design for 3D Map Generation using UAV
 
HMotion: An Algorithm for Human Motion Detection
HMotion: An Algorithm for Human Motion DetectionHMotion: An Algorithm for Human Motion Detection
HMotion: An Algorithm for Human Motion Detection
 
Multisensor Data Fusion : Techno Briefing
Multisensor Data Fusion : Techno BriefingMultisensor Data Fusion : Techno Briefing
Multisensor Data Fusion : Techno Briefing
 
IRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image ProcessingIRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image Processing
 
IRJET- Secure Online Payment with Facial Recognition using CNN
IRJET-  	  Secure Online Payment with Facial Recognition using CNNIRJET-  	  Secure Online Payment with Facial Recognition using CNN
IRJET- Secure Online Payment with Facial Recognition using CNN
 
1886 1892
1886 18921886 1892
1886 1892
 

Similar to IRJET-Cleaner Drone

AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)cscpconf
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET Journal
 
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...IRJET Journal
 
Automatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVMAutomatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVMIRJET Journal
 
IRJET- Criminal Recognization in CCTV Surveillance Video
IRJET-  	  Criminal Recognization in CCTV Surveillance VideoIRJET-  	  Criminal Recognization in CCTV Surveillance Video
IRJET- Criminal Recognization in CCTV Surveillance VideoIRJET Journal
 
IRJET- Border Security using Computer Vision
IRJET- Border Security using Computer VisionIRJET- Border Security using Computer Vision
IRJET- Border Security using Computer VisionIRJET Journal
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
Real Time Object Dectection using machine learning
Real Time Object Dectection using machine learningReal Time Object Dectection using machine learning
Real Time Object Dectection using machine learningpratik pratyay
 
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)csandit
 
IRJET- Smart Traffic Control System using Yolo
IRJET- Smart Traffic Control System using YoloIRJET- Smart Traffic Control System using Yolo
IRJET- Smart Traffic Control System using YoloIRJET Journal
 
IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...
IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...
IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...IRJET Journal
 
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...
IRJET- Intrusion Detection through Image Processing and Getting Notified ...IRJET Journal
 
IRJET - Gesture Controlled Home Automation using CNN
IRJET -  	  Gesture Controlled Home Automation using CNNIRJET -  	  Gesture Controlled Home Automation using CNN
IRJET - Gesture Controlled Home Automation using CNNIRJET Journal
 
IRJET- Traffic Sign Classification and Detection using Deep Learning
IRJET- Traffic Sign Classification and Detection using Deep LearningIRJET- Traffic Sign Classification and Detection using Deep Learning
IRJET- Traffic Sign Classification and Detection using Deep LearningIRJET Journal
 
Object and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually ImpairedObject and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually ImpairedIRJET Journal
 
IRJET- Analysing Wound Area Measurement using Android App
IRJET- Analysing Wound Area Measurement using Android AppIRJET- Analysing Wound Area Measurement using Android App
IRJET- Analysing Wound Area Measurement using Android AppIRJET Journal
 
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET Journal
 

Similar to IRJET-Cleaner Drone (20)

AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
 
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
 
Automatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVMAutomatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVM
 
IRJET- Criminal Recognization in CCTV Surveillance Video
IRJET-  	  Criminal Recognization in CCTV Surveillance VideoIRJET-  	  Criminal Recognization in CCTV Surveillance Video
IRJET- Criminal Recognization in CCTV Surveillance Video
 
IRJET- Border Security using Computer Vision
IRJET- Border Security using Computer VisionIRJET- Border Security using Computer Vision
IRJET- Border Security using Computer Vision
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
Real Time Object Dectection using machine learning
Real Time Object Dectection using machine learningReal Time Object Dectection using machine learning
Real Time Object Dectection using machine learning
 
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
 
IRJET- Smart Traffic Control System using Yolo
IRJET- Smart Traffic Control System using YoloIRJET- Smart Traffic Control System using Yolo
IRJET- Smart Traffic Control System using Yolo
 
IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...
IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...
IRJET- Design the Surveillance Algorithm and Motion Detection of Objects for ...
 
slide-171212080528.pptx
slide-171212080528.pptxslide-171212080528.pptx
slide-171212080528.pptx
 
Gi3511181122
Gi3511181122Gi3511181122
Gi3511181122
 
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
 
IRJET - Gesture Controlled Home Automation using CNN
IRJET -  	  Gesture Controlled Home Automation using CNNIRJET -  	  Gesture Controlled Home Automation using CNN
IRJET - Gesture Controlled Home Automation using CNN
 
IRJET- Traffic Sign Classification and Detection using Deep Learning
IRJET- Traffic Sign Classification and Detection using Deep LearningIRJET- Traffic Sign Classification and Detection using Deep Learning
IRJET- Traffic Sign Classification and Detection using Deep Learning
 
Object and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually ImpairedObject and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually Impaired
 
IRJET- Analysing Wound Area Measurement using Android App
IRJET- Analysing Wound Area Measurement using Android AppIRJET- Analysing Wound Area Measurement using Android App
IRJET- Analysing Wound Area Measurement using Android App
 
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
 
H028038042
H028038042H028038042
H028038042
 

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

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
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
 
(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
 
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
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
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
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
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
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
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
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
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
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
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
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 

Recently uploaded (20)

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
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
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
(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...
 
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...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
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
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
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
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
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
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
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
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
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
 
★ 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
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 

IRJET-Cleaner Drone

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2405 Cleaner Drone Ameya Parkar1, Aditi Prabhudesai2 1Assistant Professor, Mumbai University,Mumbai,India 2MCA 3rd Year Student, Mumbai University, Mumbai, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Cleaner drone is a system designed to locate garbage in an area with help of drone. The drone comes with high quality camera and a GPS tracker in it. The drone will follow a pre-assigned path to which it will be assigned. It will locate potential garbage material and send snapshot of the same along with its GPS location. On the server side, analysis of the image sent by drone will be done with help of Computer vision technology that mainly involves segmentation, recognition and reconstruction. If garbage is found in an image, the server will check for cleaners stationed nearby and give an alert for garbage collection to the one with closest proximity. The cleaner who received alert will go to the location and update the status after cleaning garbage. For verification, a checker drone will monitor status at those specific locations where garbage was located. It will check whether garbage was cleaned properly or not. This endeavor will contribute to the ‘Swachcha Bharat mission’ of the government by keeping the area neat and clean with the help of regular drone surveillance. Key Words: Cleaner drone,detectordrone,checkerdrone, cleaner 1.INTRODUCTION A detector drone will start its work from location, say x which is predefined in the database. It will continuously capture images and send it to server. Drone will follow the pre assigned path and will keep sending images of that area. Server on the other hand, will receive image captured by drone. Captured image will be processed with the help of image processing algorithms in computer visiontechnology. The captured image will be segmented and each segment will be compared with datasets of garbage images. If any garbage object is recognized, an alert will be generated by the system. On receiving alert,serverwill check forcloseness of cleaners (to the location where potential garbage is detected). Server will send alert message to the cleaner who is closest to the garbage location. The cleaner will receive an alert message from the server on his smartphone with garbage location information. When the cleaner will select, view location, a directed path will be provided to him to reach that specific location. Once the cleaner reaches the location, status update windowwill beenabledonhismobile screen, wher e he is supposed to update the status as ‘Cleaned’, once cleaning work has been finished. If hecarries insufficient equipment to clean the garbage or requires an additional hand, he will select ‘Help’ option which will connect him to his superior through a call. After a certain timeslot (say 30 minutes) the checker drone starts flying from its current location to those specific locations where garbage was located by detectordrone&systemhadverified object as garbage. Checker drone will verifyifthecleaner has cleaned the place or not. A single checker drone is assigned supervision of multiple detector drones. Fig.1 explains working of Cleaner drone. 2. WORKING OF DRONE 2.1 Detector Drone Drone starts flying from location it is currently stationed at. It follows the path which has been programmed into it by system. The drone is fit with a small camera on the dorsal side. It will click pictures at periodic intervals as decided by operator. These images are sent to the server. The server does the work of identifying garbage in the images sent by the drone. If garbage is detected, the image is saved with its GPS co-ordinates.ServeractivatesSwachhBharatapp,which locates cleaner with closest proximitytoarea wheregarbage has been detected. The image is then sent via app to the cleaner. The cleaner accepts the job and starts his journey. His journey is tracked till he reachesthelocation.Heupdates his status at location. If it’s a false call, he reports it. On completion of the job, he clicks a picture and sends it to the server with status updated as complete. Else, if there is incomplete manpower or equipment;requestforthesameis sent. There will be multiple Detector drones assigned to an area depending on the budget, the level of efficiency expected and size of the area segment. 1.2 Checker Drone It checks whether the garbage detected in areas are cleaned or not. The drone revolves in the area allocated and hence does not follow a linear path. It verifies and validates the garbage cleaning process. In contrast totheDetectordrones, the checker drone is singular. It monitors the work of all detector drones working in the designated area. Thus, cross validation of work by the cleaner.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2406 Fig.1 3. IMAGE PROCESSING AT BACKEND 3.1 Computer Vision System Computer vision is an interdisciplinary field that deals with how computer can be made for gaining high level understanding from digital images. Computer vision tries to do what human brain does with retinal data that means understanding scene basedonimagedata.Itautomatestasks that the human visual system can do. Tasks includemethods for acquiring, processing, analyzing & understanding digital images, then extraction of high dimensional data. 3.2 Convolutional Neural Network It is the core & crux of Computer Vision System. Among neural networks, Convolutional Neural Networks or CNN’s seemed the most rational choice due to best possible correction detection rates achieved. They use stochastic & not deterministic methods, hence random variables are picked up. This ensures a non-linear approach to feature definitions or selections at the final output stage. CNN’s are usually classified into the following layers:- 1. Convolutional Layers-Feature extraction occurs here. At the initial convolutional layers, simple features such as lines, curves or points are extracted. The shapes get complex in subsequent layers. 2. Pooling Layers- Reduction is performed on resolution of object’s features. Robust features are selected while lesser features with noise & distortion are filtered out. The features are averaged out or max_value is selected among sub array of similar features. 3. ReLu Layers-. Used as a triggering or a non-linear activation function. Makes surethatthesizeofinput is equal to size of output generated. But, at thesame time makes data more sparse. Has reduced likelihood of vanishing gradient problem though it generate dead filters as the sparsity of data increases for several features. Functions that could be used for non-linear data functions include hyperbolic tangents, absolute hyperbolic tangents or sigmoids. 4. Fully Connected Layers- Here, final computation of the output occurs. It involves taking elements of previous features & computing them together to generate the final output. CNN’s can have anywhere between 5to25layers,depending on how deep you want to construct the network. Another reason why CNN’s are the preferred network isbecausethey are shift variant, that is, the same weights are maintained across the network space. Since, the weights are constant, memory usage is also significantly lesser. 3.3 Maintain Dataset - Datasets under consideration are ImageSet, a readily available repository of images. - Images generated by drones & through constant machine learning at geo-sites. - CNN’s had a problem with respect to identifyingoff- center or skewed objects. Window sliding techniques are used to take successive images which are stored as a separate image in the dataset.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2407 3.4 Segmentation & Recognition Image Segmentation- The image initially undergoes image coding, where its bandwidth is reduced & then image enhancement techniques are used to improve its appearance. Image Recognition- Two potential methods identified were Template Matching & model based object recognition. a. Model Based – Geometric state transformationsare used to classify objects & maps into a sensory co-ordinate system. It offers good running time but can generate errors while using hashing algorithm techniques. b. Template Based- It is a hierarchical process where scaling & rotation iterations are performed on objects. An object is first saved with x & y co-ordinate positions of its center & the co-ordinates of other pixels. The sum of products of the center & each pixel are computed. The highest value is chosen as the best position & is saved as template filter mask. The number of increment related computing can be reduced by using clustering techniques. The images of potential garbage will be stored as dataset in system. When server will receiveanimagefromdrone,it will check the image with pre-loaded dataset. The comparison will be done with help of template based object recognition. If match found from dataset, an alert message will be generated by the server with GPS location of the image. 4. END USER APPLICATION The cleaner is one of the end users of this system. The proposed system can help the cleaner a great deal. They do not have to wander from place to place in search of garbage. It can save time, money and resources such as using vehicle in search of garbage. This search can instead be done by the drones now. Today smartphone is a basic necessity and many people use it. Smartphones with the help of an androidappconnects the cleaner and system together to complete their task, i.e cleaner to clean the trash and later notify system regarding work done. The Report Status activity of the android application gets enabled when cleaner reaches the destination (where the trash is located). The application is programmedtocompare the user & garbage locations in periodic intervals to see if it matches. On getting the same location the user is directed to window with two options. First option:Conveytothesystem that the trash is cleaned and Second: Asking Help.Incasethe cleaner is unable to clean the trash or needs some more equipment. 5. TASK COMPLETION VERIFICATION Fig.2 explains the verification process of garbage collection by checker drone. Considering possibilities of wrong updates by cleaners, process of verification is necessary. In this process, a checker drone who is having data of multiple drones will visit to the spots where potential garbage was located and will check if it is actually cleared or not. Working process of checker drone is as follows: 1.Checker drone navigatesto spotswherethedetectordrone had captured images with garbage. 2.It captures image of the same position where the detector drone have detected garbage . This location is fed into Checker drone by the server. 4.At the server site, using image processing it again tries to detect garbage. If it’s cleaned, the job status is validated. If not cleaned, server sends notification to nearest available cleaner. 5.The checker drone repeats the same activity for all alerted positions by detector drone. Fig. 2 6. CONCLUSIONS With help of modern technology, we can maintain our area neat andclean without investingmoremanpower and can lead to good governance of keeping our own country clean.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2408 7. ACKNOWLEDGEMENT The idea of “Cleaner Drone” being turned into a vision and now being proposed as research paper was only possible by endless support we received from our colleagues and professors. We would like to thank Department of MCA, VESIT, Chembur for their acceptance and assistance throughout duration of research. A sincere thanks to Mr. Ameya Parkar(Asst. Professor, VESIT) for supervision and guidance. We would like to show our gratitude to Mrs. Rohini Temkar and Mr. Sunny Nahar(Asst. Professors) for their encouragement. I appreciate all the support we received without which the research would have been more difficult. However, any errors or mistakes are our own and should not affect the reputations of these respected people. REFERENCES 1. https://www.youtube.com/channel/UC9OeZkI whzfv-_Cb7fCikLQ 2. http://cs231n.github.io/convolutional- networks/ 3. https://en.wikipedia.org/wiki/Convolutional_ neural_network 4. http://deeplearning.net/tutorial/lenet.html 5. www.draw.io 6. www.ieee.org 7. https://adeshpande3.github.io/adeshpande3.g ithub.io/The-9-Deep-Learning-Papers-You- Need-To-Know-About.html 8. https://www.analyticsvidhya.com/blog/2016/ 04/deep-learning-computer-vision- introduction-convolution-neural-networks 9. https://www.mathworks.com/products/image .html 10. http://stats.stackexchange.com/questions/126 2 38/what-are-the-advantages-of-relu-over- sigmoid-function-in-deep-neural-network