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: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2436
Intelligent Accident Detection, Prevention and Reporting System
Prof.S.P.Mankar1, Varda Dodke2, Samruddhi Salvi3 , Shubhangi Sanap4,Tanaya Satpute5
1
Prof. S.P.Mankar, Dept. of Information Technology ,JSCOE, Pune, Maharashtra, India
2
Varda Dodke, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India
3
Samruddhi Salvi, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India
4
Shubhangi Sanap, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India
5
Tanaya Satpute, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract –Accidents have been a crucial cause of deaths
in India. Higher than 80% of accident-related deaths
occur not due to the accident itself but the lack of timely
help reaching the accidentvictims. The aim is to build a
system to prevent ,detect and report an accident to
emergency responders. To prevent the accident we have
used ultrasonic sensor to measure the distance of a vehicle
by using ultrasonic sound waves. An ultrasonic sensor
hasatransducertosendandreceiveultrasonicpulsesthat
relay back information about the distance between the
vehicles.We detect an accident based on video from a
CCTV camera installed on road. Our concept is to take
each frame/part of a video and run it through a deep
learning convolution neural network model which has
been trained to classify frames ofa videointonormaland
abnormal.CNNmodelhasprovedtobeafast and accurate
approach to classify images. CNN model has given
accuracy's of more than 95%. The researchbeingcarried
out on images and not videos. In this we detect the
Accident detection or not. If theAccidentisdetectedthen
system sends the SMS to police station and health care.
Keywords – Accident, Accident Prevention, Accident
detection, Convolution Neural Network, CCTV, frame,
Ultrasonic Sensor.
1. INTRODUCTION
Accident detection is oneofthekeyproblemsincomputer
vision that has been studied for more than 15 years. It is
importantbecauseofthesheernumberofapplicationswhich
canbenefit from Accident detection. For example, Accident
detection can be used in applications inclusive of video
surveillance, animal tracking and behavior understanding,
sign language detection, advanced human-computer
interaction. Affordable depth sensors have limitations like
limited to indoor use,andtheirlowresolutionandnoisedepth
information makeit difficult to estimate human poses from
depthimages.Thus,weplantouseneural networksalgorithms
to overcome these problems. Accident detection from video
surveillance isan active researchareaofimageprocessingand
computer vision. By the visual surveillance, human activities
can be monitored insensitive and public areas such as bus
stations, railway stations, airports, banks, shopping malls,
school and colleges, parking lots, roads, etc. to prevent
terrorism, theft, accidents and illegal parking, vandalism,
fighting, chain snatching, crime and other Accident detection.
It is very challenging tokeep an eye on public placesconstantly,
hence an intelligent video surveillance is required that can
monitor the human activities in real time and categorizethemas
normal and abnormal activities; and can initiate an alert.
Mostly, the research being carried out are on images and not
videos. Also, none of the papers published triesto use CNNs to
detect Accident. In this project we detect the Accident
detection detected or not. if the Accident detection detected
then system send the SMS to police station and medical health
care.
1.2 PROPOSED SYSTEM
In our proposed system, we develop a system to prevent,
detect and report an accident to the nearby emergency
responders. The goal of our system is to provide quick
response to the victim whenever the accident takes place by
using deep learningalgorithms.
We detect theaccidentwiththeuseofaConvolutionalNeural
network model where thealgorithmwilltrainthesystemand
then classify the images into normal and abnormal form
wherethe normal form means no accident occurred and a
normal formmeans the accident has taken place. Our device
will be able to locate the accident location and send the alert
message throughthe form of SMS(Short Message Service) to
the nearby police stationsandmedicalhealthcareservicesto
providequickhelptothe victim .
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2437
For prevention we use some onboard sensors where we
connect the ultrasonic sensor to Arduino board which
measures the distance between thevehiclesandalertstheuser
to maintain the safe distance through which accident can be
obstruct.
2. SYSTEM ARCHITECTURE
The Figure 1 tells us about the system architecture of the
system
.It shows all the components of the system like how the
system works. This system efficiently works with great
accuracy because of less dependency.
The system works as following :-
The most widely used method for Accident detection is
simplyUse video Dataset train the data set by CNN through
which identification and detection of Accident are done. In
this the system we use the same technique we insert the
video as an input to the system then the video is converted
into frames which done in preprocessing stage and then the
features are extracted by putting these frames into various
layers of CNN modelandthenclassificationtakesplacewhere
it classifies thedata into normal and abnormal form if the
frame is abnormal, itsends the alert message to the emergency
responders which then the user can take appropriate
We also have a hardware system which aims to
prevention of accident here we have used an ultrasonic sensor,
a buzzer whichis then connected to the Arduino board .This
sensor uses soundnavigation ranging technique also known
as sonar which has transmitterwhichsendsthesoundwaves
andthereceiversendsbacktheinformationaboutthedistance
about the vehicle whichis known as echo and if the distance
calculated between the twovehicles is unsafe it then alerts the
user by the ringing the buzzer sound.
Fig -1: SYSTEM ARCHITECTURE
2.1 IMPLEMENTATION
We develop a system to prevent,detectandreportanaccident
to the nearby emergency responders
We have used CNN (Convolutional Neural Network)which
is also known as ConvNet for detection of accident. In our
systemthevideoisfeededintothesystemasaninputthenthis
video is converted into image frames where the images are
trained using CNN algorithm where these images frames are
put into some layers for featureextractionandclassificationof
those images and detect the accident the figure2belowshows
the layers of CNN model.
We have used Convolution layer, Relu layer and Pooling
layerfor feature extraction.
1. Convolution layer – This layer extracts the high levelfeatures
such as edges from the input image This layer has number of
filters that performs convolutionoperationsontheimage.Every
matrix of the pixel values are sliding the filter matrix over
the image & computing the dot product to detectthepattern.
2. Relu Layer – It isa rectifiedLinearUnitwhichanactivation
function which performs the element wise operation. It is
basically if your input is negative, it’s going to put it to zero.
And then if it’s positive, it’s does nothing to positive values.
Thisisone of the commonly used because itdoesn’t saturate
inthe positive region.
3. Pooling Layer – Pooling Layer is used to progressively
reducethe spatial size of the input image, so that number of
computations in the network are reduced. Pooling performs
down sampling by reducing the size and sends only the
important data to next layers in CNN. There are mainly two
types of pooling that are max pooling and average pooling
butwe have specifically used max pooling as it calculates the
maximum value for patches of a feature map, and uses it to
create a down sampled (pooled) feature map.
For classification of an image we have Flatten layer, fully
connected layer and soft max function for classification of an
image.
1. Flatten layer – In this layer it performs the process of
converting all the resultant arrays from the pooled feature
mapinto the single long continuous linear vector.
2. Fully connected layer- this layer is responsibletoperform
where all the inputs from one layer are connected to every
activation unit of the next layer. In this ,the last few layers
are full connected layers which assembles the data obtained
from the previous layers to form the final output
3. SoftMax layer – it’s an activation layer. This layer has a
mathematical feature which converts a vector of numbers
into avector of probabilities, .it then turns a vector of K real
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2438
values within a vector of K real values that sum to 1. The
entered values can be positive, negative, zero, or greater
than one, but the SoftMax converts these values in range of
0 and 1, so that they can be interpreted as probabilities. If
one of the entered values is small or negative, the SoftMax
turns it into a small probability, and if an entered value is
large, then it turns it into ahuge probability, but it'll always
remain between 0 and 1.
Fig-2 : CNN Model
3. RESULTS AND ANALYSIS
This section shows us the result of the system and also
tells usthe accuracy of the system
Fig 3– Normal Event Detection.
Fig 4– Abnormal Event Detection.
Fig 5 – Hardware System and distance calculation.
Fig 6– Alerting user by sending SMS with the co-
ordinates.
Fig 7– Accuracy of the system
4. CONCLUSION
We proposed system for accident detection using CNN
Algorithm, prevention using ultrasonic sensor and reporting
system bysendingSMS.Thisprojectpresentsvehicleaccident
detection and alert system with SMS to the user defined
mobile numbers .The GPS tracking and GSM alert-based
algorithmisdesignedandimplemented.Theproposedvehicle
accidentdetectionsystemcantrack geographical information
automatically and sends analert SMSregardingaccident.The
system is successfully implemented and tested. After the
detailed experiment, itisobservedthatthissystemisefficient
and reliable.
FUTURE SCOPE
The proposed model shows high performance for video
trafficaccident detection. However, due to the paucity of such
datasets in the scientific community, the conditions under
which the model worksarelimited. Thesolution isrestricted
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2439
to vehicularcollisions, excluding motorcycles, bicycles, and
pedestrians due to the negligible number of these types of
examples available. In addition, the model has errors in
determiningaccidentsegmentswith lowillumination(suchas
nighttime videos) or low resolution and occlusion(low
quality video cameras and locations).
REFERENCES
1. Zhang, R. Q. Hu, L. M. Bruce, N. Balraj, and S. Arora,
“Development of real-time automated accident
detection system at intersections,” in 83rd Annu.
Meeting Transportation Research Board,
Washington,DC
2. sad Ali and Mohamad Eid, “An automated system
foraccident detection,” in 2015 IEEE International
Instrumentation and Measurement Technology
Conference (I2MTC) Proceedings, May 2015.
3. kman, P. Friesen, W. V, The repertoireof nonverbal
behavior : Categories, origins, usage, and coding.
Semiotica, 1, 49 98
4. ataFace Site : Facial Expressions, Emotions
Expressions, Nonverbal Communication,
Physiognomy, http://www.face-and-emotion.com
5. Traffic Accident Automatic Detection And Remote
Alarm Device - Wang Wei,Fan Hanbo
6. Automatic Messaging System for Vehicle Tracking
and Accident Detection - Rajvardhan Rishi,Sofiya
Yede,Keshav Kunal

