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: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 45
Traffic Management system using Deep Learning
Khushi Gupta1, Trishul Shrivas2, Siddharth Sharma3, Uma Raj4
1,2,3UG Scholar, Electronics & Telecommunication Engineering Department, Shah and Anchor Kutchhi Engineering
College, Mumbai, Mumbai University, Maharashtra, India
4Assistant Professor, Electronics & Telecommunication Engineering Department, Shah and Anchor Kutchhi
Engineering College, Mumbai, Mumbai University, Maharashtra, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – Traffic hazards are increasing, and road
accidents are occurring on a regular basis, resulting in
massive loss of life, property. This problem affects many
aspects as modern society including economic development,
traffic accidents, increase in greenhouse gas emission, time
spent and health issues. The purpose of this project is to
address this effect using machine learning based traffic
management system (TMS). The major reason behind the
accidents is the over speeding of the vehicles. Peopletendtobe
in hurry to reach their work-place or anyeventandsometimes
knowingly cross the speed limit of the vehicle to reach on time
and this leads to accidents. So, vehicle speed detection is also
implemented in the project usingimageprocessingalgorithms
and OpenCV.
Key Words: Traffic management, vehicle detection, YOLO,
speed detection, Alexnet
1.INTRODUCTION
According to the requirements of large populations,
government wants manageanddeveloptheinfrastructurein
which smart / autonomous traffic management is key
feature to smoothen the traffic [1].Howtomanagethetraffic
automatically? Another situation is while in larger traffic
how to cross the ambulance from that traffic. Considering
such situations, the proposed traffic management system
will dynamically change the signal based on traffic
requirement [2]. This project uses some of the algorithms,
datasets and mathematical calculations based on machine
learning and python. The python programming language
used can provide a platform to do some operations like
object detection, image processing,andvideo processing etc.
[3]. Vehicle speed is the most important risk factor for road
accidents, injuries, severity, and fatalities. At any given time,
half of drivers in urban areas exceed the speed limit. This
causes accidents not only for the person speeding, but also
for other people walking or driving nearby, endangering
their lives [4]. The aim of this project is also to detect the
speed of the vehicle which is the main cause of accidents. By
extracting frames from the video and comparing the speed
between two given points, it can be determined whetherthe
vehicle is moving above the permissible limit or not. The
system involves a traffic surveillance setup that can detect
and track vehicles at night, along with a process for
extracting the background and automatically detecting the
vanishing point [4].
1.1 Problem Statement
To manage the traffic signal depending on the number of
vehicles present so that unnecessary traffic can be reduced
and will help people save time.
To decrease accident cases by detecting the vehicles
crossing the speed limit.
2. BLOCK DIAGRAM
2.1 Traffic Management Module
Fig -1: Block Diagram for Traffic Management
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 46
The four blocks labeled Lane1, Lane2, Lane3, and Lane4 are
each monitoring a different lane of traffic. The processed
video stream is then sent to the YOLO ObjectDetection.YOLO
(You Only Look Once) is a popular object detectionalgorithm
that uses deep neural networks to detect objectsinreal-time.
The types of vehicles are recognized first and are classified
into Transport Vehicles and Emergency Vehicle. The timerof
the vehicle changes dynamically by monitoring the vehicle
density of each lane. If the lane having less vehicles, then the
timer of signal will be reduced. Also, ifany type of emergency
vehicle is present in any lane, then that lane will be
prioritized first means that lane's signal will be green.
2.2 Speed Detection Module
Fig -2: Block diagram for Speed detection
The system first captures an input image of a moving object,
such as a car, using a camera or other imaging device. Input
image is pre-processed to enhance its quality and reduce
noise, using techniques such as noise filtering, contrast
enhancement,andimageresizing.Thepre-processedimageis
analysed to extract relevantfeatures,suchastheobject'ssize,
shape, and position, as well as the background and road
surface. The system tracks the object's movement over a
series of frames todetermineitsspeed,usingtechniquessuch
as optical flow, Kalman filtering, and object segmentation.
Based on the object's movement and distance travelled, the
system calculates theobject'sspeed,usingtechniquessuchas
frame differencing and distance measurement.
3. SOFTWARE DESCRIPTION
3.1 Python 3
The python is an opensource programming language it
means you can use this for your own purposes or free to use
anywhere. This is currently in higher demand to IT industry.
It's mostly used for the Machine learning to develop the
websites, data science and software’s etc. The pythonisvery
friendly to everyone. The python is almost similar to the C
language only the difference in coding syntax. It iscapable to
perform various types of operations and it is used to build
the machine learning, data analyze, complex statistical
calculations.
The python has number of libraries that supportperforming
varieties of task. Therefore, we are choosing this language
for developing this project. If you want to use any kind of
libraries you need to be installing in your desktop. “pip
install” is the command to install any libraries of python.
Library Used:
1. NumPy: NumPy is a Python library used for working
with arrays. It also has functions for working in
domain of linear algebra, fourier transform, and
matrices.
2. Keras: Keras is an open-source software library that
provides a Python interface for artificial neural
networks. Keras acts as an interface for the
TensorFlow library.
3. Opencv: OpenCV (OpenSource Computer Vision
Library) is an opensource computer vision and
machine learning software library. OpenCV was built
to provide a common infrastructure for computer
vision applications and to accelerate the use of
machine perception in the commercial products.
4. Pandas: Pandas is an opensourcePythonpackagethat
is most widely used for data science/data analysis
and machine learning tasks. It is built on top of
another package named Numpy, which provides
support for multi- dimensional arrays.
3.2 Machine learning
The Machine learning (ML) is nothing but the artificial
intelligence (AI). This is software application. It's having the
ability to automatically learn and improve the performance
without making a complex programming. “Machinelearning
focuses on the event of pc programs, which will access
information and use it to find out for themselves.”.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 47
“The ML permits analysisofhugequantitiesofdata.Whereas
it usually delivers faster, additional correct leads in order to
spot profitable opportunities or dangerous risks, it
additionally needs extra time and resources to coach it
properly. Combining machine learning with AI and
psychological feature technologies will build it even simpler
in process large volumes of information”.
3.3 Yolo Algorithm
In the field of object detection, the YOLO (You Only Look
Once) algorithm is a deep learning-based approach. It
operates by dividing an input image into a grid of cells, with
each cell assessed for the likelihood of containing an object.
Additionally, YOLO estimates the object's bounding box
coordinates and class probabilitiesforeachcell thatcontains
an object.
3.4 Alexnet
AlexNet is a deep neural network that includes several
convolutional and fully connected layers. The input to the
network is a color image, and the output is a probability
distribution of the classes of objects present in the image.
One of the significant features of AlexNet is the use of
Rectified Linear Unit (ReLU) Nonlinearity, which replaced
the usual tanh or sigmoid activation functions. The use of
ReLU nonlinearity allowed for faster training of deep
Convolutional Neural Networks (CNNs) compared to
saturating activation functions.
4. WORKING
4.1 Dynamic Traffic Management
The relevance of traffic management lies in its ability to
improve traffic flow, reduce congestion, and enhance safety
on roads. Traffic management systems use various
technologies, including cameras, sensors, and
communication networks, to monitor and control traffic on
roads.
One of the key components of traffic managementsystemsis
object detection, which involves detecting and tracking
vehicles, pedestrians, and other objects in the scene. Object
detection is essential for various traffic management tasks,
such as traffic flow analysis, intersection management, and
incident detection.
The steps of working are as follows,
1.The camera sendingtheimagestosysteminsomeintervals
for processing.
2.This can be determined by the density of traffic from the
roads and based on the calculations timeofthetrafficclearis
changed which is shown in result.
3.The system decides which is signal is open for which time
and it'll trigger the traffic signals.
Working solution can be explained in four simple steps:
1. Create a real-time image of each track.
2. Scan and determine the traffic density.
3. Enter this information into the time allocation module.
4. The output is the time intervals for eachtrack,asrequired.
4.2 Ambulance Detection
Input to AlexNet
Fig -3: Ambulance detection
The above figure is the ambulance van detection as an
emergency vehicle. With different types of ambulance
vehicles images, the model has been trained. We are giving
the input to AlexNet — it is an RGB image. This is called
training with size 256*256. If the input image size isn't
having 256*256, then the image is rescaled in such a way
that is can be shorter in size of length 256 and cropped the
image from center parts and converted into a size of
256*256. The image is trained with raw RGBpixel values.So,
if the input image is grayscale, it is converted to an RGB
image. 257 * 257 sized images were generated from 256 *
256 images by random cropping and fed to the first level of
AlexNet.
4.3 Speed Detection
The relevance of speed detection lies initsabilitytopromote
road safety by enforcing speedlimitsandreducingtherisk of
accidents. Speeding is a major contributing factor to road
accidents, and speed detection systems are used by law
enforcement agencies and transportation authorities to
monitor and enforce speed limits on roads.
Image processing techniques for speed detection typically
involve three main steps:
1. Detection: In the first step, the image processing
algorithm detects the vehicles in the image and
separates them from the background. This can be done
using techniques such as background subtraction,edge
detection, and object detection algorithms.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 48
2. Tracking: Once the vehicles have been detected, the
algorithm tracks their movements across multiple
frames to estimate their speed. This is done by
measuring the distance traveledbythevehiclebetween
two or more frames and dividing it by the time elapsed
between those frames.
3. Estimation: Finally, the algorithm uses the speed
estimates to determine whether the vehicle is
exceeding the speed limit. This can be done by
comparing the estimated speed to the posted speed
limit or by using a threshold value above which the
vehicle is considered to be speeding.
Video is a sequence of consecutive image frames Video
frames are processed using image processing techniques to
extract background and foreground information. The
backgroundinformationincludesstationaryobjects,weather
conditions and time of day, while the foreground
information includes moving objects like vehicles and
pedestrians. The algorithm uses gray-scale images of both
input and template images and matches the template image
with each individual block of the input image using a
correlation function with a matching factor. If a block
matches the template, the algorithm retrieves information
about the matched block's coordinates, area, and centroid
value. The distance travelled by the vehicle is calculated
using the centroid coordinates of the two most matched
blocks, and the time taken by the vehicle to travel that
distance is notified by the CCTV camera. The speed of the
vehicle is then calculated using mathematical concepts of
speed, time and distance.
5. RESULTS
The figure 4 shows the four lanes. Lanes are made from
PAGE software. Traffic video of each lane will be played. The
model will monitor the density of vehicles on each lane.
Fig -4: Dynamic Traffic control system
Fig -5: Camera view from all sides
As we can see the model monitors the laneandcalculatesthe
vehicle on each lane. This is done by the YOLO algorithm.
Here in this project, YOLO algorithm detectsthevehiclesand
classifies them into different types of vehicles such as Bikes,
Cars, Buses, Trucks, etc.
Fig -6: Emergency vehicle detection
In the above fig. the ambulance is detected which is an
emergency vehicle. So, the timer of signal is decreased
automatically by detecting the ambulance. This done by
using the AlexNet model. AlexNet model istrainedwithlarge
number of images of different emergency vehicles. One of
them is Ambulance.
Fig -7: Speed detection of vehicles
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 49
The speed detection code uses OpenCV and a pre-trained
deep learning model to estimate the speed of vehicles on a
road. The camera used to capture the footage must beaimed
perpendicularly to the road. The code then collects
timestamps of a vehicle at four waypoints, A, B, C, and D, and
calculates the speed of the vehicle by dividing the distance
traveled between each pair of waypoints by the time it takes
the vehicle to travel that distance. The speeds calculated for
each pair of waypoints are then averaged together and
converted from miles per second to kilometers perhourand
miles per hour. Finally, the code displays the speed of the
vehicle that just passed each time it detects a vehicle, as well
as the elapsed time and the approximate frames per second
rate.
6. CONCLUSIONS
In this way we are developing a very smart traffic control
system which can be able to detect and monitor the traffic.It
can take decision according to the density of traffic. The
proposed work guarantees that it will give an efficient and
dynamic management of traffic considering emergency
vehicles. The speed detection system implemented can help
reduce accidents and hence save lives.
ACKNOWLEDGEMENT
We express our sincere thanks to Ms. Uma Raj, our project
guide at SAKEC for the technical guidance, suggestions,
motivation, help and facilities provided to us for the
successful completion of our work and for monitoring our
progress periodically and solving all our practical problems
during our project work.
Also, we would like to thank our Principal, Dr. BhaveshPatel
and Dr. T. P. Vinutha, Head of Electronics &
Telecommunication Department, for their help andsupport.
No project is ever complete without the guidelines of the
experts who have already established milestones on this
path before and have become masters of it. So, we wouldlike
to take this opportunity to thank all those who have helped
us in implementing this project.
REFERENCES
[1] J. F. Gilmore and K. J. Elibiar, "Traffic Management
Applications of Neural Networks," in Proceedings of the
IEEE International Conference on Neural Networks
(ICNN), 2022
[2] Siu Hong Loh, Jia Jia Sim, Chu Shen Ong, Kim Ho Yeap,
“Development of Smart Traffic Light Controller System
with Deep Learning Capability in Image Processing”,
2021
[3] Dr. A. Ravi, R. Nandhini, K. Bhuvaneshwari J. Divya, K.
Janani, “Traffic Management System using Machine
Learning Algorithm”,2021
[4] Hyung Jun KIM,” Vehicle Detection and Speed
Estimation for Automated Traffic Surveillance Systems
at Nighttime”, 2019

