SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3352
Automatic Traffic Rules Violation Control and Vehicle Theft Detection
Using Deep Learning Approach
Priyanka A N1, Apoorva P2, Rakshitha R3, Vismaya J V4
1,2,3,4 UG Scholar, Information Science and Engineering Department, Sri Venkateshwara College of Engineering,
Bengaluru, Karnataka, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - There is a rapid increase in number of vehicles
using on road due to growing populationandpeople’sneed for
comfort, more and more automobiles are being purchased in
both urban and rural areas which leadstoincreasingtrafficas
a result there is a greater number of traffic violations
happening in every corner of the world. As the traffic violation
increases the number of road accidents happening are also
increasing and leads to death of many lives. To control the
traffic flow and create the safer environment thereisaneedto
develop automatic tracking of traffic violation detection
systems to automate the rules and regulations to eliminate
lack of awareness among the humans. The proposed system
can identify lane detection, over speed of the vehicles and also
thefted vehicles. The proposed system gives high accuracy in
detecting these violations with overall 90%. The proposed
system is achieved using Computer Vision and Deep Learning
techniques.
Key Words: Traffic Violation, YOLOv5, CNN, Vehicle
Theft, Image Processing, Vehicle Detection, Vehicle
Tracking.
1. INTRODUCTION
With the ever-increasing population of people and vehicles,
traffic accidents increase every day. Traffic should be
controlled fast and in time to prevent these types of
situations. However, the size of the data can make it harder
to control traffic. For this reason, detecting lane and wrong
way violations from cameras would make traffic control
easier. In this study, a software-based system is proposed
that will minimize human errors.
The problem of traffic violation has become a veryserious in
the present day. The very high volume of traffic is due to the
increasing number of vehicles.
A moving violation is any violation committed by the driver
of a vehicle while it is in motion. Moving Violations are
speeding, which can be exceeding a limit or (in some
jurisdictions) simply driving at an unsafe speed, improper
lane usage, such as failing to drive within a single lane.Every
day, the problem is turning out to be more and more critical
and crucial. With the increase in population the vehicles are
also increasing due to which there is a increase in the rate of
accidents in cities all over the country.
According to 2021, 1214 road crashes occur every day in
India. Two wheelers account for 25% of total road crash
deaths. It is much obvious thatpeopleareviolatingthetraffic
rules and regulations and there is a high requirement to
control it. Manual checking of vehicles is troublesome, and
mistake-inclined, and problematic human memory. As a
result, the need arises for a traffic violation detectionsystem
to deal with this, which can identify criminal traffic offenses
instantly. The new system was required that could monitor
these offenses 24x7, with least or no human resource
requirement and could identify multiple traffic violations
with high accuracy. This system is achieved by using
computer vision technologies which enables computers to
derive meaningful information from the digital images, and
videos and deep Learning mainly used for classification
which is been widely used in image classification. Since
videos are captured from moving vehicles, the whole city is
covered instead of a few signals and junctions. This enables
traffic police to capture traffic violations happening in small
lanes to highways.
1.2 PROPOSED SYSTEM
The Closed-Circuit Television (CCTV) is placed at every
street in public, in signals, in highways and also in junctions
to capture the videos of vehicles. The captured vehicles
footage is sent to the system as input to detect the vehicles
that is violating traffic rules and regulations and classifies
the type of violation such as Lane Detection, Over Speeding
and stolen vehicles caused by that vehicle.
The proposed system uses Computer Vision for image
processing and uses the popular CNN algorithm for
classification of violations. After the detection and
classification is done the system extractsthe numberplateof
that vehicle reads the license plate and intimates to the
nearby police station so that further actions can be taken by
police. Vehicle detection and tracking has to be done first in
order to detect security lane or wrong lane and speed
detection.
1.3 RELATED BACKGROUND
Lane boundaries is detected usinga camera thatcaptures the
view of the road, mounted on the front of the vehicle. The
lane markings on the road by giving the video of the road as
an input to the system by using computer vision technology
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3353
[12]. The importance of the decoder in recovering the
boundary information of the target pixel,thedecoderbranch
is added based on the existing direct up-sampling lane line
detection algorithm. It improves the classification and
prediction ability of the lane line boundary pixel [13].
Camera calibration is a method of settlingthecamera model,
which is a geometric relationship between 3D space and 2D
image. In here, the purpose of camera calibration was to
calculate the target position in real 3D space to determine
the vehicle speed [14]. The fingerprint is a unique biometric
signature that can be used to identify individual people
uniquely. The computer is good at matching the fingerprint
pattern and recognizing it fast and accurately. There are
different methods for authenticating the fingerprint that as
an optical fingerprint scanner and capacitive scanner[15].A
wireless vehicle security system which implements the
mobile communication protocol is used. The most known
existing car security systemiscaralarm[16].Thespeedlimit
is set if the speed exceeded the limit, then a message will be
transferred to the owner and then if owner sends a reverse
message, then according to message either speed will be
controlled or the car will stop [17].
2. IMPLEMENTATION
An Open ALPR system consists of three main modules to
provide reasonable outcomes. These three steps areLicense
Plate Detection (LPD), Character Segmentation (CS), and
Optical Character Recognition (OCR) which can be found in
most of the approaches. In the first step LPD the video or a
image of the stolen vehicles is given then license plate is
recognized is given as the input. YOLO V5 (You Only Look
Once version 5) containing CNN is used for vehicle and
number plate detection. In image preprocessing labelled
data is use for training the dataset which is supervised
learning machine and OpenCV function used to crop the
image as required and remove the noise in the background
for extracting the features.
Fig -1: Speed and number plate recognition
In second step Character Segmentation method is used after
the license plate of the vehicle is detected. Here the image is
converted in to convert the grey scale image to reduce
complexity. CNN is trained in such a way that Characters in
the license plate (0-9, A-Z) along with the margin of the
license plate is detected.
In the next step Character Recognition is done where the
characters present in number plate are compared with the
complaint registered vehicle number plate. If the complaint
registered number and the vehicle number is matched then
the intimation is sent to the owner of the vehicle and the
area police station with the place and time using Twilio
library.
Fig -2: Lane violation with bounding box
To detect lane violation first the lane on the road should be
identified. Two points in the lane are askedfromused,thena
line is drawn to the screen defining this lane. Vehicles
crossing this line is assumed to violate security lane.
Fig -3: Bounding Box Prediction
Yolov5(You Only look once)
It is a novel convolutional neural network (CNN)thatdetects
objects in real-time with great accuracy. This approach uses
a single neural network to process the entire picture, then
separates it into parts and predicts bounding boxes and
probabilities for each component.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3354
It is a class of multi-layer perceptron, refers to a fully
connected network (FCN) in which all neurons of one layer
are connected to other neurons in the next layer. It is
category of neural networks to process thedata ina grid-like
manner that divides the images into a grid system, in each
cell in the grid is responsible for detecting the objectswithin
itself by drawing bounding box around the defined object.
Bounding box is used to get the co-ordinates of the image
such as height, width, pedestrian and probabilitiesvalueofa
object in a digital image or video. It gives an objectiveness
score for each bounding box with truthobject.BoundingBox
predictions are very important to get the exact location of
the object in the entire Image which is usually drawn
rectangular in shape around the object. It is mainly used for
extracting the features from a single digital image in frame-
by-frame from digital video to different sizes. The algorithm
is used to detect the multiple objects in a single iterationand
hence you only look once.
Fig -4: Architecture of YOLO
It is of three parts backbone: CSP Darknet, Neck: PANet and
Head: Yolo Layer The data is first given as input to CSP
Darknet for Feature Extraction and thentoPANetforfeature
fusion Finally Yolo layer outputs the results.
The model is capable of detecting every frame in the digital
video, fig detects the vehicle and its speed from thecaptured
video. Speed is calculated using pixel calculation, area of the
boundary box and anchor points. Area of the boundary
exactly tells the distance travelled by the vehicleinthevideo
and anchor points adds more perception to these
parameters and speed of the vehicle is determined.
Automatic License Plate Recognition (ALPR) has been a
frequent topic of research duetomanypracticalapplications.
However, many of the current solutions are still notrobustin
real-world situations, commonly depending on many
constraints. This paper presents a robust and efficient ALPR
system based on the state-of- the-art YOLO object detector.
The Convolutional Neural Networks (CNNs) are trained and
fine-tuned for each ALPR stage so that they are robust under
different conditions (e.g., variations in camera, lighting, and
background).
Specially for character segmentation and recognition, we
design a two-stage approach employing simple data
augmentation tricks such as inverted License Plates (LPs)
and flipped characters. The proposed approach is divided
into four subsections, one for each of the ALPR stages (i.e.,
vehicle and LP detection, character segmentation and
character recognition) and one for temporal redundancy.
Fig.3.1 illustrates the ALPR pipeline. We use specific CNNs
for each ALPR stage. Thus, we can tune the parameters
separately in order to improve the performance for each
task. The models used are: Dark Flow, YOLO V5, NumPy,
Tensor Flow, OpenCV and Keras. Dataset used to train the
model is form Kaggle. The model is trained in Python
environment (version 3.6.3) and implemented using Keras
2.2.4 [15], with TensorFlow 1.3.1 backend.
Fig -4: Vehicle theft in different cities
3. CONCLUSIONS
The proposed system performs better and efficient and
provides high accuracy in controlling the traffic rules
violation and theft detection using deep learning. Since
background subtraction techniques are used in vehicle
detection processes, camera shake or movement does not
cause probing. The proposed method continues to provide
better results in severe weatherconditions(fog,snowstorm,
etc.).
REFERENCES
[1] J. Navarro, J. Deniel, E. Yousfi, C. Jallais, M. Bueno
and A. Fort, "Influence of lane departure warnings
onset and reliability on car drivers’ behaviors",
Appl. Ergonom., vol. 59, pp. 123-131, Mar. 2017.
[2] J. Piao and H. Shin, "Robust hypothesis generation
method using binary blob analysis for multi-lane
detection", IET Image Process., vol. 11, pp. 1210-
1218, Dec. 2017.
[3] Y. Kortli, M. Marzougui, B. Bouallegue, J.S.C.Bose, P.
Rodrigues and M. Atri, "A novel illumination-
invariant lane detectionsystem",Proc.2ndInt.Conf.
Anti-Cyber Crimes (ICACC), pp.166-171,Mar.2017.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3355
[4] J. Son, H. Yoo, S. Kim and K. Sohn, "Real-time
illumination invariant lane detection for lane
departure warning system", Expert Syst. Appl., vol.
42, no. 4, pp. 1816-1824, Mar. 2015.
[5] A.C.P. Uy, A.R.F. Quiros, R.A. Bedruz, A. Abad, A.
Bandala, E. Sybingco, E.P. Dadios Automated traffic
violation apprehension system using genetic
algorithm and artificial neural network Proceedings
of the IEEE Region 10 Conference (TENCON), IEEE
(2016), pp. 2094-2099.
[6] N. Krittayanawach et al., “Robust Compression
Technique for YOLOv3 on Real-Time Vehicle
Detection”, 11th International Conference on
Information
Technology and Electrical Engineering (ICITEE),
Pattaya, Thailand, 2019.
[7] Mohana et.al., “Simulation of Object Detection
Algorithms for Video Surveillance Applications”,
2nd International Conference on I-SMAC (IoT in
Social, Mobile, Analytics and Cloud),2018.
[8] Mohana et.al., “Performance Evaluation of
Background Modeling MethodsforObjectDetection
and Tracking,” International Conference on
Inventive Systems and Control, 2020.
[9] S. K. Mankani et al., “Real-time implementation of
object detection and tracking on DSP for video
surveillance applications,”International Conference
on Recent Trends in Electronics, Information &
Communication Technology (RTEICT), 2016.
[10] X. He et al., “A Driving Warning Method based on
YOLOV3 and Neural Network”, IEEE International
Conference on ServiceOperationsandLogistics,and
Informatics (SOLI), Zhengzhou, China, 2019.
[11] H. Qu et al., “A Pedestrian Detection Method Based
on YOLOv3 Model and Image Enhanced byRetinex,”
11th International Congress on Image and Signal
Processing, Bio Medical Engineering and
Informatics (CISP-BMEI), Beijing, China, 2018.
[12] Abhishek Goyal, Mridula Singh, Anand Srivastava
Lane Detection on Roads using Computer Vision
International Journal of Engineering and Advanced
Technology ISSN: 2249 – 8958, Volume-9 Issue-1,
October 2019.
[13] Malik Harris and Adam Glowacz, Lane Line
Detection Based on Object Feature Distillation,
Electronics May 2021.
[14] Alexander A S Gunawana, Deasy Aprilia Tanjunga,
Fergyanto E. Gunawana, Detection of Vehicle
Position and Speed using Camera Calibration and
Image Projection Methods, 4th International
Conference on Computer Science and
Computational Intelligence 2019 (ICCSCI), 12–13
September 2019.
[15] Aryan Verma, Vehicle Theft Identification and
License Authentication Using IoT, J. Phys.: Conf.Ser.
1964 062068,2021.
[16] Dr. Sreeja Mole S, Rekha, Vehicle Theft Detection by
GSM D. Guru Nath Issn (Print): 2393-8374,2394-
0697, Volume-5, Issue-2, 2018.
[17] System Jitender Yadav, Jatin Dixit, Archit Paliwal,
Bharti Gupt, Design and Implementation of Vehicle
Theft Detection, International Journal of
Information Sciences and Application (IJISA). ISSN
0974-2255, Vol.11, No.1, 2019.
[18] Abhiraj Biswas et. al., “Classification of Objects in
Video Records using Neural Network Framework,”
International conference on Smart Systems and
Inventive Technology, 2018.
[19] Ruben J Franklin et.al., “Anomaly Detection in
Videos for Video Surveillance Applications Using
Neural Networks,” International Conference on
Inventive Systems and Control,2020.
[20] N. Matthews, P. An, D. Charnley, C. Harris, "Vehicle
Detection and Recognition In Grey Imagery",
Control Engineering Practice.
[21] Stephan Haendeler, Andreas Lewandowski,
Christian Wietfeld,” Passive Detection of Wrong
Way Drivers on Motorways Based on Low Power
Wireless Communications”, Vehicular Technology
Conference (VTC Spring), 2018 IEEE 79th 18-21
May 2018.
[22] P. Srinivas Reddy, Ramesh O., "A Video-Based
Traffic Violation Detection System," Sep 2019.
[23] Mukremin Ozkul, Ilir Capuni (2018).” Police-less
multiparty traffic violation detection and reporting
system with privacy preservation”, IET Intelligent
Transport Systems.