More Related Content

Similar to Intelligent Accident Detection, Prevention and Reporting System

Ladies Compartment Intruder Alert
Ladies Compartment Intruder AlertLadies Compartment Intruder Alert
Ladies Compartment Intruder AlertIRJET Journal
 
IRJET- Emergency Navigation System using Mobile Computing
IRJET-  	  Emergency Navigation System using Mobile ComputingIRJET-  	  Emergency Navigation System using Mobile Computing
IRJET- Emergency Navigation System using Mobile ComputingIRJET Journal
 
IRJET- Offline Location Detection and Accident Indication using Mobile Sensors
IRJET- Offline Location Detection and Accident Indication using Mobile SensorsIRJET- Offline Location Detection and Accident Indication using Mobile Sensors
IRJET- Offline Location Detection and Accident Indication using Mobile SensorsIRJET Journal
 
IRJET - Examination Forgery Avoidance System using Image Processing and IoT
IRJET - Examination Forgery Avoidance System using Image Processing and IoTIRJET - Examination Forgery Avoidance System using Image Processing and IoT
IRJET - Examination Forgery Avoidance System using Image Processing and IoTIRJET Journal
 
An Enhanced Technique for Network Traffic Classification with unknown Flow De...
An Enhanced Technique for Network Traffic Classification with unknown Flow De...An Enhanced Technique for Network Traffic Classification with unknown Flow De...
An Enhanced Technique for Network Traffic Classification with unknown Flow De...IRJET Journal
 
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...
IRJET- Intrusion Detection through Image Processing and Getting Notified ...IRJET Journal
 