More Related Content

Similar to Traffic Management system using Deep Learning

Neural Network based Vehicle Classification for Intelligent Traffic Control
Neural Network based Vehicle Classification for Intelligent Traffic ControlNeural Network based Vehicle Classification for Intelligent Traffic Control
Neural Network based Vehicle Classification for Intelligent Traffic Controlijseajournal
 
TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE
TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLETRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE
TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLEIRJET 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
 
A Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage MakerA Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage Makerijtsrd
 
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
 
DYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTION
DYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTIONDYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTION
DYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTIONIRJET 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
 
Real-Time Automated Overspeeding Detection and Identification System
Real-Time Automated Overspeeding Detection and Identification SystemReal-Time Automated Overspeeding Detection and Identification System
Real-Time Automated Overspeeding Detection and Identification SystemIRJET Journal
 
Congestion Control System Using Machine Learning
Congestion Control System Using Machine LearningCongestion Control System Using Machine Learning
Congestion Control System Using Machine LearningIRJET Journal
 
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNETROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNETIRJET Journal
 
Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi IJECEIAES
 
Voice Enable Blind Assistance System -Real time Object Detection
Voice Enable Blind Assistance System -Real time Object DetectionVoice Enable Blind Assistance System -Real time Object Detection
Voice Enable Blind Assistance System -Real time Object DetectionIRJET Journal
 
IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...
IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...
IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...IRJET Journal
 
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- Autonomous Underwater Vehicle: Electronics and Software Implementation...
IRJET- Autonomous Underwater Vehicle: Electronics and Software Implementation...IRJET- Autonomous Underwater Vehicle: Electronics and Software Implementation...
IRJET- Autonomous Underwater Vehicle: Electronics and Software Implementation...IRJET Journal
 
Application of improved you only look once model in road traffic monitoring ...
Application of improved you only look once model in road  traffic monitoring ...Application of improved you only look once model in road  traffic monitoring ...
Application of improved you only look once model in road traffic monitoring ...IJECEIAES
 
Drishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for BlindDrishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for BlindIRJET Journal
 
Web-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social MediaWeb-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social MediaIRJET Journal
 
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGTRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGIRJET Journal
 
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...IRJET Journal
 

Similar to Traffic Management system using Deep Learning (20)

Neural Network based Vehicle Classification for Intelligent Traffic Control
Neural Network based Vehicle Classification for Intelligent Traffic ControlNeural Network based Vehicle Classification for Intelligent Traffic Control
Neural Network based Vehicle Classification for Intelligent Traffic Control
 
TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE
TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLETRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE
TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE
 
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
 
A Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage MakerA Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage Maker
 
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
 
DYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTION
DYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTIONDYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTION
DYNAMIC ENERGY MANAGEMENT USING REAL TIME OBJECT DETECTION
 
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
 
