SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1810
TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE
Manoj Kumar M1, Anandateertha2, Abhishek B Kamble3, ChennaKeshava Reddy4
Dr. Saneesh Cleatus Thundiyil5
1234U.G. Scholar, Department of Electronics and Communication Engineering
BMS Institute of Technology and Management, Avalahalli, Yelahanka, Bengaluru-560064
5Associate Professor, Department of Electronics and Communication Engineering,
BMS Institute of Technology and Management, Avalahalli, Yelahanka, Bengaluru-560064
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Traffic Light Priority for Emergency Vehiclesisa
system that allows emergency vehicles to have priority at
traffic signals by controlling the traffic lights in their favor.
This system aims to reduce emergency service response times
and improve the safety of both emergency responders and the
public. This paper will explore the implementation of traffic
light priority for emergency vehicles, including the benefits,
challenges, and potential solutions for this technology. The
study will also examine the impact of traffic light priority on
traffic flow and the overall efficiency of emergency response
systems. Finally, the paper will discuss the potential future
developments of this technology and its potential to improve
emergency services globally.
Key Words: Emergency, Ambulance, Traffic light,
Machine Learning Model, Images, Green, Red
1. INTRODUCTION
In emergency situations, everysecondcounts,andtheability
of emergency services to respond quickly and efficientlycan
be the difference between life and death. One of the major
challenges that emergency responders face is navigating
through traffic and arriving at their destination asquickly as
possible. Traffic congestion and stoplights can cause
significant delays, which can be detrimental to emergency
response times.
Traffic Light Priority for Emergency Vehicles is a system
designed to help overcome this challenge byprovidinga way
for emergency vehicles to have priority at traffic signals.
When activated, the system can override the standardtraffic
light pattern, allowing emergency vehicles to pass through
the intersection safely and efficiently.
In this paper, we will explore the implementation of Traffic
Light Priority for Emergency Vehicles,includingthebenefits,
challenges, and potential solutions for this technology. We
will also examine the impact of traffic light priority ontraffic
flow and the overall efficiency of emergency response
systems. Finally, we will discuss the potential future
developments of this technologyanditspotential toimprove
emergency services globally.
1.1 Problem Statement
Emergency services play a critical role in saving lives and
ensuring public safety, and their ability to respond quickly
and efficiently is of utmost importance. One of the major
challenges faced by emergency responders is navigating
through traffic and reaching their destination promptly.
Traffic congestion and stoplights can cause significant
delays, which can be detrimental to emergency response
times.
As a result, there is a need for a solution that allows
emergency vehicles to have priority at traffic signals to
reduce response times and improve the safety of both
emergency responders and the public.
The problem statement of this study is to explore the
implementation of traffic light priority for emergency
vehicles, including the benefits, challenges, and potential
solutions for this technology, and its impact on traffic flow
and the overall efficiency of emergency response systems.
2. CONVENTIONAL SYSTEMS
2.1 Manual Controlling.
Manual controllingasthenamesuggestsrequiresmanpower
to control the traffic. The traffic policeareallotteda required
area to control traffic. The traffic police carry sign board,
sign light and whistle to control the traffic.
2.2 Automatic Controlling
The automatic traffic light is controlled by timers and
electrical sensors. In a traffic light, a constant numerical
value is loaded in the timer. The lights are automatically
getting ON and OFF based on the timer value.
2.3 Electronic Controlling
Another advanced method is placing some loop detectors or
proximity sensors on the road. This sensor gives data about
the traffic on the road. According to the sensor data the
traffic signals are controlled.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1811
2.4 Drawbacks of Conventional Systems
The manual controlling system requires a large amount of
manpower. Conventional traffic lights use a timer for every
phase, which is fixed and does not adapt according to the
real-time traffic on that road. Electronic sensors/proximity
sensors or loop detectors have less accuracy and require a
high budget.
3. PROPOSED SYSTEM
The proposed system for traffic light control using machine
learning for ambulance detectioncandetectanambulance in
real-time using image processing techniques. The system
will consist of a camera mounted at the intersection, which
will capture the live video feed of the intersection.
The captured images will then be processed using a pre-
trained deep-learning model, which will detect thepresence
of an ambulance on the scene. Once an ambulance is
detected, the system will communicate with the traffic light
controller and change the traffic light to green, allowing the
ambulance to pass through the intersection quickly and
safely.
Fig-1: Flow Chart of Proposed System
4. METHODOLOGY
Block 1: Importing Libraries
First, the libraries are imported to train the model and
perform other tasks such are splitting the images into
training sets and test sets, where this is done by using a
module named train_test_split function which is a sub-
module in the sci-kit-learn module respectively.
Some other modules include config which is used to handle
variablesandconstantsacrossthecode.NextisNumPywhich
is used to perform numerical calculations in the code.
The path module is used to locate the locationofanyfolderor
images in the main folder. The pickle module is used to store
the processed data in a particular folder.
VGG16 is a convolutional neural network model. The
architectureof the VGG16 model is based on the ideaofusing
very small (3x3) convolutional filterswithastrideof1,which
allows the model to learn more complex features and
patterns in the images.
Math-plot lib is another module that is used to plot the graph
of the result provided by the machine learning model. Here
results refer to the accuracy and loss of the model which
recognizes the ambulance in the given image.
Apart from these modules many other modules and sub-
modules are being used in the machine learning model.
Fig-2: Flow Chart of Methodology
Block 2: Importing Images
Here is block 2 of the flow chart of methodology, the images
are imported into the code. These images of ambulances are
taken from different countries,differenttypesofambulances,
from different angles and scenariossothatwhenthemodelis
made to identify a given image, it can identify it easily and in
turn, it increases the accuracy of the machinelearningmodel.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1812
Block 3: Converting Images into Arrays
Here in block 3, the images which are being stored in the
folder are pushed into the arrays. First empty arrays are
initialized using the config library and then using someofthe
loops the images are pushed onto those arrays, which are
used to train the machine learning model. Through this, the
model learns the patterns of the ambulance one by one.
Block 4: Compressing Images
The next step is Compressing the images. Here the input
pixel intensities are scaled from the range [0, 255] to [0, 1]
using the NumPy array division operation. The data array is
converted to a float32 data type, while the labels array
remains as it is.
Converting the data and labels to NumPy arrays and scaling
the input pixel intensities from [0, 255] to [0, 1] are
important preprocessing steps in preparing the data for use
in a machine-learning model.
Scaling the input pixel intensities to the range [0, 1] is also
important as it can help improve the performance of the
machine learning model. This is because large input values
can cause the model to converge slowly, while small input
values can lead to numerical instability. By scaling the input
pixel intensities to a smaller range,themodel canlearn more
effectively and converge faster.
Block 5: Partitioning Images
The data is partitioned into training and testing splits using
the train_test_split function from the sci-kit-learn library.
The function splits the data into two sets - one for training
the model and another for testing the model's performance.
The size of the testing set is set to 10% of the total datausing
the test_size parameter, and theremaining90%ofthedatais
used for training the model.
The random_state parameter is set to 42, which ensuresthat
the random splitting of the data is reproducible, and the
shuffle parameter is set to True, which shuffles the data
before splitting it into training and testing sets.
Block 6: Defining the Model
It starts by loading the pre-trained VGG16 model,whichwas
trained on the ImageNet dataset, andfreezingall itslayersso
they will not be updated during the training process. Then,
the code flattens the output of the VGG16 model and
constructs two fully connected layers: one for predicting the
bounding box coordinates of the object in the image, and the
other for predicting the class label of the object.
The bounding box output layer consists of 4 neurons, and
uses the sigmoid activation function, while the class label
output layer consists of a number of neurons equal to the
number of classes in the dataset and uses the SoftMax
activation function. Dropout layers are also added to reduce
overfitting. The final model takesaninputimageandoutputs
both the predicted bounding box coordinates and the
predicted class label of the object in the image.
Block 7: Training the model
This code creates a Keras model with two inputs and two
outputs. The inputs are images of sizes (224, 224, 3), which
will be passed through a pre-trained VGG16 convolutional
neural network. The output of the VGG16 network is then
passed through two separate fully connected layers: one to
output the predicted bounding box coordinates,andanother
to output the predicted class label.
Block 8: Performance of the Model
The model has two outputs - one for the class label and
another for the bounding box coordinates. The loss function
for the class label output is categorical cross-entropy and for
the bounding box output, mean squared error is used.
Finally, two dictionaries are constructed, one for the target
training outputs (class label and bounding box) and another
for target testing outputs (class label and bounding box).
These will be used during thetrainingandevaluationprocess
of the model. The summary of the compiled model is also
printed.
Block 9: Input Video
Now the video will be provided as input to the model. So as
our model is trained to detect the ambulance using images,
we must convert the video into images. This can be done by
converting the video into framessothatthemodel candetect
the ambulance and turn the red light into green light.
Block 10: Ambulance Detected?
After processing the images, we end up with the decision
block where if the ambulance is detected the traffic lightwill
turn green and the traffic will be released. If the ambulance
is not detected in the image, then the traffic lights work
normally without any changes.
5. RESULTS
So, as our model is trained with the ambulance images, and
when the video is provided to it, it detects the ambulance in
the frame and draws a boundary box, and gives a label as an
emergency if an ambulance is detected in that given
boundary box. If an ambulance is not detected in that given
boundary box, then a class label names non-emergency will
be given. To represent this on a graph we have plotted the
accuracy and loss of the model with respect to a number of
iterations or epochs. The graphs for accuracy and loss are
mentioned below:
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1813
Fig-3: Total Accuracy
Fig-4: Loss for Class Label Loss
Fig-5: Loss for Boundary Box Loss
Fig-6: Total Loss of the Model
Fig-7: Ambulance Detected (Yellow Color)
Fig-8: Ambulance not detected.
Fig-9: Simulation of Real-World Traffic using Pygame
Simulation: Here we implemented the sameina simulation,
where we considered real-world traffic. The ambulance will
appear in any of the four lanes randomly and when it comes
to the traffic signal, the traffic light turns from red to green
for the respective lane.
As we can observe from Fig-3, the accuracy increases as the
number of iterations or epochs increases from 0 to 25. It
includes both the accuracy of the boundary boxandtheclass
label. We can say that number of epochs is directly
proportional to the accuracy of the model.
On the other hand, we can see the loss of the model. It
basically tells us that the model has failed to identify the
emergency vehicle or the ambulance. It includes the loss in
boundary box identification and naming the class label,
respectively. The boundary box loss is represented in Fig-5
and class label loss is represented in Fig-4, where the loss is
drawn against the number of epochs or iterations.
From Fig-7 we can observe that the model has drawn a
boundary box and given a class label as an emergency as an
ambulance is detected in the frame.
From Fig-8 we can see that no ambulance is detected, so a
class label as non-emergency is given by the model. The
accuracy depends on the number of epochs. In this case, we
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1814
have considered a total of 25 epochs. So, we can conclude
that the accuracy of this model lies between 80%-85%.
6. ADVANTAGES OF THIS SYSTEM
Faster response time: With theprioritygivento emergency
vehicles, they can reach their destination muchfaster,which
is critical in life-threatening situations.
Increased safety: By allowing emergency vehicles to pass
through intersections without stopping, the risk ofaccidents
is reduced. This is because emergency vehicles often must
navigate through heavy traffic and allowing them to pass
through intersections without stopping reduces the risk of
collisions.
Improved response times for other emergencyvehicles:
By reducing the response time for one emergency vehicle,
other emergency vehicles can also respond more quickly.
This is because emergency vehicles often operate in teams,
and by reducing the response time for one vehicle, the
overall response time for the team is also reduced.
Improved efficiency: By reducing the time it takes for
emergency vehicles to reach their destination, emergency
services can operate more efficiently, which can lead to
better outcomes for patients.
Increased public safety: By allowingemergencyvehicles to
reach their destination faster, the public is also safer. This is
because emergency vehicles are often responding to life-
threatening situations, and by reducing the response time,
lives can be saved.
7. FUTURE SCOPE
Real-time tracking: Thecurrentmodel usesstatic imagesto
detect and classify traffic lights. In the future, the model
could be extended to work with real-time video streams,
allowing for continuous monitoring and analysis of traffic
lights.
Integration with GPS data: GPS data can be used to track
the position of emergency vehicles in real time. By
integrating this data with the model, the system could
automatically detect when an emergency vehicle is
approaching a traffic light and prioritize the signal
accordingly.
Multi-object detection: In addition to detecting and
classifying traffic lights, the model could be extended to
detect other objects on the road, such as other vehicles or
pedestrians. This could help emergency vehicles navigate
through traffic more safely and efficiently.
Integration with autonomous vehicles: As autonomous
vehicles become more prevalent, the system could be
extended to work with these vehicles. For example, an
autonomous emergency vehicle could use the model to
detect and prioritize traffic lights as it navigatesthroughcity
streets.
Expansion to other emergencyservices:Thesystemcould
be expanded to work with other emergencyservices,suchas
police or fire departments. By providing real-time traffic
light prioritization, emergency services could more quickly
and safely respond to emergencies.
8. CONCLUSION
In conclusion, the implementation of a traffic light priority
system for emergency vehicles using machine learning can
greatly improve the response time and safety of emergency
services. The system can accurately detect and classify
emergency vehicles and provide them with priority at
intersections, reducing the risk of accidents and increasing
the efficiency of emergency services. With further
development and improvements in technology, this system
can be integrated into existing traffic management systems,
making it an essential tool for emergency services around
the world.
9. REFERENCES
[1] Zhang H., He Y., Wang Y. (2021) “Real-Time Traffic Light
Priority Control for Emergency Vehicles: Recent Advances
and Future Challenges.” IEEE Transactions on Intelligent
Transportation Systems, vol. 22, no. 1, pp. 358-377.
[2] Vashishtha, S., Aggarwal, S., Gupta, V., & Pandey, P.
(2020). Intelligent traffic signal system for emergency
vehicles. International Journal of InnovativeTechnologyand
Exploring Engineering, 9(1), 2621-2626.
[3] Javed, A., Khan, R. U. A., & Mughal, H. A. (2019). Traffic
light priority for emergencyvehiclesusingmachinelearning.
International Journal of Advanced Computer Science and
Applications, 10(8), 330-338.
[4] Hu, Z., & Wen, H. (2019). An intelligent traffic signal
control system for emergencyvehiclepriorityusingmachine
learning. IEEE Access, 7, 13666-13678.
[5] Lin, K., Du, X., He, Y., & Jia, W. (2021). A machine learning-
based traffic signal control strategy for emergency vehicles.
Transportation Research Part C: Emerging Technologies,
127, 103259.
[6] Lee, S., Lee, Y., Lee, S., Lee, J., & Kim, S. (2019).
Development of emergency vehicle signal priority system
using machine learning. International Journal of Advanced
Computer Science and Applications, 10(9), 73-77.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1815
BIOGRAPHIES
Dr. Saneesh Cleatus Thundiyil
Associate Professor, Dept. of
ECE, BMSIT&M. 14 years of
teaching experience. Specialization in
Biomedical Signal Processing.
Anandateertha, Fourth Year Student,
Dept. of ECE, BMSIT&M, Bengaluru.
Manoj Kumar M, Fourth Year Student,
Dept. of ECE, BMSIT&M, Bengaluru.
Abhishek B Kamble, Fourth Year
Student, Dept. of ECE, BMSIT&M,
Bengaluru.
Chennakeshava Reddy K M,
Fourth Year Student, Dept. of ECE,
BMSIT&M, Bengaluru.