IRJET- IoT and ML based Smart TV for Child Eyes Safety
IRJET-  	  IoT and ML based Smart TV for Child Eyes SafetyIRJET-  	  IoT and ML based Smart TV for Child Eyes Safety
IRJET- IoT and ML based Smart TV for Child Eyes SafetyIRJET Journal
 
IRJET - Real-Time Analysis of Video Surveillance using Machine Learning a...
IRJET -  	  Real-Time Analysis of Video Surveillance using Machine Learning a...IRJET -  	  Real-Time Analysis of Video Surveillance using Machine Learning a...
IRJET - Real-Time Analysis of Video Surveillance using Machine Learning a...IRJET Journal
 
IRJET- Border Security using Computer Vision
IRJET- Border Security using Computer VisionIRJET- Border Security using Computer Vision
IRJET- Border Security using Computer VisionIRJET Journal
 
IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...
IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...
IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...IRJET Journal
 
IRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb PeopleIRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb PeopleIRJET Journal
 
IRJET- InstaMed+: Medical Assistance System for Accidents
IRJET- InstaMed+: Medical Assistance System for AccidentsIRJET- InstaMed+: Medical Assistance System for Accidents
IRJET- InstaMed+: Medical Assistance System for AccidentsIRJET Journal
 
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...IRJET Journal
 
