SlideShare uma empresa Scribd logo
1 de 4
Baixar para ler offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2947
Vigilance: Vehicle Detector and Tracker
Abhishek Ghanekar1, Anish Iyer2, Niraj Jadhav3, Shweta Sharma4
[1],[2],[3]Student, Department of Computer Engineering, Atharva College of Engineering, Mumbai, Maharashtra,India
[4]Professor, Department of Computer Engineering, Atharva College of Engineering, Mumbai, Maharashtra, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Vehicle detection and Tracking plays a prime
and effective role within the area of traffic Surveillance
systems where efficient traffic management and safety is the
main concern. In this paper, we discuss and address the
difficulty of detecting vehicle/traffic data from video frames.
There are several methods that are checked out in this area
but there's always an opportunity forimprovementinterms of
accuracy and efficiency. For improvement, it's proposed to
develop a singular algorithm for vehicle data recognition and
tracking using the YOLO and Deep sort algorithm. This paper
provides a quick about multiple vehicle detection, recognizing
vehicles according to appropriate categories, and tracking
them. The experimental results show that the proposed
algorithm is often able to detect moving vehicles in complex
transportation environments and which alsohasthepotential
to be processed in a very cloud computing platform.
Key Words: Traffic Management, YOLO, Deep sort,
Vehicle detection, tracking
1. INTRODUCTION
Vehicle detection and statistics in route monitoring video
scenes is of great significance to intelligently manage traffic
and also the management of the route. With the favored
installation of traffic surveillance cameras, colossal info of
traffic video footage has been obtained for analysis. The
position of cameras must be at a particular height in order
that a large area is taken into account. The size of the vehicle
changes greatly at this viewing angle, and also the detection
accuracy of a tiny low object isolated from the road is low.
Within the face of complicated camera scenes, it's essential
to effectively solve the above issues and further apply them.
During this project, we concentrate on the above issues to
propose a viable solution, and we applythevehicledetection
results to multi-object tracking and vehicle counting. With
the increasing style of roads and traffic everywhere on the
earth, traffic monitoring and control using modern
technologies became a compelling requirement. This can be
why intelligent transportation systems (ITS) have attracted
heaps of attention within the last decades. Among the
various tasks of traffic monitoringsystems,vehicledetection
is the key task. Once a vehicle is detected, different
applications are going to be applied plenty more easily.
2. LITERATURE SURVEY
Even though object detection is still relatively in its early
stages, many methods and algorithms have already been
used to detect and track objects in a frame. We will be going
through some of the methods used in previous models used
for object and vehicle detection and tracking.
Let's take a look at the model proposed by the author,
Sriashika Addala in their paper [1]. They have used a 2-step
procedural model – the first one to detect thevehicleand the
second step for vehiclerecognition.Toincreasetheaccuracy,
they have used Haar-like features, AdaBoost algorithm and
then a classifier to detect the vehicle.
In Computer Vision Based Vehicle Detection and Counting
System [2], the authors have implemented the system on a
computer vision-based model. The system makes use of
background subtraction technique to find the object and
later a series of computer vision technologies such as
thresholding, morphology operations and hole filling are
then applied.
The next proposed model by author Joseph Redmon,intheir
paper You Only Look Once: Unified, Real-Time Object
detection makes use of the YOLO model [3]. It also uses a
single neural network to predict the bounding boxes and
class probabilities in one go. The YOLO model helps them to
get high accuracy and good predictions.
Object detection usingSSDhadbecomewidelypopularin the
last few years. The author Jingwei Cao makes use of the
improved SSD model to overcomesomeofthedisadvantages
found in the regular SSD model [4]. The proposed system
also makes use of KITTI dataset which helps their model
achieve a better performance in crowded traffic scenarios
and dreadful weather conditions.
The author Shih-Chung Hsu makes use of R-CNN i.e. region-
based convolutional neural networksforvehicledetection in
Vehicle detection using Simplified FastR-CNN[5].Themodel
makes use of pre-trained weights from ImageNet. The
detector detects the vehicle based on a binary classifier
system. The example is positive if the image contains the
vehicle whereas it is negative if there is no vehicle.
The R-FCN [11] is a fully convolutional network for object
detection which is faster than R-CNN while maintaining
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2948
competitive accuracy. This network divides the image into
sub-regions and generates score maps for each sub-region.
Then calculating the average of all scores there is a
probability prediction of an object in that frame.
3. PROPOSED SYSTEM
The proposed system consists of two major deep learning
models Yolo (You only look once) and deep sort.
There are two phases of this system
1. Vehicle detection:
The Yolo is the algorithm that has been used for vehicle
detection. And the dataset that has been used is the COCO
dataset which contains all vehicle categories and YOLO is
pre-trained on the COCO dataset.
2. Vehicle tracking and counting
For tracking the vehicles which are already detected using
YOLO there is the requirement of Deep sort (Machine
learning model). Deep sort assigns unique IDs to vehicles so
that they can be tracked. As the vehicle passes the frame
counter is incremented to keep the count.
All these will be accessed by a web app so that authorities
can monitor the vehicles and take appropriate decisions.
For the above system, there is a need for a camera to be
placed at the entry part, and the whole detection and
counting process will be automatically done by the system
and algorithm.
Fig 3.1: Methodology flowchart
4. RESULTS AND DISCUSSION
Dataset:
The dataset that has been used is the COCO dataset
developed by Microsoft that contains thousandsofimagesof
vehicles. It contains JSON structurewithlabelsandmetadata
of images. This dataset was used for further processing and
detection of vehicles.
Vehicle detection using YOLO:
YOLO is one of the object detection models which is trained
in the COCO dataset so it can detect the vehicles according to
the appropriate category. Detecting vehicles can be done by
downloading the weights file which is responsible for
drawing bounding boxes around vehicles and also
downloading the configuration file.
Vehicle tracking using Deep sort:
The detected vehicle can be tracked using the Deep sort
library which is downloaded and used in the project. The
advantage of using deep sort is that it can be used to track
multiple vehicles in the frame.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2949
Performance of Model:
The performance of model depends on the hardware of the
system on which it is run. It mainly depends on how
powerful the GPU of the system is. Compared to theYOLOv3
model, YOLOv4 model has a better performance. It provides
10 to 12% fps boost over its predecessor model. The model
was run on GTX 1660TI GPU. The fps on the output video
ranged from 9-15 frames per second. The fps can also be
increased using a better GPU. In the fig you can see the fps
achieved in our model using the YOLOv4 algorithm.
Fig 4.1: Comparison of YOLO version
5. FUTURE SCOPE
It can be used in a Real-time surveillance camera on the
highway to determine the number of vehicles passing by
according to what time it started to last record. This data
then can be used for traffic management by executing an
answer if the place proved a lot of congestion or not. The
vehicle detection system also classifies vehiclesaccordingto
different categories e.g. Car,trucks,motorbikeswhichmakes
it easier to segregate them into small and large vehicles.
The parking system is one of the applications of the vehicle
detection and tracking system where the systemkeepstrack
of all vehicles entering and leaving the parkingfacilitywhich
determines the available space in parking and total vehicles.
6. CONCLUSIONS
In this project, visual object tracking is completed on videos
by training detectors using COCO datasets which have
thousands of pre-trained weights. The moving vehicle
detection is finished using a YOLO detector and DEEP SORT
for tracking the objects in consecutive frames. Accuracy and
precision are often worked upon by training the system for
more fine-tuning while trainingthedetector.Performance of
DEEP SORT tracker totally dependsupontheperformanceof
the detector because it could be a tracker which follows a
tracking by detection approach. For Futurework,thesystem
is trained for more vehicles so that the accuracy can be
increased and it can detect vehicles in extreme conditions.
For that, there is a requirement of GPU so that the process
will be smooth which not only increases accuracy but also
decreases the time.
ACKNOWLEDGEMENT
We would like to express our gratitude and appreciation to
all those who gave us the possibility to complete this report.
Special thanks are to our supervisor Prof. Shweta Sharma
whose help, stimulating suggestions and encouragement
helped us in all the time of fabrication process andin writing
this paper. We would like to thank our Principal Dr.Shrikant
Kallurkar and Prof. Suvarna Pansambal, Head of Computer
Engineering Department for instigating within us the need
for this research and giving us the opportunities and time to
conduct and present research on the topic.
REFERENCES
[1] Sriashika Addala (2020) , Research paper on vehicle
detection and recognition.
[2] Nilakorn Seenouvong, Ukrit Watchareeruetai and
Chaiwat Nuthong , “A Computer Vision Based Vehicle
Detection and Counting System”, International College
, King Mongkut’s Institute of Technology.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2950
[3] J. Redmon, S. Divvala, R. Girshick, and A. Farhadi, “You
only look once: Unified, real-time object detection,”
Proc. IEEE Comput. Soc. Conf. Comput. Vis. Pattern
Recognit., vol. 2016-Decem, pp. 779– 788, 2016, doi:
10.1109/CVPR.2016.91.
[4] Jingwei Cao , Chuanxue Song , Shixin Song , Silun Peng
, Da Wang , Yulong Shao and Feng Xiao, “Front Vehicle
Detection Algorithm for Smart Car Based on Improved
SSD Model ”, Jilin University ,2020.
[5] Shih-Chung Hsu , Chung-Lin Huang , Cheng-Hung
Chuang , “Vehicle Detection using Simplified Fast R-
CNN”, IEEE , 2018.
[6] Hsu-Yung Cheng, Chih-Chia Weng, and Yi-Ying Chen”
Vehicle Detection in Aerial Surveillance Using
Dynamic Bayesian Networks.”IEEE Trans. On Image
Processing, Vol. 21, No. 4, April 2012. [3] C Stauffer, W
Grimson, “Adaptive background mixture models for
real - time tracking”. Proceedings of IEEE Computer
Society Conference on Computer Vision and Pattern
Recognition, 1999, 2(6) : 248 – 252.
[7] L. W. Tsai, J. W. Hsieh, and K. C. Fan, “Vehicle detection
using normalized color and edge map,” IEEE Trans.
Image Process., vol. 16, no.3, pp. 850–864, Mar. 2007.
[8] B. Morris and M. Trivedi, ―Robust classification and
tracking of vehicles in traffic video streams, Proc. IEEE
ITSC, 2006, pp. 1078–1083.
[9] Wenhao Lu, Shengjin Wang, Xioaqing Ding,Vehicle
Detection and Tracking in Relatively Crowded
Conditions,Proceedings of the 2009 IEEE International
Conference on Systems, Man, and Cybernetics San
Antonio, TX, USA.
[10] J. Wang, G. Bebis, and R. Miller, “Overtaking vehicle
detection using dynamic and quasi static background
modeling,” inProc. IEEE CVPR, Jun. 2005, p. 64
[11] Jifeng Dai, Kaiming He, Jian Sun, and Yi Li, “R-FCN:
Object detection via Region based Fully Convolutional
Networks”