More Related Content

Similar to TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE

TRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNN
TRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNNTRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNN
TRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNN
IRJET Journal
 
IRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level ProcessIRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level Process
IRJET Journal
 
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
IRJET Journal
 
IRJET- Smart System for Sorting Defective Parts and Distribution Line using PLC
IRJET- Smart System for Sorting Defective Parts and Distribution Line using PLCIRJET- Smart System for Sorting Defective Parts and Distribution Line using PLC
IRJET- Smart System for Sorting Defective Parts and Distribution Line using PLC
IRJET Journal
 
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET Journal
 
IRJET - Advanced Charging Station for Electric Vehicles
 IRJET - Advanced Charging Station for Electric Vehicles IRJET - Advanced Charging Station for Electric Vehicles
IRJET - Advanced Charging Station for Electric Vehicles
IRJET Journal
 
IRJET- Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...
IRJET-  	  Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...IRJET-  	  Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...
IRJET- Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...
IRJET Journal
 
Traffic Flow Prediction Using Machine Learning Algorithms
Traffic Flow Prediction Using Machine Learning AlgorithmsTraffic Flow Prediction Using Machine Learning Algorithms
Traffic Flow Prediction Using Machine Learning Algorithms
IRJET Journal
 
ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)
ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)
ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)
IRJET Journal
 
IRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring SystemIRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring System
IRJET Journal
 
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHMPOTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
IRJET Journal
 
IRJET - Driver Monitoring System
IRJET - Driver Monitoring SystemIRJET - Driver Monitoring System
IRJET - Driver Monitoring System
IRJET Journal
 
Automatic Car Parking System Using PLC
Automatic Car Parking System Using PLCAutomatic Car Parking System Using PLC
Automatic Car Parking System Using PLC
IRJET Journal
 
An Experimental Analysis on Self Driving Car Using CNN
An Experimental Analysis on Self Driving Car Using CNNAn Experimental Analysis on Self Driving Car Using CNN
An Experimental Analysis on Self Driving Car Using CNN
IRJET Journal
 
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITSSOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
vivatechijri
 
Departure Delay Prediction using Machine Learning.
Departure Delay Prediction using Machine Learning.Departure Delay Prediction using Machine Learning.
Departure Delay Prediction using Machine Learning.
IRJET Journal
 
IRJET- Automotive Safety System using Controller Area Network(CAN) Protocol
IRJET- Automotive Safety System using Controller Area Network(CAN) ProtocolIRJET- Automotive Safety System using Controller Area Network(CAN) Protocol
IRJET- Automotive Safety System using Controller Area Network(CAN) Protocol
IRJET Journal
 