IOT Based Smart Ambulance Monitoring System with Traffic Light Control
IOT Based Smart Ambulance Monitoring System with Traffic Light ControlIOT Based Smart Ambulance Monitoring System with Traffic Light Control
IOT Based Smart Ambulance Monitoring System with Traffic Light ControlIRJET Journal
 
Smart ID for Blind People’s
Smart ID for Blind People’sSmart ID for Blind People’s
Smart ID for Blind People’sIRJET Journal
 
IRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple SensorsIRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple SensorsIRJET Journal
 
A Review Paper on Elderly Fall Detection
A Review Paper on Elderly Fall DetectionA Review Paper on Elderly Fall Detection
A Review Paper on Elderly Fall DetectionIRJET Journal
 
IRJET- Automatic License Issuing System
IRJET-  	  Automatic License Issuing SystemIRJET-  	  Automatic License Issuing System
IRJET- Automatic License Issuing SystemIRJET Journal
 
IRJET - Accident Detection using Vehicular Ad-Hoc Network
IRJET -  	  Accident Detection using Vehicular Ad-Hoc NetworkIRJET -  	  Accident Detection using Vehicular Ad-Hoc Network
IRJET - Accident Detection using Vehicular Ad-Hoc NetworkIRJET Journal
 
Smart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind PeopleSmart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind PeopleIRJET Journal
 

Similar to Intelligent Accident Detection, Prevention and Reporting System (20)

Ladies Compartment Intruder Alert
Ladies Compartment Intruder AlertLadies Compartment Intruder Alert
Ladies Compartment Intruder Alert
 
IRJET- Emergency Navigation System using Mobile Computing
IRJET-  	  Emergency Navigation System using Mobile ComputingIRJET-  	  Emergency Navigation System using Mobile Computing
IRJET- Emergency Navigation System using Mobile Computing
 
IRJET- Offline Location Detection and Accident Indication using Mobile Sensors
IRJET- Offline Location Detection and Accident Indication using Mobile SensorsIRJET- Offline Location Detection and Accident Indication using Mobile Sensors
IRJET- Offline Location Detection and Accident Indication using Mobile Sensors
 
IRJET - Examination Forgery Avoidance System using Image Processing and IoT
IRJET - Examination Forgery Avoidance System using Image Processing and IoTIRJET - Examination Forgery Avoidance System using Image Processing and IoT
IRJET - Examination Forgery Avoidance System using Image Processing and IoT
 
An Enhanced Technique for Network Traffic Classification with unknown Flow De...
An Enhanced Technique for Network Traffic Classification with unknown Flow De...An Enhanced Technique for Network Traffic Classification with unknown Flow De...
An Enhanced Technique for Network Traffic Classification with unknown Flow De...
 
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...IRJET-  	  Intrusion Detection through Image Processing and Getting Notified ...
IRJET- Intrusion Detection through Image Processing and Getting Notified ...
 
IRJET- IoT and ML based Smart TV for Child Eyes Safety
IRJET-  	  IoT and ML based Smart TV for Child Eyes SafetyIRJET-  	  IoT and ML based Smart TV for Child Eyes Safety
IRJET- IoT and ML based Smart TV for Child Eyes Safety
 
IRJET - Real-Time Analysis of Video Surveillance using Machine Learning a...
IRJET -  	  Real-Time Analysis of Video Surveillance using Machine Learning a...IRJET -  	  Real-Time Analysis of Video Surveillance using Machine Learning a...
IRJET - Real-Time Analysis of Video Surveillance using Machine Learning a...
 