Mais conteúdo relacionado

Semelhante a Vigilance: Vehicle Detector and Tracker

Application of improved you only look once model in road traffic monitoring ...
Application of improved you only look once model in road  traffic monitoring ...Application of improved you only look once model in road  traffic monitoring ...
Application of improved you only look once model in road traffic monitoring ...
IJECEIAES
 

Semelhante a Vigilance: Vehicle Detector and Tracker (20)

IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
 
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
 
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
 
Deep Learning Approach Model for Vehicle Classification using Artificial Neur...
Deep Learning Approach Model for Vehicle Classification using Artificial Neur...Deep Learning Approach Model for Vehicle Classification using Artificial Neur...
Deep Learning Approach Model for Vehicle Classification using Artificial Neur...
 
TRAFFIC RULES VIOLATION DETECTION SYSTEM
TRAFFIC RULES VIOLATION DETECTION SYSTEMTRAFFIC RULES VIOLATION DETECTION SYSTEM
TRAFFIC RULES VIOLATION DETECTION SYSTEM
 
Real-Time Automated Overspeeding Detection and Identification System
Real-Time Automated Overspeeding Detection and Identification SystemReal-Time Automated Overspeeding Detection and Identification System
Real-Time Automated Overspeeding Detection and Identification System
 
Automatic Detection of Unexpected Accidents Monitoring Conditions in Tunnels
Automatic Detection of Unexpected Accidents Monitoring Conditions in TunnelsAutomatic Detection of Unexpected Accidents Monitoring Conditions in Tunnels
Automatic Detection of Unexpected Accidents Monitoring Conditions in Tunnels
 
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
 