Congestion Control System Using Machine Learning
Congestion Control System Using Machine LearningCongestion Control System Using Machine Learning
Congestion Control System Using Machine Learning
IRJET Journal
 
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
IRJET Journal
 
Ijetcas14 395
Ijetcas14 395Ijetcas14 395
Ijetcas14 395
Iasir Journals
 

Similar to TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE (20)

TRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNN
TRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNNTRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNN
TRAFFIC SIGN BOARD RECOGNITION AND VOICE ALERT SYSTEM USING CNN
 
IRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level ProcessIRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level Process
 
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
 
IRJET- Smart System for Sorting Defective Parts and Distribution Line using PLC
IRJET- Smart System for Sorting Defective Parts and Distribution Line using PLCIRJET- Smart System for Sorting Defective Parts and Distribution Line using PLC
IRJET- Smart System for Sorting Defective Parts and Distribution Line using PLC
 
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
 
IRJET - Advanced Charging Station for Electric Vehicles
 IRJET - Advanced Charging Station for Electric Vehicles IRJET - Advanced Charging Station for Electric Vehicles
IRJET - Advanced Charging Station for Electric Vehicles
 
IRJET- Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...
IRJET-  	  Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...IRJET-  	  Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...
IRJET- Analysis of Micro Inversion to Improve Fault Tolerance in High Spe...
 