IRJET- Border Security using Computer Vision
IRJET- Border Security using Computer VisionIRJET- Border Security using Computer Vision
IRJET- Border Security using Computer Vision
 
IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...
IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...
IRJET- Smart Vehicle with Crash Detection and Emergency Vehicle Dispatch with...
 
IRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb PeopleIRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb People
 
IRJET- InstaMed+: Medical Assistance System for Accidents
IRJET- InstaMed+: Medical Assistance System for AccidentsIRJET- InstaMed+: Medical Assistance System for Accidents
IRJET- InstaMed+: Medical Assistance System for Accidents
 
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
 
IOT Based Smart Ambulance Monitoring System with Traffic Light Control
IOT Based Smart Ambulance Monitoring System with Traffic Light ControlIOT Based Smart Ambulance Monitoring System with Traffic Light Control
IOT Based Smart Ambulance Monitoring System with Traffic Light Control
 
Smart ID for Blind People’s
Smart ID for Blind People’sSmart ID for Blind People’s
Smart ID for Blind People’s
 
IRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple SensorsIRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
 
A Review Paper on Elderly Fall Detection
A Review Paper on Elderly Fall DetectionA Review Paper on Elderly Fall Detection
A Review Paper on Elderly Fall Detection
 
IRJET- Automatic License Issuing System
IRJET-  	  Automatic License Issuing SystemIRJET-  	  Automatic License Issuing System
IRJET- Automatic License Issuing System
 
IRJET - Accident Detection using Vehicular Ad-Hoc Network
IRJET -  	  Accident Detection using Vehicular Ad-Hoc NetworkIRJET -  	  Accident Detection using Vehicular Ad-Hoc Network
IRJET - Accident Detection using Vehicular Ad-Hoc Network
 
Smart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind PeopleSmart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind People
 

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

"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
 
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 ptxJIT KUMAR GUPTA
 
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 studentsvanyagupta248
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementDr. Deepak Mudgal
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdfKamal Acharya
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...josephjonse
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...ronahami
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxSCMS School of Architecture
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information SystemsAnge Felix NSANZIYERA
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...HenryBriggs2
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesChandrakantDivate1
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Ramkumar k
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network DevicesChandrakantDivate1
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdfKamal Acharya
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARKOUSTAV SARKAR
 
Augmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxAugmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxMustafa Ahmed
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 

Recently uploaded (20)

"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"
 
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
 
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
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth Reinforcement
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information Systems
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To Curves
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
Augmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxAugmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptx
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 