IRJET - Traffic Density Estimation by Counting Vehicles using Aggregate Chann...
IRJET - Traffic Density Estimation by Counting Vehicles using Aggregate Chann...IRJET - Traffic Density Estimation by Counting Vehicles using Aggregate Chann...
IRJET - Traffic Density Estimation by Counting Vehicles using Aggregate Chann...
 
Application of improved you only look once model in road traffic monitoring ...
Application of improved you only look once model in road  traffic monitoring ...Application of improved you only look once model in road  traffic monitoring ...
Application of improved you only look once model in road traffic monitoring ...
 
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
 
A Review: Machine vision and its Applications
A Review: Machine vision and its ApplicationsA Review: Machine vision and its Applications
A Review: Machine vision and its Applications
 
IRJET - An Intelligent Pothole Detection System using Deep Learning
IRJET -  	  An Intelligent Pothole Detection System using Deep LearningIRJET -  	  An Intelligent Pothole Detection System using Deep Learning
IRJET - An Intelligent Pothole Detection System using Deep Learning
 
Real Time Moving Object Detection for Day-Night Surveillance using AI
Real Time Moving Object Detection for Day-Night Surveillance using AIReal Time Moving Object Detection for Day-Night Surveillance using AI
Real Time Moving Object Detection for Day-Night Surveillance using AI
 
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNETROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
 
Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using D...
Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using D...Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using D...
Automatic Traffic Rules Violation Control and Vehicle Theft Detection Using D...
 
CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNING
CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNINGCAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNING
CAR DAMAGE DETECTION AND PRICE PREDICTION 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
 
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRYA TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
 
Obstacle Detection and Collision Avoidance System
Obstacle Detection and Collision Avoidance SystemObstacle Detection and Collision Avoidance System
Obstacle Detection and Collision Avoidance System
 

Mais de IRJET Journal

Mais de 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...
 

Último

Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Verification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptxVerification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptx
chumtiyababu
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
AldoGarca30
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
MayuraD1
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
mphochane1998
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 

Último (20)

Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Verification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptxVerification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptx
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech Civil
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptx
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 

Vigilance: Vehicle Detector and Tracker

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2947 Vigilance: Vehicle Detector and Tracker Abhishek Ghanekar1, Anish Iyer2, Niraj Jadhav3, Shweta Sharma4 [1],[2],[3]Student, Department of Computer Engineering, Atharva College of Engineering, Mumbai, Maharashtra,India [4]Professor, Department of Computer Engineering, Atharva College of Engineering, Mumbai, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Vehicle detection and Tracking plays a prime and effective role within the area of traffic Surveillance systems where efficient traffic management and safety is the main concern. In this paper, we discuss and address the difficulty of detecting vehicle/traffic data from video frames. There are several methods that are checked out in this area but there's always an opportunity forimprovementinterms of accuracy and efficiency. For improvement, it's proposed to develop a singular algorithm for vehicle data recognition and tracking using the YOLO and Deep sort algorithm. This paper provides a quick about multiple vehicle detection, recognizing vehicles according to appropriate categories, and tracking them. The experimental results show that the proposed algorithm is often able to detect moving vehicles in complex transportation environments and which alsohasthepotential to be processed in a very cloud computing platform. Key Words: Traffic Management, YOLO, Deep sort, Vehicle detection, tracking 1. INTRODUCTION Vehicle detection and statistics in route monitoring video scenes is of great significance to intelligently manage traffic and also the management of the route. With the favored installation of traffic surveillance cameras, colossal info of traffic video footage has been obtained for analysis. The position of cameras must be at a particular height in order that a large area is taken into account. The size of the vehicle changes greatly at this viewing angle, and also the detection accuracy of a tiny low object isolated from the road is low. Within the face of complicated camera scenes, it's essential to effectively solve the above issues and further apply them. During this project, we concentrate on the above issues to propose a viable solution, and we applythevehicledetection results to multi-object tracking and vehicle counting. With the increasing style of roads and traffic everywhere on the earth, traffic monitoring and control using modern technologies became a compelling requirement. This can be why intelligent transportation systems (ITS) have attracted heaps of attention within the last decades. Among the various tasks of traffic monitoringsystems,vehicledetection is the key task. Once a vehicle is detected, different applications are going to be applied plenty more easily. 2. LITERATURE SURVEY Even though object detection is still relatively in its early stages, many methods and algorithms have already been used to detect and track objects in a frame. We will be going through some of the methods used in previous models used for object and vehicle detection and tracking. Let's take a look at the model proposed by the author, Sriashika Addala in their paper [1]. They have used a 2-step procedural model – the first one to detect thevehicleand the second step for vehiclerecognition.Toincreasetheaccuracy, they have used Haar-like features, AdaBoost algorithm and then a classifier to detect the vehicle. In Computer Vision Based Vehicle Detection and Counting System [2], the authors have implemented the system on a computer vision-based model. The system makes use of background subtraction technique to find the object and later a series of computer vision technologies such as thresholding, morphology operations and hole filling are then applied. The next proposed model by author Joseph Redmon,intheir paper You Only Look Once: Unified, Real-Time Object detection makes use of the YOLO model [3]. It also uses a single neural network to predict the bounding boxes and class probabilities in one go. The YOLO model helps them to get high accuracy and good predictions. Object detection usingSSDhadbecomewidelypopularin the last few years. The author Jingwei Cao makes use of the improved SSD model to overcomesomeofthedisadvantages found in the regular SSD model [4]. The proposed system also makes use of KITTI dataset which helps their model achieve a better performance in crowded traffic scenarios and dreadful weather conditions. The author Shih-Chung Hsu makes use of R-CNN i.e. region- based convolutional neural networksforvehicledetection in Vehicle detection using Simplified FastR-CNN[5].Themodel makes use of pre-trained weights from ImageNet. The detector detects the vehicle based on a binary classifier system. The example is positive if the image contains the vehicle whereas it is negative if there is no vehicle. The R-FCN [11] is a fully convolutional network for object detection which is faster than R-CNN while maintaining
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2948 competitive accuracy. This network divides the image into sub-regions and generates score maps for each sub-region. Then calculating the average of all scores there is a probability prediction of an object in that frame. 3. PROPOSED SYSTEM The proposed system consists of two major deep learning models Yolo (You only look once) and deep sort. There are two phases of this system 1. Vehicle detection: The Yolo is the algorithm that has been used for vehicle detection. And the dataset that has been used is the COCO dataset which contains all vehicle categories and YOLO is pre-trained on the COCO dataset. 2. Vehicle tracking and counting For tracking the vehicles which are already detected using YOLO there is the requirement of Deep sort (Machine learning model). Deep sort assigns unique IDs to vehicles so that they can be tracked. As the vehicle passes the frame counter is incremented to keep the count. All these will be accessed by a web app so that authorities can monitor the vehicles and take appropriate decisions. For the above system, there is a need for a camera to be placed at the entry part, and the whole detection and counting process will be automatically done by the system and algorithm. Fig 3.1: Methodology flowchart 4. RESULTS AND DISCUSSION Dataset: The dataset that has been used is the COCO dataset developed by Microsoft that contains thousandsofimagesof vehicles. It contains JSON structurewithlabelsandmetadata of images. This dataset was used for further processing and detection of vehicles. Vehicle detection using YOLO: YOLO is one of the object detection models which is trained in the COCO dataset so it can detect the vehicles according to the appropriate category. Detecting vehicles can be done by downloading the weights file which is responsible for drawing bounding boxes around vehicles and also downloading the configuration file. Vehicle tracking using Deep sort: The detected vehicle can be tracked using the Deep sort library which is downloaded and used in the project. The advantage of using deep sort is that it can be used to track multiple vehicles in the frame.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2949 Performance of Model: The performance of model depends on the hardware of the system on which it is run. It mainly depends on how powerful the GPU of the system is. Compared to theYOLOv3 model, YOLOv4 model has a better performance. It provides 10 to 12% fps boost over its predecessor model. The model was run on GTX 1660TI GPU. The fps on the output video ranged from 9-15 frames per second. The fps can also be increased using a better GPU. In the fig you can see the fps achieved in our model using the YOLOv4 algorithm. Fig 4.1: Comparison of YOLO version 5. FUTURE SCOPE It can be used in a Real-time surveillance camera on the highway to determine the number of vehicles passing by according to what time it started to last record. This data then can be used for traffic management by executing an answer if the place proved a lot of congestion or not. The vehicle detection system also classifies vehiclesaccordingto different categories e.g. Car,trucks,motorbikeswhichmakes it easier to segregate them into small and large vehicles. The parking system is one of the applications of the vehicle detection and tracking system where the systemkeepstrack of all vehicles entering and leaving the parkingfacilitywhich determines the available space in parking and total vehicles. 6. CONCLUSIONS In this project, visual object tracking is completed on videos by training detectors using COCO datasets which have thousands of pre-trained weights. The moving vehicle detection is finished using a YOLO detector and DEEP SORT for tracking the objects in consecutive frames. Accuracy and precision are often worked upon by training the system for more fine-tuning while trainingthedetector.Performance of DEEP SORT tracker totally dependsupontheperformanceof the detector because it could be a tracker which follows a tracking by detection approach. For Futurework,thesystem is trained for more vehicles so that the accuracy can be increased and it can detect vehicles in extreme conditions. For that, there is a requirement of GPU so that the process will be smooth which not only increases accuracy but also decreases the time. ACKNOWLEDGEMENT We would like to express our gratitude and appreciation to all those who gave us the possibility to complete this report. Special thanks are to our supervisor Prof. Shweta Sharma whose help, stimulating suggestions and encouragement helped us in all the time of fabrication process andin writing this paper. We would like to thank our Principal Dr.Shrikant Kallurkar and Prof. Suvarna Pansambal, Head of Computer Engineering Department for instigating within us the need for this research and giving us the opportunities and time to conduct and present research on the topic. REFERENCES [1] Sriashika Addala (2020) , Research paper on vehicle detection and recognition. [2] Nilakorn Seenouvong, Ukrit Watchareeruetai and Chaiwat Nuthong , “A Computer Vision Based Vehicle Detection and Counting System”, International College , King Mongkut’s Institute of Technology.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2950 [3] J. Redmon, S. Divvala, R. Girshick, and A. Farhadi, “You only look once: Unified, real-time object detection,” Proc. IEEE Comput. Soc. Conf. Comput. Vis. Pattern Recognit., vol. 2016-Decem, pp. 779– 788, 2016, doi: 10.1109/CVPR.2016.91. [4] Jingwei Cao , Chuanxue Song , Shixin Song , Silun Peng , Da Wang , Yulong Shao and Feng Xiao, “Front Vehicle Detection Algorithm for Smart Car Based on Improved SSD Model ”, Jilin University ,2020. [5] Shih-Chung Hsu , Chung-Lin Huang , Cheng-Hung Chuang , “Vehicle Detection using Simplified Fast R- CNN”, IEEE , 2018. [6] Hsu-Yung Cheng, Chih-Chia Weng, and Yi-Ying Chen” Vehicle Detection in Aerial Surveillance Using Dynamic Bayesian Networks.”IEEE Trans. On Image Processing, Vol. 21, No. 4, April 2012. [3] C Stauffer, W Grimson, “Adaptive background mixture models for real - time tracking”. Proceedings of IEEE Computer Society Conference on Computer Vision and Pattern Recognition, 1999, 2(6) : 248 – 252. [7] L. W. Tsai, J. W. Hsieh, and K. C. Fan, “Vehicle detection using normalized color and edge map,” IEEE Trans. Image Process., vol. 16, no.3, pp. 850–864, Mar. 2007. [8] B. Morris and M. Trivedi, ―Robust classification and tracking of vehicles in traffic video streams, Proc. IEEE ITSC, 2006, pp. 1078–1083. [9] Wenhao Lu, Shengjin Wang, Xioaqing Ding,Vehicle Detection and Tracking in Relatively Crowded Conditions,Proceedings of the 2009 IEEE International Conference on Systems, Man, and Cybernetics San Antonio, TX, USA. [10] J. Wang, G. Bebis, and R. Miller, “Overtaking vehicle detection using dynamic and quasi static background modeling,” inProc. IEEE CVPR, Jun. 2005, p. 64 [11] Jifeng Dai, Kaiming He, Jian Sun, and Yi Li, “R-FCN: Object detection via Region based Fully Convolutional Networks”