More Related Content

Similar to Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using Deep Learning Approach

Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningVision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningIRJET 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
 
IRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring SystemIRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring SystemIRJET Journal
 
IRJET - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET Journal
 
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...IRJET Journal
 
IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...
IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...
IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...IRJET Journal
 
IRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using ArduinoIRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using ArduinoIRJET Journal
 
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...IJECEIAES
 
Drowsy Driving Detection System using IoT
Drowsy Driving Detection System using IoTDrowsy Driving Detection System using IoT
Drowsy Driving Detection System using IoTIRJET Journal
 
SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...
SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...
SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...IRJET Journal
 
Deep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident AssistanceDeep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident AssistanceIRJET Journal
 
3M Secure Transportation System.
3M Secure Transportation System.3M Secure Transportation System.
3M Secure Transportation System.IRJET Journal
 
IRJET - Efficient Approach for Number Plaque Accreditation System using W...
IRJET -  	  Efficient Approach for Number Plaque Accreditation System using W...IRJET -  	  Efficient Approach for Number Plaque Accreditation System using W...
IRJET - Efficient Approach for Number Plaque Accreditation System using W...IRJET Journal
 
IRJET - Vehicle Signal Breaking Alert System
IRJET - Vehicle Signal Breaking Alert SystemIRJET - Vehicle Signal Breaking Alert System
IRJET - Vehicle Signal Breaking Alert SystemIRJET Journal
 
VEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSIS
VEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSISVEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSIS
VEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSISIRJET Journal
 
IRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLABIRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLABIRJET Journal
 
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET Journal
 
HELMET DETECTION USING ARTIFICIAL INTELLIGENCE
HELMET DETECTION USING ARTIFICIAL INTELLIGENCEHELMET DETECTION USING ARTIFICIAL INTELLIGENCE
HELMET DETECTION USING ARTIFICIAL INTELLIGENCEIRJET Journal
 
Smart Algorithm for Traffic Congestion and Control
Smart  Algorithm for Traffic Congestion and ControlSmart  Algorithm for Traffic Congestion and Control
Smart Algorithm for Traffic Congestion and ControlIRJET Journal
 
SMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOT
SMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOTSMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOT
SMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOTIRJET Journal
 

Similar to Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using Deep Learning Approach (20)

Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningVision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
 
Congestion Control System Using Machine Learning
Congestion Control System Using Machine LearningCongestion Control System Using Machine Learning
Congestion Control System Using Machine Learning
 
IRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring SystemIRJET - Unmanned Traffic Signal Monitoring System
IRJET - Unmanned Traffic Signal Monitoring System
 
IRJET - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET - Smart Traffic Management System
IRJET - Smart Traffic Management System
 
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
 
IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...
IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...
IRJET- Smart Parking System using Facial Recognition, Optical Character Recog...
 
IRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using ArduinoIRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using Arduino
 
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
 
Drowsy Driving Detection System using IoT
Drowsy Driving Detection System using IoTDrowsy Driving Detection System using IoT
Drowsy Driving Detection System using IoT
 
SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...
SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...
SURVEY ON ARTIFICIAL INTELLIGENCE POWERED POTHOLE DETECTION, REPORTING AND MA...
 
Deep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident AssistanceDeep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident Assistance
 
3M Secure Transportation System.
3M Secure Transportation System.3M Secure Transportation System.
3M Secure Transportation System.
 
IRJET - Efficient Approach for Number Plaque Accreditation System using W...
IRJET -  	  Efficient Approach for Number Plaque Accreditation System using W...IRJET -  	  Efficient Approach for Number Plaque Accreditation System using W...
IRJET - Efficient Approach for Number Plaque Accreditation System using W...
 
IRJET - Vehicle Signal Breaking Alert System
IRJET - Vehicle Signal Breaking Alert SystemIRJET - Vehicle Signal Breaking Alert System
IRJET - Vehicle Signal Breaking Alert System
 
VEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSIS
VEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSISVEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSIS
VEHICLE DETECTION USING YOLO V3 FOR COUNTING THE VEHICLES AND TRAFFIC ANALYSIS
 
IRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLABIRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLAB
 
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
 
HELMET DETECTION USING ARTIFICIAL INTELLIGENCE
HELMET DETECTION USING ARTIFICIAL INTELLIGENCEHELMET DETECTION USING ARTIFICIAL INTELLIGENCE
HELMET DETECTION USING ARTIFICIAL INTELLIGENCE
 
Smart Algorithm for Traffic Congestion and Control
Smart  Algorithm for Traffic Congestion and ControlSmart  Algorithm for Traffic Congestion and Control
Smart Algorithm for Traffic Congestion and Control
 
SMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOT
SMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOTSMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOT
SMART SOLUTION FOR RESOLVING HEAVY TRAFFIC USING IOT
 

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

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
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
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
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
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 

Recently uploaded (20)

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
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
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
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
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 

Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using Deep Learning Approach

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3352 Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using Deep Learning Approach Priyanka A N1, Apoorva P2, Rakshitha R3, Vismaya J V4 1,2,3,4 UG Scholar, Information Science and Engineering Department, Sri Venkateshwara College of Engineering, Bengaluru, Karnataka, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - There is a rapid increase in number of vehicles using on road due to growing populationandpeople’sneed for comfort, more and more automobiles are being purchased in both urban and rural areas which leadstoincreasingtrafficas a result there is a greater number of traffic violations happening in every corner of the world. As the traffic violation increases the number of road accidents happening are also increasing and leads to death of many lives. To control the traffic flow and create the safer environment thereisaneedto develop automatic tracking of traffic violation detection systems to automate the rules and regulations to eliminate lack of awareness among the humans. The proposed system can identify lane detection, over speed of the vehicles and also thefted vehicles. The proposed system gives high accuracy in detecting these violations with overall 90%. The proposed system is achieved using Computer Vision and Deep Learning techniques. Key Words: Traffic Violation, YOLOv5, CNN, Vehicle Theft, Image Processing, Vehicle Detection, Vehicle Tracking. 1. INTRODUCTION With the ever-increasing population of people and vehicles, traffic accidents increase every day. Traffic should be controlled fast and in time to prevent these types of situations. However, the size of the data can make it harder to control traffic. For this reason, detecting lane and wrong way violations from cameras would make traffic control easier. In this study, a software-based system is proposed that will minimize human errors. The problem of traffic violation has become a veryserious in the present day. The very high volume of traffic is due to the increasing number of vehicles. A moving violation is any violation committed by the driver of a vehicle while it is in motion. Moving Violations are speeding, which can be exceeding a limit or (in some jurisdictions) simply driving at an unsafe speed, improper lane usage, such as failing to drive within a single lane.Every day, the problem is turning out to be more and more critical and crucial. With the increase in population the vehicles are also increasing due to which there is a increase in the rate of accidents in cities all over the country. According to 2021, 1214 road crashes occur every day in India. Two wheelers account for 25% of total road crash deaths. It is much obvious thatpeopleareviolatingthetraffic rules and regulations and there is a high requirement to control it. Manual checking of vehicles is troublesome, and mistake-inclined, and problematic human memory. As a result, the need arises for a traffic violation detectionsystem to deal with this, which can identify criminal traffic offenses instantly. The new system was required that could monitor these offenses 24x7, with least or no human resource requirement and could identify multiple traffic violations with high accuracy. This system is achieved by using computer vision technologies which enables computers to derive meaningful information from the digital images, and videos and deep Learning mainly used for classification which is been widely used in image classification. Since videos are captured from moving vehicles, the whole city is covered instead of a few signals and junctions. This enables traffic police to capture traffic violations happening in small lanes to highways. 1.2 PROPOSED SYSTEM The Closed-Circuit Television (CCTV) is placed at every street in public, in signals, in highways and also in junctions to capture the videos of vehicles. The captured vehicles footage is sent to the system as input to detect the vehicles that is violating traffic rules and regulations and classifies the type of violation such as Lane Detection, Over Speeding and stolen vehicles caused by that vehicle. The proposed system uses Computer Vision for image processing and uses the popular CNN algorithm for classification of violations. After the detection and classification is done the system extractsthe numberplateof that vehicle reads the license plate and intimates to the nearby police station so that further actions can be taken by police. Vehicle detection and tracking has to be done first in order to detect security lane or wrong lane and speed detection. 1.3 RELATED BACKGROUND Lane boundaries is detected usinga camera thatcaptures the view of the road, mounted on the front of the vehicle. The lane markings on the road by giving the video of the road as an input to the system by using computer vision technology
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3353 [12]. The importance of the decoder in recovering the boundary information of the target pixel,thedecoderbranch is added based on the existing direct up-sampling lane line detection algorithm. It improves the classification and prediction ability of the lane line boundary pixel [13]. Camera calibration is a method of settlingthecamera model, which is a geometric relationship between 3D space and 2D image. In here, the purpose of camera calibration was to calculate the target position in real 3D space to determine the vehicle speed [14]. The fingerprint is a unique biometric signature that can be used to identify individual people uniquely. The computer is good at matching the fingerprint pattern and recognizing it fast and accurately. There are different methods for authenticating the fingerprint that as an optical fingerprint scanner and capacitive scanner[15].A wireless vehicle security system which implements the mobile communication protocol is used. The most known existing car security systemiscaralarm[16].Thespeedlimit is set if the speed exceeded the limit, then a message will be transferred to the owner and then if owner sends a reverse message, then according to message either speed will be controlled or the car will stop [17]. 2. IMPLEMENTATION An Open ALPR system consists of three main modules to provide reasonable outcomes. These three steps areLicense Plate Detection (LPD), Character Segmentation (CS), and Optical Character Recognition (OCR) which can be found in most of the approaches. In the first step LPD the video or a image of the stolen vehicles is given then license plate is recognized is given as the input. YOLO V5 (You Only Look Once version 5) containing CNN is used for vehicle and number plate detection. In image preprocessing labelled data is use for training the dataset which is supervised learning machine and OpenCV function used to crop the image as required and remove the noise in the background for extracting the features. Fig -1: Speed and number plate recognition In second step Character Segmentation method is used after the license plate of the vehicle is detected. Here the image is converted in to convert the grey scale image to reduce complexity. CNN is trained in such a way that Characters in the license plate (0-9, A-Z) along with the margin of the license plate is detected. In the next step Character Recognition is done where the characters present in number plate are compared with the complaint registered vehicle number plate. If the complaint registered number and the vehicle number is matched then the intimation is sent to the owner of the vehicle and the area police station with the place and time using Twilio library. Fig -2: Lane violation with bounding box To detect lane violation first the lane on the road should be identified. Two points in the lane are askedfromused,thena line is drawn to the screen defining this lane. Vehicles crossing this line is assumed to violate security lane. Fig -3: Bounding Box Prediction Yolov5(You Only look once) It is a novel convolutional neural network (CNN)thatdetects objects in real-time with great accuracy. This approach uses a single neural network to process the entire picture, then separates it into parts and predicts bounding boxes and probabilities for each component.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3354 It is a class of multi-layer perceptron, refers to a fully connected network (FCN) in which all neurons of one layer are connected to other neurons in the next layer. It is category of neural networks to process thedata ina grid-like manner that divides the images into a grid system, in each cell in the grid is responsible for detecting the objectswithin itself by drawing bounding box around the defined object. Bounding box is used to get the co-ordinates of the image such as height, width, pedestrian and probabilitiesvalueofa object in a digital image or video. It gives an objectiveness score for each bounding box with truthobject.BoundingBox predictions are very important to get the exact location of the object in the entire Image which is usually drawn rectangular in shape around the object. It is mainly used for extracting the features from a single digital image in frame- by-frame from digital video to different sizes. The algorithm is used to detect the multiple objects in a single iterationand hence you only look once. Fig -4: Architecture of YOLO It is of three parts backbone: CSP Darknet, Neck: PANet and Head: Yolo Layer The data is first given as input to CSP Darknet for Feature Extraction and thentoPANetforfeature fusion Finally Yolo layer outputs the results. The model is capable of detecting every frame in the digital video, fig detects the vehicle and its speed from thecaptured video. Speed is calculated using pixel calculation, area of the boundary box and anchor points. Area of the boundary exactly tells the distance travelled by the vehicleinthevideo and anchor points adds more perception to these parameters and speed of the vehicle is determined. Automatic License Plate Recognition (ALPR) has been a frequent topic of research duetomanypracticalapplications. However, many of the current solutions are still notrobustin real-world situations, commonly depending on many constraints. This paper presents a robust and efficient ALPR system based on the state-of- the-art YOLO object detector. The Convolutional Neural Networks (CNNs) are trained and fine-tuned for each ALPR stage so that they are robust under different conditions (e.g., variations in camera, lighting, and background). Specially for character segmentation and recognition, we design a two-stage approach employing simple data augmentation tricks such as inverted License Plates (LPs) and flipped characters. The proposed approach is divided into four subsections, one for each of the ALPR stages (i.e., vehicle and LP detection, character segmentation and character recognition) and one for temporal redundancy. Fig.3.1 illustrates the ALPR pipeline. We use specific CNNs for each ALPR stage. Thus, we can tune the parameters separately in order to improve the performance for each task. The models used are: Dark Flow, YOLO V5, NumPy, Tensor Flow, OpenCV and Keras. Dataset used to train the model is form Kaggle. The model is trained in Python environment (version 3.6.3) and implemented using Keras 2.2.4 [15], with TensorFlow 1.3.1 backend. Fig -4: Vehicle theft in different cities 3. CONCLUSIONS The proposed system performs better and efficient and provides high accuracy in controlling the traffic rules violation and theft detection using deep learning. Since background subtraction techniques are used in vehicle detection processes, camera shake or movement does not cause probing. The proposed method continues to provide better results in severe weatherconditions(fog,snowstorm, etc.). REFERENCES [1] J. Navarro, J. Deniel, E. Yousfi, C. Jallais, M. Bueno and A. Fort, "Influence of lane departure warnings onset and reliability on car drivers’ behaviors", Appl. Ergonom., vol. 59, pp. 123-131, Mar. 2017. [2] J. Piao and H. Shin, "Robust hypothesis generation method using binary blob analysis for multi-lane detection", IET Image Process., vol. 11, pp. 1210- 1218, Dec. 2017. [3] Y. Kortli, M. Marzougui, B. Bouallegue, J.S.C.Bose, P. Rodrigues and M. Atri, "A novel illumination- invariant lane detectionsystem",Proc.2ndInt.Conf. Anti-Cyber Crimes (ICACC), pp.166-171,Mar.2017.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3355 [4] J. Son, H. Yoo, S. Kim and K. Sohn, "Real-time illumination invariant lane detection for lane departure warning system", Expert Syst. Appl., vol. 42, no. 4, pp. 1816-1824, Mar. 2015. [5] A.C.P. Uy, A.R.F. Quiros, R.A. Bedruz, A. Abad, A. Bandala, E. Sybingco, E.P. Dadios Automated traffic violation apprehension system using genetic algorithm and artificial neural network Proceedings of the IEEE Region 10 Conference (TENCON), IEEE (2016), pp. 2094-2099. [6] N. Krittayanawach et al., “Robust Compression Technique for YOLOv3 on Real-Time Vehicle Detection”, 11th International Conference on Information Technology and Electrical Engineering (ICITEE), Pattaya, Thailand, 2019. [7] Mohana et.al., “Simulation of Object Detection Algorithms for Video Surveillance Applications”, 2nd International Conference on I-SMAC (IoT in Social, Mobile, Analytics and Cloud),2018. [8] Mohana et.al., “Performance Evaluation of Background Modeling MethodsforObjectDetection and Tracking,” International Conference on Inventive Systems and Control, 2020. [9] S. K. Mankani et al., “Real-time implementation of object detection and tracking on DSP for video surveillance applications,”International Conference on Recent Trends in Electronics, Information & Communication Technology (RTEICT), 2016. [10] X. He et al., “A Driving Warning Method based on YOLOV3 and Neural Network”, IEEE International Conference on ServiceOperationsandLogistics,and Informatics (SOLI), Zhengzhou, China, 2019. [11] H. Qu et al., “A Pedestrian Detection Method Based on YOLOv3 Model and Image Enhanced byRetinex,” 11th International Congress on Image and Signal Processing, Bio Medical Engineering and Informatics (CISP-BMEI), Beijing, China, 2018. [12] Abhishek Goyal, Mridula Singh, Anand Srivastava Lane Detection on Roads using Computer Vision International Journal of Engineering and Advanced Technology ISSN: 2249 – 8958, Volume-9 Issue-1, October 2019. [13] Malik Harris and Adam Glowacz, Lane Line Detection Based on Object Feature Distillation, Electronics May 2021. [14] Alexander A S Gunawana, Deasy Aprilia Tanjunga, Fergyanto E. Gunawana, Detection of Vehicle Position and Speed using Camera Calibration and Image Projection Methods, 4th International Conference on Computer Science and Computational Intelligence 2019 (ICCSCI), 12–13 September 2019. [15] Aryan Verma, Vehicle Theft Identification and License Authentication Using IoT, J. Phys.: Conf.Ser. 1964 062068,2021. [16] Dr. Sreeja Mole S, Rekha, Vehicle Theft Detection by GSM D. Guru Nath Issn (Print): 2393-8374,2394- 0697, Volume-5, Issue-2, 2018. [17] System Jitender Yadav, Jatin Dixit, Archit Paliwal, Bharti Gupt, Design and Implementation of Vehicle Theft Detection, International Journal of Information Sciences and Application (IJISA). ISSN 0974-2255, Vol.11, No.1, 2019. [18] Abhiraj Biswas et. al., “Classification of Objects in Video Records using Neural Network Framework,” International conference on Smart Systems and Inventive Technology, 2018. [19] Ruben J Franklin et.al., “Anomaly Detection in Videos for Video Surveillance Applications Using Neural Networks,” International Conference on Inventive Systems and Control,2020. [20] N. Matthews, P. An, D. Charnley, C. Harris, "Vehicle Detection and Recognition In Grey Imagery", Control Engineering Practice. [21] Stephan Haendeler, Andreas Lewandowski, Christian Wietfeld,” Passive Detection of Wrong Way Drivers on Motorways Based on Low Power Wireless Communications”, Vehicular Technology Conference (VTC Spring), 2018 IEEE 79th 18-21 May 2018. [22] P. Srinivas Reddy, Ramesh O., "A Video-Based Traffic Violation Detection System," Sep 2019. [23] Mukremin Ozkul, Ilir Capuni (2018).” Police-less multiparty traffic violation detection and reporting system with privacy preservation”, IET Intelligent Transport Systems.