Intelligent Accident Detection, Prevention and Reporting System

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2436 Intelligent Accident Detection, Prevention and Reporting System Prof.S.P.Mankar1, Varda Dodke2, Samruddhi Salvi3 , Shubhangi Sanap4,Tanaya Satpute5 1 Prof. S.P.Mankar, Dept. of Information Technology ,JSCOE, Pune, Maharashtra, India 2 Varda Dodke, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India 3 Samruddhi Salvi, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India 4 Shubhangi Sanap, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India 5 Tanaya Satpute, Dept. of Information Technology, JSCOE, Pune, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract –Accidents have been a crucial cause of deaths in India. Higher than 80% of accident-related deaths occur not due to the accident itself but the lack of timely help reaching the accidentvictims. The aim is to build a system to prevent ,detect and report an accident to emergency responders. To prevent the accident we have used ultrasonic sensor to measure the distance of a vehicle by using ultrasonic sound waves. An ultrasonic sensor hasatransducertosendandreceiveultrasonicpulsesthat relay back information about the distance between the vehicles.We detect an accident based on video from a CCTV camera installed on road. Our concept is to take each frame/part of a video and run it through a deep learning convolution neural network model which has been trained to classify frames ofa videointonormaland abnormal.CNNmodelhasprovedtobeafast and accurate approach to classify images. CNN model has given accuracy's of more than 95%. The researchbeingcarried out on images and not videos. In this we detect the Accident detection or not. If theAccidentisdetectedthen system sends the SMS to police station and health care. Keywords – Accident, Accident Prevention, Accident detection, Convolution Neural Network, CCTV, frame, Ultrasonic Sensor. 1. INTRODUCTION Accident detection is oneofthekeyproblemsincomputer vision that has been studied for more than 15 years. It is importantbecauseofthesheernumberofapplicationswhich canbenefit from Accident detection. For example, Accident detection can be used in applications inclusive of video surveillance, animal tracking and behavior understanding, sign language detection, advanced human-computer interaction. Affordable depth sensors have limitations like limited to indoor use,andtheirlowresolutionandnoisedepth information makeit difficult to estimate human poses from depthimages.Thus,weplantouseneural networksalgorithms to overcome these problems. Accident detection from video surveillance isan active researchareaofimageprocessingand computer vision. By the visual surveillance, human activities can be monitored insensitive and public areas such as bus stations, railway stations, airports, banks, shopping malls, school and colleges, parking lots, roads, etc. to prevent terrorism, theft, accidents and illegal parking, vandalism, fighting, chain snatching, crime and other Accident detection. It is very challenging tokeep an eye on public placesconstantly, hence an intelligent video surveillance is required that can monitor the human activities in real time and categorizethemas normal and abnormal activities; and can initiate an alert. Mostly, the research being carried out are on images and not videos. Also, none of the papers published triesto use CNNs to detect Accident. In this project we detect the Accident detection detected or not. if the Accident detection detected then system send the SMS to police station and medical health care. 1.2 PROPOSED SYSTEM In our proposed system, we develop a system to prevent, detect and report an accident to the nearby emergency responders. The goal of our system is to provide quick response to the victim whenever the accident takes place by using deep learningalgorithms. We detect theaccidentwiththeuseofaConvolutionalNeural network model where thealgorithmwilltrainthesystemand then classify the images into normal and abnormal form wherethe normal form means no accident occurred and a normal formmeans the accident has taken place. Our device will be able to locate the accident location and send the alert message throughthe form of SMS(Short Message Service) to the nearby police stationsandmedicalhealthcareservicesto providequickhelptothe victim .
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2437 For prevention we use some onboard sensors where we connect the ultrasonic sensor to Arduino board which measures the distance between thevehiclesandalertstheuser to maintain the safe distance through which accident can be obstruct. 2. SYSTEM ARCHITECTURE The Figure 1 tells us about the system architecture of the system .It shows all the components of the system like how the system works. This system efficiently works with great accuracy because of less dependency. The system works as following :- The most widely used method for Accident detection is simplyUse video Dataset train the data set by CNN through which identification and detection of Accident are done. In this the system we use the same technique we insert the video as an input to the system then the video is converted into frames which done in preprocessing stage and then the features are extracted by putting these frames into various layers of CNN modelandthenclassificationtakesplacewhere it classifies thedata into normal and abnormal form if the frame is abnormal, itsends the alert message to the emergency responders which then the user can take appropriate We also have a hardware system which aims to prevention of accident here we have used an ultrasonic sensor, a buzzer whichis then connected to the Arduino board .This sensor uses soundnavigation ranging technique also known as sonar which has transmitterwhichsendsthesoundwaves andthereceiversendsbacktheinformationaboutthedistance about the vehicle whichis known as echo and if the distance calculated between the twovehicles is unsafe it then alerts the user by the ringing the buzzer sound. Fig -1: SYSTEM ARCHITECTURE 2.1 IMPLEMENTATION We develop a system to prevent,detectandreportanaccident to the nearby emergency responders We have used CNN (Convolutional Neural Network)which is also known as ConvNet for detection of accident. In our systemthevideoisfeededintothesystemasaninputthenthis video is converted into image frames where the images are trained using CNN algorithm where these images frames are put into some layers for featureextractionandclassificationof those images and detect the accident the figure2belowshows the layers of CNN model. We have used Convolution layer, Relu layer and Pooling layerfor feature extraction. 1. Convolution layer – This layer extracts the high levelfeatures such as edges from the input image This layer has number of filters that performs convolutionoperationsontheimage.Every matrix of the pixel values are sliding the filter matrix over the image & computing the dot product to detectthepattern. 2. Relu Layer – It isa rectifiedLinearUnitwhichanactivation function which performs the element wise operation. It is basically if your input is negative, it’s going to put it to zero. And then if it’s positive, it’s does nothing to positive values. Thisisone of the commonly used because itdoesn’t saturate inthe positive region. 3. Pooling Layer – Pooling Layer is used to progressively reducethe spatial size of the input image, so that number of computations in the network are reduced. Pooling performs down sampling by reducing the size and sends only the important data to next layers in CNN. There are mainly two types of pooling that are max pooling and average pooling butwe have specifically used max pooling as it calculates the maximum value for patches of a feature map, and uses it to create a down sampled (pooled) feature map. For classification of an image we have Flatten layer, fully connected layer and soft max function for classification of an image. 1. Flatten layer – In this layer it performs the process of converting all the resultant arrays from the pooled feature mapinto the single long continuous linear vector. 2. Fully connected layer- this layer is responsibletoperform where all the inputs from one layer are connected to every activation unit of the next layer. In this ,the last few layers are full connected layers which assembles the data obtained from the previous layers to form the final output 3. SoftMax layer – it’s an activation layer. This layer has a mathematical feature which converts a vector of numbers into avector of probabilities, .it then turns a vector of K real
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2438 values within a vector of K real values that sum to 1. The entered values can be positive, negative, zero, or greater than one, but the SoftMax converts these values in range of 0 and 1, so that they can be interpreted as probabilities. If one of the entered values is small or negative, the SoftMax turns it into a small probability, and if an entered value is large, then it turns it into ahuge probability, but it'll always remain between 0 and 1. Fig-2 : CNN Model 3. RESULTS AND ANALYSIS This section shows us the result of the system and also tells usthe accuracy of the system Fig 3– Normal Event Detection. Fig 4– Abnormal Event Detection. Fig 5 – Hardware System and distance calculation. Fig 6– Alerting user by sending SMS with the co- ordinates. Fig 7– Accuracy of the system 4. CONCLUSION We proposed system for accident detection using CNN Algorithm, prevention using ultrasonic sensor and reporting system bysendingSMS.Thisprojectpresentsvehicleaccident detection and alert system with SMS to the user defined mobile numbers .The GPS tracking and GSM alert-based algorithmisdesignedandimplemented.Theproposedvehicle accidentdetectionsystemcantrack geographical information automatically and sends analert SMSregardingaccident.The system is successfully implemented and tested. After the detailed experiment, itisobservedthatthissystemisefficient and reliable. FUTURE SCOPE The proposed model shows high performance for video trafficaccident detection. However, due to the paucity of such datasets in the scientific community, the conditions under which the model worksarelimited. Thesolution isrestricted
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2439 to vehicularcollisions, excluding motorcycles, bicycles, and pedestrians due to the negligible number of these types of examples available. In addition, the model has errors in determiningaccidentsegmentswith lowillumination(suchas nighttime videos) or low resolution and occlusion(low quality video cameras and locations). REFERENCES 1. Zhang, R. Q. Hu, L. M. Bruce, N. Balraj, and S. Arora, “Development of real-time automated accident detection system at intersections,” in 83rd Annu. Meeting Transportation Research Board, Washington,DC 2. sad Ali and Mohamad Eid, “An automated system foraccident detection,” in 2015 IEEE International Instrumentation and Measurement Technology Conference (I2MTC) Proceedings, May 2015. 3. kman, P. Friesen, W. V, The repertoireof nonverbal behavior : Categories, origins, usage, and coding. Semiotica, 1, 49 98 4. ataFace Site : Facial Expressions, Emotions Expressions, Nonverbal Communication, Physiognomy, http://www.face-and-emotion.com 5. Traffic Accident Automatic Detection And Remote Alarm Device - Wang Wei,Fan Hanbo 6. Automatic Messaging System for Vehicle Tracking and Accident Detection - Rajvardhan Rishi,Sofiya Yede,Keshav Kunal