Traffic Flow Prediction Using Machine Learning Algorithms
Traffic Flow Prediction Using Machine Learning AlgorithmsTraffic Flow Prediction Using Machine Learning Algorithms
Traffic Flow Prediction Using Machine Learning Algorithms
 
ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)
ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)
ROAD SIGN DETECTION USING CONVOLUTIONAL NEURAL NETWORK (CNN)
 
IRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring SystemIRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring System
 
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHMPOTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
 
IRJET - Driver Monitoring System
IRJET - Driver Monitoring SystemIRJET - Driver Monitoring System
IRJET - Driver Monitoring System
 
Automatic Car Parking System Using PLC
Automatic Car Parking System Using PLCAutomatic Car Parking System Using PLC
Automatic Car Parking System Using PLC
 
An Experimental Analysis on Self Driving Car Using CNN
An Experimental Analysis on Self Driving Car Using CNNAn Experimental Analysis on Self Driving Car Using CNN
An Experimental Analysis on Self Driving Car Using CNN
 
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITSSOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
 
Departure Delay Prediction using Machine Learning.
Departure Delay Prediction using Machine Learning.Departure Delay Prediction using Machine Learning.
Departure Delay Prediction using Machine Learning.
 
IRJET- Automotive Safety System using Controller Area Network(CAN) Protocol
IRJET- Automotive Safety System using Controller Area Network(CAN) ProtocolIRJET- Automotive Safety System using Controller Area Network(CAN) Protocol
IRJET- Automotive Safety System using Controller Area Network(CAN) Protocol
 
Congestion Control System Using Machine Learning
Congestion Control System Using Machine LearningCongestion Control System Using Machine Learning
Congestion Control System Using Machine Learning
 
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
 
Ijetcas14 395
Ijetcas14 395Ijetcas14 395
Ijetcas14 395
 

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 STRUCTURE
IRJET 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 Characteristics
IRJET 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 ADAS
IRJET 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 Pro
IRJET 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 System
IRJET 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 bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET 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 Design
IRJET 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

Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Low power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniquesLow power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniques
nooriasukmaningtyas
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
gestioneergodomus
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
wisnuprabawa3
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
awadeshbabu
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
Adaptive synchronous sliding control for a robot manipulator based on neural ...
Adaptive synchronous sliding control for a robot manipulator based on neural ...Adaptive synchronous sliding control for a robot manipulator based on neural ...
Adaptive synchronous sliding control for a robot manipulator based on neural ...
IJECEIAES
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
NidhalKahouli2
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
introduction to solar energy for engineering.pdf
introduction to solar energy for engineering.pdfintroduction to solar energy for engineering.pdf
introduction to solar energy for engineering.pdf
ravindarpurohit26
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
ChristineTorrepenida1
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
Mukeshwaran Balu
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
ihlasbinance2003
 
Self-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptxSelf-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptx
iemerc2024
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
zwunae
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 

Recently uploaded (20)

Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Low power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniquesLow power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniques
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
Adaptive synchronous sliding control for a robot manipulator based on neural ...
Adaptive synchronous sliding control for a robot manipulator based on neural ...Adaptive synchronous sliding control for a robot manipulator based on neural ...
Adaptive synchronous sliding control for a robot manipulator based on neural ...
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
introduction to solar energy for engineering.pdf
introduction to solar energy for engineering.pdfintroduction to solar energy for engineering.pdf
introduction to solar energy for engineering.pdf
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
 
Self-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptxSelf-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptx
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 

TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1810 TRAFFIC LIGHT PRIORITY FOR EMERGENCY VEHICLE Manoj Kumar M1, Anandateertha2, Abhishek B Kamble3, ChennaKeshava Reddy4 Dr. Saneesh Cleatus Thundiyil5 1234U.G. Scholar, Department of Electronics and Communication Engineering BMS Institute of Technology and Management, Avalahalli, Yelahanka, Bengaluru-560064 5Associate Professor, Department of Electronics and Communication Engineering, BMS Institute of Technology and Management, Avalahalli, Yelahanka, Bengaluru-560064 ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Traffic Light Priority for Emergency Vehiclesisa system that allows emergency vehicles to have priority at traffic signals by controlling the traffic lights in their favor. This system aims to reduce emergency service response times and improve the safety of both emergency responders and the public. This paper will explore the implementation of traffic light priority for emergency vehicles, including the benefits, challenges, and potential solutions for this technology. The study will also examine the impact of traffic light priority on traffic flow and the overall efficiency of emergency response systems. Finally, the paper will discuss the potential future developments of this technology and its potential to improve emergency services globally. Key Words: Emergency, Ambulance, Traffic light, Machine Learning Model, Images, Green, Red 1. INTRODUCTION In emergency situations, everysecondcounts,andtheability of emergency services to respond quickly and efficientlycan be the difference between life and death. One of the major challenges that emergency responders face is navigating through traffic and arriving at their destination asquickly as possible. Traffic congestion and stoplights can cause significant delays, which can be detrimental to emergency response times. Traffic Light Priority for Emergency Vehicles is a system designed to help overcome this challenge byprovidinga way for emergency vehicles to have priority at traffic signals. When activated, the system can override the standardtraffic light pattern, allowing emergency vehicles to pass through the intersection safely and efficiently. In this paper, we will explore the implementation of Traffic Light Priority for Emergency Vehicles,includingthebenefits, challenges, and potential solutions for this technology. We will also examine the impact of traffic light priority ontraffic flow and the overall efficiency of emergency response systems. Finally, we will discuss the potential future developments of this technologyanditspotential toimprove emergency services globally. 1.1 Problem Statement Emergency services play a critical role in saving lives and ensuring public safety, and their ability to respond quickly and efficiently is of utmost importance. One of the major challenges faced by emergency responders is navigating through traffic and reaching their destination promptly. Traffic congestion and stoplights can cause significant delays, which can be detrimental to emergency response times. As a result, there is a need for a solution that allows emergency vehicles to have priority at traffic signals to reduce response times and improve the safety of both emergency responders and the public. The problem statement of this study is to explore the implementation of traffic light priority for emergency vehicles, including the benefits, challenges, and potential solutions for this technology, and its impact on traffic flow and the overall efficiency of emergency response systems. 2. CONVENTIONAL SYSTEMS 2.1 Manual Controlling. Manual controllingasthenamesuggestsrequiresmanpower to control the traffic. The traffic policeareallotteda required area to control traffic. The traffic police carry sign board, sign light and whistle to control the traffic. 2.2 Automatic Controlling The automatic traffic light is controlled by timers and electrical sensors. In a traffic light, a constant numerical value is loaded in the timer. The lights are automatically getting ON and OFF based on the timer value. 2.3 Electronic Controlling Another advanced method is placing some loop detectors or proximity sensors on the road. This sensor gives data about the traffic on the road. According to the sensor data the traffic signals are controlled.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1811 2.4 Drawbacks of Conventional Systems The manual controlling system requires a large amount of manpower. Conventional traffic lights use a timer for every phase, which is fixed and does not adapt according to the real-time traffic on that road. Electronic sensors/proximity sensors or loop detectors have less accuracy and require a high budget. 3. PROPOSED SYSTEM The proposed system for traffic light control using machine learning for ambulance detectioncandetectanambulance in real-time using image processing techniques. The system will consist of a camera mounted at the intersection, which will capture the live video feed of the intersection. The captured images will then be processed using a pre- trained deep-learning model, which will detect thepresence of an ambulance on the scene. Once an ambulance is detected, the system will communicate with the traffic light controller and change the traffic light to green, allowing the ambulance to pass through the intersection quickly and safely. Fig-1: Flow Chart of Proposed System 4. METHODOLOGY Block 1: Importing Libraries First, the libraries are imported to train the model and perform other tasks such are splitting the images into training sets and test sets, where this is done by using a module named train_test_split function which is a sub- module in the sci-kit-learn module respectively. Some other modules include config which is used to handle variablesandconstantsacrossthecode.NextisNumPywhich is used to perform numerical calculations in the code. The path module is used to locate the locationofanyfolderor images in the main folder. The pickle module is used to store the processed data in a particular folder. VGG16 is a convolutional neural network model. The architectureof the VGG16 model is based on the ideaofusing very small (3x3) convolutional filterswithastrideof1,which allows the model to learn more complex features and patterns in the images. Math-plot lib is another module that is used to plot the graph of the result provided by the machine learning model. Here results refer to the accuracy and loss of the model which recognizes the ambulance in the given image. Apart from these modules many other modules and sub- modules are being used in the machine learning model. Fig-2: Flow Chart of Methodology Block 2: Importing Images Here is block 2 of the flow chart of methodology, the images are imported into the code. These images of ambulances are taken from different countries,differenttypesofambulances, from different angles and scenariossothatwhenthemodelis made to identify a given image, it can identify it easily and in turn, it increases the accuracy of the machinelearningmodel.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1812 Block 3: Converting Images into Arrays Here in block 3, the images which are being stored in the folder are pushed into the arrays. First empty arrays are initialized using the config library and then using someofthe loops the images are pushed onto those arrays, which are used to train the machine learning model. Through this, the model learns the patterns of the ambulance one by one. Block 4: Compressing Images The next step is Compressing the images. Here the input pixel intensities are scaled from the range [0, 255] to [0, 1] using the NumPy array division operation. The data array is converted to a float32 data type, while the labels array remains as it is. Converting the data and labels to NumPy arrays and scaling the input pixel intensities from [0, 255] to [0, 1] are important preprocessing steps in preparing the data for use in a machine-learning model. Scaling the input pixel intensities to the range [0, 1] is also important as it can help improve the performance of the machine learning model. This is because large input values can cause the model to converge slowly, while small input values can lead to numerical instability. By scaling the input pixel intensities to a smaller range,themodel canlearn more effectively and converge faster. Block 5: Partitioning Images The data is partitioned into training and testing splits using the train_test_split function from the sci-kit-learn library. The function splits the data into two sets - one for training the model and another for testing the model's performance. The size of the testing set is set to 10% of the total datausing the test_size parameter, and theremaining90%ofthedatais used for training the model. The random_state parameter is set to 42, which ensuresthat the random splitting of the data is reproducible, and the shuffle parameter is set to True, which shuffles the data before splitting it into training and testing sets. Block 6: Defining the Model It starts by loading the pre-trained VGG16 model,whichwas trained on the ImageNet dataset, andfreezingall itslayersso they will not be updated during the training process. Then, the code flattens the output of the VGG16 model and constructs two fully connected layers: one for predicting the bounding box coordinates of the object in the image, and the other for predicting the class label of the object. The bounding box output layer consists of 4 neurons, and uses the sigmoid activation function, while the class label output layer consists of a number of neurons equal to the number of classes in the dataset and uses the SoftMax activation function. Dropout layers are also added to reduce overfitting. The final model takesaninputimageandoutputs both the predicted bounding box coordinates and the predicted class label of the object in the image. Block 7: Training the model This code creates a Keras model with two inputs and two outputs. The inputs are images of sizes (224, 224, 3), which will be passed through a pre-trained VGG16 convolutional neural network. The output of the VGG16 network is then passed through two separate fully connected layers: one to output the predicted bounding box coordinates,andanother to output the predicted class label. Block 8: Performance of the Model The model has two outputs - one for the class label and another for the bounding box coordinates. The loss function for the class label output is categorical cross-entropy and for the bounding box output, mean squared error is used. Finally, two dictionaries are constructed, one for the target training outputs (class label and bounding box) and another for target testing outputs (class label and bounding box). These will be used during thetrainingandevaluationprocess of the model. The summary of the compiled model is also printed. Block 9: Input Video Now the video will be provided as input to the model. So as our model is trained to detect the ambulance using images, we must convert the video into images. This can be done by converting the video into framessothatthemodel candetect the ambulance and turn the red light into green light. Block 10: Ambulance Detected? After processing the images, we end up with the decision block where if the ambulance is detected the traffic lightwill turn green and the traffic will be released. If the ambulance is not detected in the image, then the traffic lights work normally without any changes. 5. RESULTS So, as our model is trained with the ambulance images, and when the video is provided to it, it detects the ambulance in the frame and draws a boundary box, and gives a label as an emergency if an ambulance is detected in that given boundary box. If an ambulance is not detected in that given boundary box, then a class label names non-emergency will be given. To represent this on a graph we have plotted the accuracy and loss of the model with respect to a number of iterations or epochs. The graphs for accuracy and loss are mentioned below:
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1813 Fig-3: Total Accuracy Fig-4: Loss for Class Label Loss Fig-5: Loss for Boundary Box Loss Fig-6: Total Loss of the Model Fig-7: Ambulance Detected (Yellow Color) Fig-8: Ambulance not detected. Fig-9: Simulation of Real-World Traffic using Pygame Simulation: Here we implemented the sameina simulation, where we considered real-world traffic. The ambulance will appear in any of the four lanes randomly and when it comes to the traffic signal, the traffic light turns from red to green for the respective lane. As we can observe from Fig-3, the accuracy increases as the number of iterations or epochs increases from 0 to 25. It includes both the accuracy of the boundary boxandtheclass label. We can say that number of epochs is directly proportional to the accuracy of the model. On the other hand, we can see the loss of the model. It basically tells us that the model has failed to identify the emergency vehicle or the ambulance. It includes the loss in boundary box identification and naming the class label, respectively. The boundary box loss is represented in Fig-5 and class label loss is represented in Fig-4, where the loss is drawn against the number of epochs or iterations. From Fig-7 we can observe that the model has drawn a boundary box and given a class label as an emergency as an ambulance is detected in the frame. From Fig-8 we can see that no ambulance is detected, so a class label as non-emergency is given by the model. The accuracy depends on the number of epochs. In this case, we
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1814 have considered a total of 25 epochs. So, we can conclude that the accuracy of this model lies between 80%-85%. 6. ADVANTAGES OF THIS SYSTEM Faster response time: With theprioritygivento emergency vehicles, they can reach their destination muchfaster,which is critical in life-threatening situations. Increased safety: By allowing emergency vehicles to pass through intersections without stopping, the risk ofaccidents is reduced. This is because emergency vehicles often must navigate through heavy traffic and allowing them to pass through intersections without stopping reduces the risk of collisions. Improved response times for other emergencyvehicles: By reducing the response time for one emergency vehicle, other emergency vehicles can also respond more quickly. This is because emergency vehicles often operate in teams, and by reducing the response time for one vehicle, the overall response time for the team is also reduced. Improved efficiency: By reducing the time it takes for emergency vehicles to reach their destination, emergency services can operate more efficiently, which can lead to better outcomes for patients. Increased public safety: By allowingemergencyvehicles to reach their destination faster, the public is also safer. This is because emergency vehicles are often responding to life- threatening situations, and by reducing the response time, lives can be saved. 7. FUTURE SCOPE Real-time tracking: Thecurrentmodel usesstatic imagesto detect and classify traffic lights. In the future, the model could be extended to work with real-time video streams, allowing for continuous monitoring and analysis of traffic lights. Integration with GPS data: GPS data can be used to track the position of emergency vehicles in real time. By integrating this data with the model, the system could automatically detect when an emergency vehicle is approaching a traffic light and prioritize the signal accordingly. Multi-object detection: In addition to detecting and classifying traffic lights, the model could be extended to detect other objects on the road, such as other vehicles or pedestrians. This could help emergency vehicles navigate through traffic more safely and efficiently. Integration with autonomous vehicles: As autonomous vehicles become more prevalent, the system could be extended to work with these vehicles. For example, an autonomous emergency vehicle could use the model to detect and prioritize traffic lights as it navigatesthroughcity streets. Expansion to other emergencyservices:Thesystemcould be expanded to work with other emergencyservices,suchas police or fire departments. By providing real-time traffic light prioritization, emergency services could more quickly and safely respond to emergencies. 8. CONCLUSION In conclusion, the implementation of a traffic light priority system for emergency vehicles using machine learning can greatly improve the response time and safety of emergency services. The system can accurately detect and classify emergency vehicles and provide them with priority at intersections, reducing the risk of accidents and increasing the efficiency of emergency services. With further development and improvements in technology, this system can be integrated into existing traffic management systems, making it an essential tool for emergency services around the world. 9. REFERENCES [1] Zhang H., He Y., Wang Y. (2021) “Real-Time Traffic Light Priority Control for Emergency Vehicles: Recent Advances and Future Challenges.” IEEE Transactions on Intelligent Transportation Systems, vol. 22, no. 1, pp. 358-377. [2] Vashishtha, S., Aggarwal, S., Gupta, V., & Pandey, P. (2020). Intelligent traffic signal system for emergency vehicles. International Journal of InnovativeTechnologyand Exploring Engineering, 9(1), 2621-2626. [3] Javed, A., Khan, R. U. A., & Mughal, H. A. (2019). Traffic light priority for emergencyvehiclesusingmachinelearning. International Journal of Advanced Computer Science and Applications, 10(8), 330-338. [4] Hu, Z., & Wen, H. (2019). An intelligent traffic signal control system for emergencyvehiclepriorityusingmachine learning. IEEE Access, 7, 13666-13678. [5] Lin, K., Du, X., He, Y., & Jia, W. (2021). A machine learning- based traffic signal control strategy for emergency vehicles. Transportation Research Part C: Emerging Technologies, 127, 103259. [6] Lee, S., Lee, Y., Lee, S., Lee, J., & Kim, S. (2019). Development of emergency vehicle signal priority system using machine learning. International Journal of Advanced Computer Science and Applications, 10(9), 73-77.
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 04 | Apr 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 1815 BIOGRAPHIES Dr. Saneesh Cleatus Thundiyil Associate Professor, Dept. of ECE, BMSIT&M. 14 years of teaching experience. Specialization in Biomedical Signal Processing. Anandateertha, Fourth Year Student, Dept. of ECE, BMSIT&M, Bengaluru. Manoj Kumar M, Fourth Year Student, Dept. of ECE, BMSIT&M, Bengaluru. Abhishek B Kamble, Fourth Year Student, Dept. of ECE, BMSIT&M, Bengaluru. Chennakeshava Reddy K M, Fourth Year Student, Dept. of ECE, BMSIT&M, Bengaluru.