Real-Time Automated Overspeeding Detection and Identification System
Real-Time Automated Overspeeding Detection and Identification SystemReal-Time Automated Overspeeding Detection and Identification System
Real-Time Automated Overspeeding Detection and Identification System
 
Congestion Control System Using Machine Learning
Congestion Control System Using Machine LearningCongestion Control System Using Machine Learning
Congestion Control System Using Machine Learning
 
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNETROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
 
Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi
 
Voice Enable Blind Assistance System -Real time Object Detection
Voice Enable Blind Assistance System -Real time Object DetectionVoice Enable Blind Assistance System -Real time Object Detection
Voice Enable Blind Assistance System -Real time Object Detection
 
IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...
IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...
IRJET- Artificial Intelligence Based Smart Traffic Management System using Vi...
 
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- Autonomous Underwater Vehicle: Electronics and Software Implementation...
IRJET- Autonomous Underwater Vehicle: Electronics and Software Implementation...IRJET- Autonomous Underwater Vehicle: Electronics and Software Implementation...
IRJET- Autonomous Underwater Vehicle: Electronics and Software Implementation...
 
Application of improved you only look once model in road traffic monitoring ...
Application of improved you only look once model in road  traffic monitoring ...Application of improved you only look once model in road  traffic monitoring ...
Application of improved you only look once model in road traffic monitoring ...
 
Drishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for BlindDrishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for Blind
 
Web-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social MediaWeb-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social Media
 
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGTRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
 
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
 

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

VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
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
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
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
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
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
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 

Recently uploaded (20)

VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
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🔝
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
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
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
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
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 

Traffic Management system using Deep Learning

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 45 Traffic Management system using Deep Learning Khushi Gupta1, Trishul Shrivas2, Siddharth Sharma3, Uma Raj4 1,2,3UG Scholar, Electronics & Telecommunication Engineering Department, Shah and Anchor Kutchhi Engineering College, Mumbai, Mumbai University, Maharashtra, India 4Assistant Professor, Electronics & Telecommunication Engineering Department, Shah and Anchor Kutchhi Engineering College, Mumbai, Mumbai University, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – Traffic hazards are increasing, and road accidents are occurring on a regular basis, resulting in massive loss of life, property. This problem affects many aspects as modern society including economic development, traffic accidents, increase in greenhouse gas emission, time spent and health issues. The purpose of this project is to address this effect using machine learning based traffic management system (TMS). The major reason behind the accidents is the over speeding of the vehicles. Peopletendtobe in hurry to reach their work-place or anyeventandsometimes knowingly cross the speed limit of the vehicle to reach on time and this leads to accidents. So, vehicle speed detection is also implemented in the project usingimageprocessingalgorithms and OpenCV. Key Words: Traffic management, vehicle detection, YOLO, speed detection, Alexnet 1.INTRODUCTION According to the requirements of large populations, government wants manageanddeveloptheinfrastructurein which smart / autonomous traffic management is key feature to smoothen the traffic [1].Howtomanagethetraffic automatically? Another situation is while in larger traffic how to cross the ambulance from that traffic. Considering such situations, the proposed traffic management system will dynamically change the signal based on traffic requirement [2]. This project uses some of the algorithms, datasets and mathematical calculations based on machine learning and python. The python programming language used can provide a platform to do some operations like object detection, image processing,andvideo processing etc. [3]. Vehicle speed is the most important risk factor for road accidents, injuries, severity, and fatalities. At any given time, half of drivers in urban areas exceed the speed limit. This causes accidents not only for the person speeding, but also for other people walking or driving nearby, endangering their lives [4]. The aim of this project is also to detect the speed of the vehicle which is the main cause of accidents. By extracting frames from the video and comparing the speed between two given points, it can be determined whetherthe vehicle is moving above the permissible limit or not. The system involves a traffic surveillance setup that can detect and track vehicles at night, along with a process for extracting the background and automatically detecting the vanishing point [4]. 1.1 Problem Statement To manage the traffic signal depending on the number of vehicles present so that unnecessary traffic can be reduced and will help people save time. To decrease accident cases by detecting the vehicles crossing the speed limit. 2. BLOCK DIAGRAM 2.1 Traffic Management Module Fig -1: Block Diagram for Traffic Management
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 46 The four blocks labeled Lane1, Lane2, Lane3, and Lane4 are each monitoring a different lane of traffic. The processed video stream is then sent to the YOLO ObjectDetection.YOLO (You Only Look Once) is a popular object detectionalgorithm that uses deep neural networks to detect objectsinreal-time. The types of vehicles are recognized first and are classified into Transport Vehicles and Emergency Vehicle. The timerof the vehicle changes dynamically by monitoring the vehicle density of each lane. If the lane having less vehicles, then the timer of signal will be reduced. Also, ifany type of emergency vehicle is present in any lane, then that lane will be prioritized first means that lane's signal will be green. 2.2 Speed Detection Module Fig -2: Block diagram for Speed detection The system first captures an input image of a moving object, such as a car, using a camera or other imaging device. Input image is pre-processed to enhance its quality and reduce noise, using techniques such as noise filtering, contrast enhancement,andimageresizing.Thepre-processedimageis analysed to extract relevantfeatures,suchastheobject'ssize, shape, and position, as well as the background and road surface. The system tracks the object's movement over a series of frames todetermineitsspeed,usingtechniquessuch as optical flow, Kalman filtering, and object segmentation. Based on the object's movement and distance travelled, the system calculates theobject'sspeed,usingtechniquessuchas frame differencing and distance measurement. 3. SOFTWARE DESCRIPTION 3.1 Python 3 The python is an opensource programming language it means you can use this for your own purposes or free to use anywhere. This is currently in higher demand to IT industry. It's mostly used for the Machine learning to develop the websites, data science and software’s etc. The pythonisvery friendly to everyone. The python is almost similar to the C language only the difference in coding syntax. It iscapable to perform various types of operations and it is used to build the machine learning, data analyze, complex statistical calculations. The python has number of libraries that supportperforming varieties of task. Therefore, we are choosing this language for developing this project. If you want to use any kind of libraries you need to be installing in your desktop. “pip install” is the command to install any libraries of python. Library Used: 1. NumPy: NumPy is a Python library used for working with arrays. It also has functions for working in domain of linear algebra, fourier transform, and matrices. 2. Keras: Keras is an open-source software library that provides a Python interface for artificial neural networks. Keras acts as an interface for the TensorFlow library. 3. Opencv: OpenCV (OpenSource Computer Vision Library) is an opensource computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. 4. Pandas: Pandas is an opensourcePythonpackagethat is most widely used for data science/data analysis and machine learning tasks. It is built on top of another package named Numpy, which provides support for multi- dimensional arrays. 3.2 Machine learning The Machine learning (ML) is nothing but the artificial intelligence (AI). This is software application. It's having the ability to automatically learn and improve the performance without making a complex programming. “Machinelearning focuses on the event of pc programs, which will access information and use it to find out for themselves.”.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 47 “The ML permits analysisofhugequantitiesofdata.Whereas it usually delivers faster, additional correct leads in order to spot profitable opportunities or dangerous risks, it additionally needs extra time and resources to coach it properly. Combining machine learning with AI and psychological feature technologies will build it even simpler in process large volumes of information”. 3.3 Yolo Algorithm In the field of object detection, the YOLO (You Only Look Once) algorithm is a deep learning-based approach. It operates by dividing an input image into a grid of cells, with each cell assessed for the likelihood of containing an object. Additionally, YOLO estimates the object's bounding box coordinates and class probabilitiesforeachcell thatcontains an object. 3.4 Alexnet AlexNet is a deep neural network that includes several convolutional and fully connected layers. The input to the network is a color image, and the output is a probability distribution of the classes of objects present in the image. One of the significant features of AlexNet is the use of Rectified Linear Unit (ReLU) Nonlinearity, which replaced the usual tanh or sigmoid activation functions. The use of ReLU nonlinearity allowed for faster training of deep Convolutional Neural Networks (CNNs) compared to saturating activation functions. 4. WORKING 4.1 Dynamic Traffic Management The relevance of traffic management lies in its ability to improve traffic flow, reduce congestion, and enhance safety on roads. Traffic management systems use various technologies, including cameras, sensors, and communication networks, to monitor and control traffic on roads. One of the key components of traffic managementsystemsis object detection, which involves detecting and tracking vehicles, pedestrians, and other objects in the scene. Object detection is essential for various traffic management tasks, such as traffic flow analysis, intersection management, and incident detection. The steps of working are as follows, 1.The camera sendingtheimagestosysteminsomeintervals for processing. 2.This can be determined by the density of traffic from the roads and based on the calculations timeofthetrafficclearis changed which is shown in result. 3.The system decides which is signal is open for which time and it'll trigger the traffic signals. Working solution can be explained in four simple steps: 1. Create a real-time image of each track. 2. Scan and determine the traffic density. 3. Enter this information into the time allocation module. 4. The output is the time intervals for eachtrack,asrequired. 4.2 Ambulance Detection Input to AlexNet Fig -3: Ambulance detection The above figure is the ambulance van detection as an emergency vehicle. With different types of ambulance vehicles images, the model has been trained. We are giving the input to AlexNet — it is an RGB image. This is called training with size 256*256. If the input image size isn't having 256*256, then the image is rescaled in such a way that is can be shorter in size of length 256 and cropped the image from center parts and converted into a size of 256*256. The image is trained with raw RGBpixel values.So, if the input image is grayscale, it is converted to an RGB image. 257 * 257 sized images were generated from 256 * 256 images by random cropping and fed to the first level of AlexNet. 4.3 Speed Detection The relevance of speed detection lies initsabilitytopromote road safety by enforcing speedlimitsandreducingtherisk of accidents. Speeding is a major contributing factor to road accidents, and speed detection systems are used by law enforcement agencies and transportation authorities to monitor and enforce speed limits on roads. Image processing techniques for speed detection typically involve three main steps: 1. Detection: In the first step, the image processing algorithm detects the vehicles in the image and separates them from the background. This can be done using techniques such as background subtraction,edge detection, and object detection algorithms.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 48 2. Tracking: Once the vehicles have been detected, the algorithm tracks their movements across multiple frames to estimate their speed. This is done by measuring the distance traveledbythevehiclebetween two or more frames and dividing it by the time elapsed between those frames. 3. Estimation: Finally, the algorithm uses the speed estimates to determine whether the vehicle is exceeding the speed limit. This can be done by comparing the estimated speed to the posted speed limit or by using a threshold value above which the vehicle is considered to be speeding. Video is a sequence of consecutive image frames Video frames are processed using image processing techniques to extract background and foreground information. The backgroundinformationincludesstationaryobjects,weather conditions and time of day, while the foreground information includes moving objects like vehicles and pedestrians. The algorithm uses gray-scale images of both input and template images and matches the template image with each individual block of the input image using a correlation function with a matching factor. If a block matches the template, the algorithm retrieves information about the matched block's coordinates, area, and centroid value. The distance travelled by the vehicle is calculated using the centroid coordinates of the two most matched blocks, and the time taken by the vehicle to travel that distance is notified by the CCTV camera. The speed of the vehicle is then calculated using mathematical concepts of speed, time and distance. 5. RESULTS The figure 4 shows the four lanes. Lanes are made from PAGE software. Traffic video of each lane will be played. The model will monitor the density of vehicles on each lane. Fig -4: Dynamic Traffic control system Fig -5: Camera view from all sides As we can see the model monitors the laneandcalculatesthe vehicle on each lane. This is done by the YOLO algorithm. Here in this project, YOLO algorithm detectsthevehiclesand classifies them into different types of vehicles such as Bikes, Cars, Buses, Trucks, etc. Fig -6: Emergency vehicle detection In the above fig. the ambulance is detected which is an emergency vehicle. So, the timer of signal is decreased automatically by detecting the ambulance. This done by using the AlexNet model. AlexNet model istrainedwithlarge number of images of different emergency vehicles. One of them is Ambulance. Fig -7: Speed detection of vehicles
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 07 | Jul 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 49 The speed detection code uses OpenCV and a pre-trained deep learning model to estimate the speed of vehicles on a road. The camera used to capture the footage must beaimed perpendicularly to the road. The code then collects timestamps of a vehicle at four waypoints, A, B, C, and D, and calculates the speed of the vehicle by dividing the distance traveled between each pair of waypoints by the time it takes the vehicle to travel that distance. The speeds calculated for each pair of waypoints are then averaged together and converted from miles per second to kilometers perhourand miles per hour. Finally, the code displays the speed of the vehicle that just passed each time it detects a vehicle, as well as the elapsed time and the approximate frames per second rate. 6. CONCLUSIONS In this way we are developing a very smart traffic control system which can be able to detect and monitor the traffic.It can take decision according to the density of traffic. The proposed work guarantees that it will give an efficient and dynamic management of traffic considering emergency vehicles. The speed detection system implemented can help reduce accidents and hence save lives. ACKNOWLEDGEMENT We express our sincere thanks to Ms. Uma Raj, our project guide at SAKEC for the technical guidance, suggestions, motivation, help and facilities provided to us for the successful completion of our work and for monitoring our progress periodically and solving all our practical problems during our project work. Also, we would like to thank our Principal, Dr. BhaveshPatel and Dr. T. P. Vinutha, Head of Electronics & Telecommunication Department, for their help andsupport. No project is ever complete without the guidelines of the experts who have already established milestones on this path before and have become masters of it. So, we wouldlike to take this opportunity to thank all those who have helped us in implementing this project. REFERENCES [1] J. F. Gilmore and K. J. Elibiar, "Traffic Management Applications of Neural Networks," in Proceedings of the IEEE International Conference on Neural Networks (ICNN), 2022 [2] Siu Hong Loh, Jia Jia Sim, Chu Shen Ong, Kim Ho Yeap, “Development of Smart Traffic Light Controller System with Deep Learning Capability in Image Processing”, 2021 [3] Dr. A. Ravi, R. Nandhini, K. Bhuvaneshwari J. Divya, K. Janani, “Traffic Management System using Machine Learning Algorithm”,2021 [4] Hyung Jun KIM,” Vehicle Detection and Speed Estimation for Automated Traffic Surveillance Systems at Nighttime”, 2019