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: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 928
Improvising Reliability of Autonomous Car using Risk detection
Naga Digvijay Kumar G1, Rupesh Reddy T2, Karthikeya Gupta P3, Ravi Kiran Y. A.4
Mr. Mohan Gowda5
1,2,3,4U.G Student, Fourth year, Department of Computer Science, GITAM School of Technology, GITAM University,
Bangalore, Karnataka
5Assistant Professor, Department of Computer Science, GITAM School of Technology, GITAM University,
Bangalore, Karnataka
---------------------------------------------------------------------***------------------------------------------------------------------
Abstract-Technology has become a catalyst in health
care system. The human reliability factor on machines has
become a very important question. As we all know
autonomous cars have moved from the future technology
to presently used technology. There is a lot more space in
the room to develop the overall system. Blending the
technology, with the correctly measured software systems
leads us to the accurate machines. In this project a micro
controller is used to communicate several different
modules to detect whether a person is going through
fatigue conditions or distracted or in a medical emergency.
When the system detects a person is going through any of
the above mentioned conditions the system control goes
from Manual mode to Auto mode and this information is
sent to caretakers and doctors.
1. INTRODUCTION
As per statics 40% of daily accidents are occurred
due to fatigue reasons. According to studies there are
more chances of getting accidents whenever driver is
distracted for more than 2 sec. The advances in the image
processing technology help us to continually observe the
user's health parameters. They provide vital information
helping us to monitor and analyze his/her state. In the era
of human life, the demand of automated cars is increasing
enormously, along with this the opportunities to minimize
on road associated risks is also increasing. The advantage
of using a drive less car is that it helps to be on road
moving even when the passenger or driver is unwilling to
drive. But there are instances where the driver will be in
control of the car and a situation arises where it would
have been better if the car was under control to avoid a
potential accident. It is this boundary which we try to
explore where our paper discusses a potential solution
which can be implemented so that the car will be able to
identify such an instance and take the appropriate actions.
The advances in image processing technology
help us to continually observe the onboard driver using
the camera on the dashboard. The collected data is
calculated and the decision is taken based on the outcome
of the system. When the system detects any abnormality in
the user behavior the system control goes to Auto mode
from Manual mode. Also, an alert message is then sent to
doctor, caretaker alerting the person’s condition.
2. Literature survey
Singh Himaji Paramar, from Govt. Engineering College,
Bharuch, has proposed his idea on Drowsy Driver Warning
System using Image Processing. Many road vehicle crashes
are occurred due to drowsiness of driver and his
distraction.
He proposed few methods which can be implemented to
detect the drowsiness of the driver. They are: Localization
of Face, Localization of Eyes using Raster Scan Algorithm,
Tracking the eyes in the subsequent frames, Detection of
drowsiness Dr.Kanniga Professor gives a solution for
monitoring the patient in any place.
This System would constantly monitor important
physical parameters like Temperature, Heartbeat, and
Pressure and would compare it against predefined value
set and if these values cross a particular limit it would
automatically alert the doctor via SMS.
T. Thanya, proposed system architecture for
continuous monitoring of heart problem patients. They
use hardware of Arduino which consist of Wi-Fi module,
Pulse Oxy Meter Sensor which combines the simple optical
heart rate sensors and noise cancellation circuitry and
through this it will get reliable pulse regarding which uses
only 4mA current and good mobile application.
As Abhinaya Balaji author catch-point's blog
mentioned his views on MQTT Protocol. It is a
publish/subscribe-based lightweight protocol for machine
communication on top of the TCP/IP Protocol. This gives a
persistent connection to their servers without killing
battery life. It offers 3- Qualities of Service Levels (QOS)
when compared to the HTTP. It has simple commands,
small headers with a compact binary headers size of 2
bytes and it offers one too many distributions.
The above existing methods make use of complex
algorithms and techniques which can also be performed
by making using of simple mathematical equations and
some image processing tools. Our proposed system
eliminates the use of heavy hardware and relies on API’s
and basic microcontrollers to obtain a system that is much
more efficient and simple.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 929
3. SYSTEM DESIGN
Fig: 1 (System Architecture)
Our system makes use of the Raspberry Pi technology as
the central component that is plugged together with all the
other modules. These other components consist of camera
module, car, and SMS technology.
The onboard camera will monitor the driver and provide
the individual frame data to the system. After this our
algorithm will work on each individual frame of the video
feed and try to identify the drowsy condition. The system
initiates a control signal to the auto-pilot unit of the
autonomous car when the drive is drowsy and hence
activates auto mode. Once the auto drive mode is activated
by our system the car is now in control and the drive will
be free from the potential risk of an accident that could
have happened if the driver was still manually controlling
the car. Along with changing the drive mode, we are also
making using of the SMS technology to send the driver's
status to registered caretakers. The sending of an SMS
from the system happens by means of using a cloud
communication website which provides us with an API
that can be added to the algorithm to get the required
service. An optional feature that can be added to our
system is to also alert the onboard driver when he is
drowsy, this can happen by means of an alarm or large
text being used to display the warning sign on the car
onboard screen.
4. IMPLEMENTATION & OBSERVATION
The facial detection and the drowsiness condition
identification is done by the utilization of OpenCV 3 and
Dlib C++ packages. OpenCV Haar Cascades are used for the
purpose of identifying a face in a frame of the video. We
make use of the Dlib package to locate certain key facial
features on a face this is done by tracing out points for
these areas as follows:
Fig: 2 (Dlib facial feature points)
The points corresponding to the eye area which are the
points that are required to implement our algorithm are as
visualized in the left top corner clip of below image:
Fig: 3 (Eye points and EAR graph plot)
The algorithm used in this project to detect if the eye facial
feature is closed or open is done by an equation called the
EAR (Eye Aspect Ratio) which is as follows:
The beauty of this equation is that as long as the eye is
open the value of the EAR equation will be almost at a
constant value, but once a person blinks (as shown in fig
3) or closes his eye the distance between the points P2-P6
and P3-P5 will decrease and the distance between the
points P1-P4 will remain large due to which as the
denominator of the equation is large and numerator is a
small value, then the value of the equation will fall
drastically. Now if we start incrementing a COUNTER
variable for every continuous frame in which the person’s
eye is closed and once this value exceeds the threshold
which we set, then our drowsy condition is met and the
necessary actions can be taken.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 930
Our secondary objective of sending a SMS to the driver’s
respective caretakers is done by making use of “Twilio” an
online cloud communications website for sending
programmable SMS , "Twilio" provides us with an API,
which can be imported into our code and lets us send
custom messages to multiple registered caretakers. Twilio
provides us with a dummy number which can be used as
the message originator. Once we create an account in
"Twilio" it provides us with an ID and an authentication
sequence which have to be added in our code, these
authentication sequences help us to register and log all the
SMS sent from the code to who all added in the account, so
as to receive messages. Twilio also provides us with a bug
or error displaying screen which can be used to identify in
which cases the messages sent have failed to which
particular persons.
5. Result and Discussion
Fig: 4 Normal condition (Eye convex open)
Once the system is running, the eye regions are
continuously monitored and hence the bounding lines
around the eye are wide open.
Fig: 5 In drowsiness state (Eye convex closed)
When drowsy condition is met, we observe that the
bounding lines also shrink and then the respective actions
are taken. Here the screen is indicating that the car is now
in auto-pilot mode.
Fig: 6 (Log of sent messages)
The above figure shows the messages which are sent by
the Twilio service. The black rectangle box in the image
shows the latest message which was sent by the system
when the driver was drowsy.
The following image shows the received message in the
phone of the person who was added as the receiver as
shown in previous log screenshot.
Fig: 7 (Message screenshot on mobile)
6. Conclusion
In this paper we have implemented a safety enhancing
feature for an autonomous car where if the driver on
board is found to be drowsy and unfit to drive then the car
automatically takes control of itself from the manual drive
mode. The use of the raspberry pi technology has provided
us with the advantage of adding this system to the car in
an easy manner and also the price required is feasible for
practical use.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 931
This technology will be especially useful for people who
stay on road for a long time or which are not getting the
required amount of rest for the number of hours spent on
road. By adding this system to a self-drive car, we exploit
that thin boundary between shifting from a manual drive
to an auto drive mandatorily when the driver's safety is at
risk. An additional function implemented is to notify the
car driver of the transition, also with addition of a message
sending facility to caretakers so that by intimating the
respective concerned people, further concern can be
provided for the driver and if any secondary attention is
need for the onboard person in the car then the caretakers
can handle it.
REFERENCES
[1] Singh Himaji Paramar et al. “Drowsy Driver Warning
System Using Image Processing” International Journal of
Engineering Development and Research
[2] Neeha Khan et al. “Fatigue Detection System Using
image processing on video sequences” International
Journal of Engineering Research and Technology.
[3] Francesso Azzola “MQTT Protocol Tutorial”
https://www.survivingwithandroid.com/2016/10/mqtt-
protocol-tutorial.html
[4]
https://www.pyimagesearch.com/2017/10/23/raspberr
y-pi-facial-landmarks-drowsiness-detection-with-opencv-
and-dlib/
[5] Miss Kanchan Manohar Sontakke “Efficient Driver
Fatigue Detection and alerting System International
Journal of Scientific and Research Publications.
[6] Vijayalaxmi, D. Elizabeth Rani, “Driver Fatigue
Estimation Using Image Processing Technique” I.J.
Information Technology and Computer Science, 2016, 6,
66-72
[7] http://blog.catchpoint.com/2017/05/30/protocol-for-
internet-of-things/
[8] T.THANYA, P.NIRMALA, “IOT BASED PATIENT LIFE
SECURE SYSTEM”, International Journal of Management
and Applied Science, Volume-3, Issue-3, Mar.-2017
[9] Gurjashan Singh Pannu et.al “Design and
Implementation of Autonomous Car using Raspberry Pi”
International Journal of Computer Applications.
[10] https://www.hivemq.com/blog/how-to-get-started-
with-mqtt
[11] Prakash Choudhary et.al “A Survey Paper On
Drowsiness Detection & Alarm System for Drivers”
International Research Journal of Engineering and
Technology (IRJET).
[12] Mohamad-Hoseyn Sigari, Mahmood Fathy, and
Mohsen Soryani "A Driver Face Monitoring System for
Fatigue and Distraction Detection" Hindawi Publishing
Corporation International Journal of Vehicular
Technology.
[13] Jay D. Fuletra, Bulari Bosamia: A Survey On Driver’s
Drowsiness Detection Techniques presented at IJRITCC
[14] VIOLA P, JONES MJ. ‘Robust real-time face detection’.
Int. J. Comput. Vision. 2004; 57: 137–154
[15] W. Horng, C. Chen, Y. Chang, et al. “Driver fatigue
detection based on eye tracking and dynamic template
matching” International Conference on Networking,
Sensing & Control. IEEE

More Related Content

What's hot

Vehicle Tracking System Android Project Report
Vehicle Tracking System Android Project ReportVehicle Tracking System Android Project Report
Vehicle Tracking System Android Project ReportSujit9561
 
Speed checker for highways
Speed checker for highwaysSpeed checker for highways
Speed checker for highwaysjishnujasin
 
Accident detection
Accident detection Accident detection
Accident detection Samana Rao
 
Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...IJCSEA Journal
 
IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...
IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...
IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...IRJET Journal
 
1. 10077 12326-1-pb
1. 10077 12326-1-pb1. 10077 12326-1-pb
1. 10077 12326-1-pbIAESIJEECS
 
Intelligent fatigue detection and automatic vehicle control system
Intelligent fatigue detection and automatic vehicle control systemIntelligent fatigue detection and automatic vehicle control system
Intelligent fatigue detection and automatic vehicle control systemijcsit
 
ACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEMACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEManand bedre
 
IRJET- No Text Driving: Android Deployment of Driver Behaviour Analysis
IRJET-  	  No Text Driving: Android Deployment of Driver Behaviour AnalysisIRJET-  	  No Text Driving: Android Deployment of Driver Behaviour Analysis
IRJET- No Text Driving: Android Deployment of Driver Behaviour AnalysisIRJET Journal
 
3. avoidance of over speed through intelligent speed breaking system edit sat
3. avoidance of over speed through intelligent speed breaking system edit sat3. avoidance of over speed through intelligent speed breaking system edit sat
3. avoidance of over speed through intelligent speed breaking system edit satIAESIJEECS
 
IRJET - Detection of False Data Injection Attacks using K-Means Clusterin...
IRJET -  	  Detection of False Data Injection Attacks using K-Means Clusterin...IRJET -  	  Detection of False Data Injection Attacks using K-Means Clusterin...
IRJET - Detection of False Data Injection Attacks using K-Means Clusterin...IRJET Journal
 
IRJET- Implementation of Smart Secure System in Motorbike using Bluetooth...
IRJET-  	  Implementation of Smart Secure System in Motorbike using Bluetooth...IRJET-  	  Implementation of Smart Secure System in Motorbike using Bluetooth...
IRJET- Implementation of Smart Secure System in Motorbike using Bluetooth...IRJET Journal
 
RescueAlert-an accident detection and rescue mechanism
RescueAlert-an accident detection and rescue mechanism RescueAlert-an accident detection and rescue mechanism
RescueAlert-an accident detection and rescue mechanism IJECEIAES
 
IRJET- Smart Helmet for Accident Prevention
IRJET- Smart Helmet for Accident PreventionIRJET- Smart Helmet for Accident Prevention
IRJET- Smart Helmet for Accident PreventionIRJET Journal
 
On Road Activity Monitoring System
On Road Activity Monitoring SystemOn Road Activity Monitoring System
On Road Activity Monitoring SystemRaj Desai
 

What's hot (20)

Vehicle Tracking System Android Project Report
Vehicle Tracking System Android Project ReportVehicle Tracking System Android Project Report
Vehicle Tracking System Android Project Report
 
S0102297102
S0102297102S0102297102
S0102297102
 
Speed checker for highways
Speed checker for highwaysSpeed checker for highways
Speed checker for highways
 
Accident detection
Accident detection Accident detection
Accident detection
 
Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...
 
IRJET- Smart Helmet
IRJET- Smart HelmetIRJET- Smart Helmet
IRJET- Smart Helmet
 
IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...
IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...
IRJET- To Develop a Distance Algorithm using Sensor Networks for Adaptive Cru...
 
1. 10077 12326-1-pb
1. 10077 12326-1-pb1. 10077 12326-1-pb
1. 10077 12326-1-pb
 
Intelligent fatigue detection and automatic vehicle control system
Intelligent fatigue detection and automatic vehicle control systemIntelligent fatigue detection and automatic vehicle control system
Intelligent fatigue detection and automatic vehicle control system
 
Ijetcas14 395
Ijetcas14 395Ijetcas14 395
Ijetcas14 395
 
ACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEMACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEM
 
IRJET- No Text Driving: Android Deployment of Driver Behaviour Analysis
IRJET-  	  No Text Driving: Android Deployment of Driver Behaviour AnalysisIRJET-  	  No Text Driving: Android Deployment of Driver Behaviour Analysis
IRJET- No Text Driving: Android Deployment of Driver Behaviour Analysis
 
Ijsrdv8 i10772
Ijsrdv8 i10772Ijsrdv8 i10772
Ijsrdv8 i10772
 
3. avoidance of over speed through intelligent speed breaking system edit sat
3. avoidance of over speed through intelligent speed breaking system edit sat3. avoidance of over speed through intelligent speed breaking system edit sat
3. avoidance of over speed through intelligent speed breaking system edit sat
 
IRJET - Detection of False Data Injection Attacks using K-Means Clusterin...
IRJET -  	  Detection of False Data Injection Attacks using K-Means Clusterin...IRJET -  	  Detection of False Data Injection Attacks using K-Means Clusterin...
IRJET - Detection of False Data Injection Attacks using K-Means Clusterin...
 
IRJET- Implementation of Smart Secure System in Motorbike using Bluetooth...
IRJET-  	  Implementation of Smart Secure System in Motorbike using Bluetooth...IRJET-  	  Implementation of Smart Secure System in Motorbike using Bluetooth...
IRJET- Implementation of Smart Secure System in Motorbike using Bluetooth...
 
RescueAlert-an accident detection and rescue mechanism
RescueAlert-an accident detection and rescue mechanism RescueAlert-an accident detection and rescue mechanism
RescueAlert-an accident detection and rescue mechanism
 
IRJET- Smart Helmet for Accident Prevention
IRJET- Smart Helmet for Accident PreventionIRJET- Smart Helmet for Accident Prevention
IRJET- Smart Helmet for Accident Prevention
 
DETECTION OF DROWSINESS AND DISTRACTION OF DRIVERS USING CNN
DETECTION OF DROWSINESS AND  DISTRACTION OF DRIVERS USING CNNDETECTION OF DROWSINESS AND  DISTRACTION OF DRIVERS USING CNN
DETECTION OF DROWSINESS AND DISTRACTION OF DRIVERS USING CNN
 
On Road Activity Monitoring System
On Road Activity Monitoring SystemOn Road Activity Monitoring System
On Road Activity Monitoring System
 

Similar to IRJET- Improvising Reliability of Autonomous Car using Risk Detection

IRJET- Smart Machine System for Virtually Impaired People
IRJET-  	  Smart Machine System for Virtually Impaired PeopleIRJET-  	  Smart Machine System for Virtually Impaired People
IRJET- Smart Machine System for Virtually Impaired PeopleIRJET Journal
 
IRJET - Driver Monitoring System
IRJET - Driver Monitoring SystemIRJET - Driver Monitoring System
IRJET - Driver Monitoring SystemIRJET Journal
 
IRJET - Smart Assistance System for Drivers
IRJET - Smart Assistance System for DriversIRJET - Smart Assistance System for Drivers
IRJET - Smart Assistance System for DriversIRJET Journal
 
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET Journal
 
IRJET - Drowsiness Detection System using ML & IP
IRJET - Drowsiness Detection System using ML & IPIRJET - Drowsiness Detection System using ML & IP
IRJET - Drowsiness Detection System using ML & IPIRJET Journal
 
IRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET Journal
 
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...IRJET Journal
 
ATM fraud detection system using machine learning algorithms
ATM fraud detection system using machine learning algorithmsATM fraud detection system using machine learning algorithms
ATM fraud detection system using machine learning algorithmsIRJET Journal
 
IRJET- Vehicle Accident Prevention System
IRJET-  	  Vehicle Accident Prevention SystemIRJET-  	  Vehicle Accident Prevention System
IRJET- Vehicle Accident Prevention SystemIRJET Journal
 
IRJET- IoT based Smart BLACK BOX System
IRJET- IoT based Smart BLACK BOX SystemIRJET- IoT based Smart BLACK BOX System
IRJET- IoT based Smart BLACK BOX SystemIRJET Journal
 
Next generation engine immobiliser
Next generation engine immobiliserNext generation engine immobiliser
Next generation engine immobilisereSAT Journals
 
IRJET- Drivers Stupor Scrutinizing System
IRJET-  	  Drivers Stupor Scrutinizing SystemIRJET-  	  Drivers Stupor Scrutinizing System
IRJET- Drivers Stupor Scrutinizing SystemIRJET Journal
 
Human Driver’s Drowsiness Detection System
Human Driver’s Drowsiness Detection SystemHuman Driver’s Drowsiness Detection System
Human Driver’s Drowsiness Detection SystemIRJET Journal
 
IRJET - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET Journal
 
IRJET- E-Gatepass System
IRJET- E-Gatepass SystemIRJET- E-Gatepass System
IRJET- E-Gatepass SystemIRJET Journal
 
IRJET- Build and Integrate Perception Features on Freescale Platform
IRJET-  	  Build and Integrate Perception Features on Freescale PlatformIRJET-  	  Build and Integrate Perception Features on Freescale Platform
IRJET- Build and Integrate Perception Features on Freescale PlatformIRJET Journal
 
Smart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewSmart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewIRJET Journal
 
DROWSINESS DETECTION MODEL USING PYTHON
DROWSINESS DETECTION MODEL USING PYTHONDROWSINESS DETECTION MODEL USING PYTHON
DROWSINESS DETECTION MODEL USING PYTHONIRJET Journal
 
IRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET Journal
 

Similar to IRJET- Improvising Reliability of Autonomous Car using Risk Detection (20)

IRJET- Smart Machine System for Virtually Impaired People
IRJET-  	  Smart Machine System for Virtually Impaired PeopleIRJET-  	  Smart Machine System for Virtually Impaired People
IRJET- Smart Machine System for Virtually Impaired People
 
IRJET - Driver Monitoring System
IRJET - Driver Monitoring SystemIRJET - Driver Monitoring System
IRJET - Driver Monitoring System
 
IRJET - Smart Assistance System for Drivers
IRJET - Smart Assistance System for DriversIRJET - Smart Assistance System for Drivers
IRJET - Smart Assistance System for Drivers
 
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
 
IRJET - Drowsiness Detection System using ML & IP
IRJET - Drowsiness Detection System using ML & IPIRJET - Drowsiness Detection System using ML & IP
IRJET - Drowsiness Detection System using ML & IP
 
IRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoT
 
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
 
ATM fraud detection system using machine learning algorithms
ATM fraud detection system using machine learning algorithmsATM fraud detection system using machine learning algorithms
ATM fraud detection system using machine learning algorithms
 
IRJET- Vehicle Accident Prevention System
IRJET-  	  Vehicle Accident Prevention SystemIRJET-  	  Vehicle Accident Prevention System
IRJET- Vehicle Accident Prevention System
 
IRJET- IoT based Smart BLACK BOX System
IRJET- IoT based Smart BLACK BOX SystemIRJET- IoT based Smart BLACK BOX System
IRJET- IoT based Smart BLACK BOX System
 
Next generation engine immobiliser
Next generation engine immobiliserNext generation engine immobiliser
Next generation engine immobiliser
 
Next generation engine immobiliser
Next generation engine immobiliserNext generation engine immobiliser
Next generation engine immobiliser
 
IRJET- Drivers Stupor Scrutinizing System
IRJET-  	  Drivers Stupor Scrutinizing SystemIRJET-  	  Drivers Stupor Scrutinizing System
IRJET- Drivers Stupor Scrutinizing System
 
Human Driver’s Drowsiness Detection System
Human Driver’s Drowsiness Detection SystemHuman Driver’s Drowsiness Detection System
Human Driver’s Drowsiness Detection System
 
IRJET - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET - Smart Traffic Management System
IRJET - Smart Traffic Management System
 
IRJET- E-Gatepass System
IRJET- E-Gatepass SystemIRJET- E-Gatepass System
IRJET- E-Gatepass System
 
IRJET- Build and Integrate Perception Features on Freescale Platform
IRJET-  	  Build and Integrate Perception Features on Freescale PlatformIRJET-  	  Build and Integrate Perception Features on Freescale Platform
IRJET- Build and Integrate Perception Features on Freescale Platform
 
Smart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewSmart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A Review
 
DROWSINESS DETECTION MODEL USING PYTHON
DROWSINESS DETECTION MODEL USING PYTHONDROWSINESS DETECTION MODEL USING PYTHON
DROWSINESS DETECTION MODEL USING PYTHON
 
IRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation System
 

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

Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture designssuser87fa0c1
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 

Recently uploaded (20)

Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture design
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 

IRJET- Improvising Reliability of Autonomous Car using Risk Detection

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 928 Improvising Reliability of Autonomous Car using Risk detection Naga Digvijay Kumar G1, Rupesh Reddy T2, Karthikeya Gupta P3, Ravi Kiran Y. A.4 Mr. Mohan Gowda5 1,2,3,4U.G Student, Fourth year, Department of Computer Science, GITAM School of Technology, GITAM University, Bangalore, Karnataka 5Assistant Professor, Department of Computer Science, GITAM School of Technology, GITAM University, Bangalore, Karnataka ---------------------------------------------------------------------***------------------------------------------------------------------ Abstract-Technology has become a catalyst in health care system. The human reliability factor on machines has become a very important question. As we all know autonomous cars have moved from the future technology to presently used technology. There is a lot more space in the room to develop the overall system. Blending the technology, with the correctly measured software systems leads us to the accurate machines. In this project a micro controller is used to communicate several different modules to detect whether a person is going through fatigue conditions or distracted or in a medical emergency. When the system detects a person is going through any of the above mentioned conditions the system control goes from Manual mode to Auto mode and this information is sent to caretakers and doctors. 1. INTRODUCTION As per statics 40% of daily accidents are occurred due to fatigue reasons. According to studies there are more chances of getting accidents whenever driver is distracted for more than 2 sec. The advances in the image processing technology help us to continually observe the user's health parameters. They provide vital information helping us to monitor and analyze his/her state. In the era of human life, the demand of automated cars is increasing enormously, along with this the opportunities to minimize on road associated risks is also increasing. The advantage of using a drive less car is that it helps to be on road moving even when the passenger or driver is unwilling to drive. But there are instances where the driver will be in control of the car and a situation arises where it would have been better if the car was under control to avoid a potential accident. It is this boundary which we try to explore where our paper discusses a potential solution which can be implemented so that the car will be able to identify such an instance and take the appropriate actions. The advances in image processing technology help us to continually observe the onboard driver using the camera on the dashboard. The collected data is calculated and the decision is taken based on the outcome of the system. When the system detects any abnormality in the user behavior the system control goes to Auto mode from Manual mode. Also, an alert message is then sent to doctor, caretaker alerting the person’s condition. 2. Literature survey Singh Himaji Paramar, from Govt. Engineering College, Bharuch, has proposed his idea on Drowsy Driver Warning System using Image Processing. Many road vehicle crashes are occurred due to drowsiness of driver and his distraction. He proposed few methods which can be implemented to detect the drowsiness of the driver. They are: Localization of Face, Localization of Eyes using Raster Scan Algorithm, Tracking the eyes in the subsequent frames, Detection of drowsiness Dr.Kanniga Professor gives a solution for monitoring the patient in any place. This System would constantly monitor important physical parameters like Temperature, Heartbeat, and Pressure and would compare it against predefined value set and if these values cross a particular limit it would automatically alert the doctor via SMS. T. Thanya, proposed system architecture for continuous monitoring of heart problem patients. They use hardware of Arduino which consist of Wi-Fi module, Pulse Oxy Meter Sensor which combines the simple optical heart rate sensors and noise cancellation circuitry and through this it will get reliable pulse regarding which uses only 4mA current and good mobile application. As Abhinaya Balaji author catch-point's blog mentioned his views on MQTT Protocol. It is a publish/subscribe-based lightweight protocol for machine communication on top of the TCP/IP Protocol. This gives a persistent connection to their servers without killing battery life. It offers 3- Qualities of Service Levels (QOS) when compared to the HTTP. It has simple commands, small headers with a compact binary headers size of 2 bytes and it offers one too many distributions. The above existing methods make use of complex algorithms and techniques which can also be performed by making using of simple mathematical equations and some image processing tools. Our proposed system eliminates the use of heavy hardware and relies on API’s and basic microcontrollers to obtain a system that is much more efficient and simple.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 929 3. SYSTEM DESIGN Fig: 1 (System Architecture) Our system makes use of the Raspberry Pi technology as the central component that is plugged together with all the other modules. These other components consist of camera module, car, and SMS technology. The onboard camera will monitor the driver and provide the individual frame data to the system. After this our algorithm will work on each individual frame of the video feed and try to identify the drowsy condition. The system initiates a control signal to the auto-pilot unit of the autonomous car when the drive is drowsy and hence activates auto mode. Once the auto drive mode is activated by our system the car is now in control and the drive will be free from the potential risk of an accident that could have happened if the driver was still manually controlling the car. Along with changing the drive mode, we are also making using of the SMS technology to send the driver's status to registered caretakers. The sending of an SMS from the system happens by means of using a cloud communication website which provides us with an API that can be added to the algorithm to get the required service. An optional feature that can be added to our system is to also alert the onboard driver when he is drowsy, this can happen by means of an alarm or large text being used to display the warning sign on the car onboard screen. 4. IMPLEMENTATION & OBSERVATION The facial detection and the drowsiness condition identification is done by the utilization of OpenCV 3 and Dlib C++ packages. OpenCV Haar Cascades are used for the purpose of identifying a face in a frame of the video. We make use of the Dlib package to locate certain key facial features on a face this is done by tracing out points for these areas as follows: Fig: 2 (Dlib facial feature points) The points corresponding to the eye area which are the points that are required to implement our algorithm are as visualized in the left top corner clip of below image: Fig: 3 (Eye points and EAR graph plot) The algorithm used in this project to detect if the eye facial feature is closed or open is done by an equation called the EAR (Eye Aspect Ratio) which is as follows: The beauty of this equation is that as long as the eye is open the value of the EAR equation will be almost at a constant value, but once a person blinks (as shown in fig 3) or closes his eye the distance between the points P2-P6 and P3-P5 will decrease and the distance between the points P1-P4 will remain large due to which as the denominator of the equation is large and numerator is a small value, then the value of the equation will fall drastically. Now if we start incrementing a COUNTER variable for every continuous frame in which the person’s eye is closed and once this value exceeds the threshold which we set, then our drowsy condition is met and the necessary actions can be taken.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 930 Our secondary objective of sending a SMS to the driver’s respective caretakers is done by making use of “Twilio” an online cloud communications website for sending programmable SMS , "Twilio" provides us with an API, which can be imported into our code and lets us send custom messages to multiple registered caretakers. Twilio provides us with a dummy number which can be used as the message originator. Once we create an account in "Twilio" it provides us with an ID and an authentication sequence which have to be added in our code, these authentication sequences help us to register and log all the SMS sent from the code to who all added in the account, so as to receive messages. Twilio also provides us with a bug or error displaying screen which can be used to identify in which cases the messages sent have failed to which particular persons. 5. Result and Discussion Fig: 4 Normal condition (Eye convex open) Once the system is running, the eye regions are continuously monitored and hence the bounding lines around the eye are wide open. Fig: 5 In drowsiness state (Eye convex closed) When drowsy condition is met, we observe that the bounding lines also shrink and then the respective actions are taken. Here the screen is indicating that the car is now in auto-pilot mode. Fig: 6 (Log of sent messages) The above figure shows the messages which are sent by the Twilio service. The black rectangle box in the image shows the latest message which was sent by the system when the driver was drowsy. The following image shows the received message in the phone of the person who was added as the receiver as shown in previous log screenshot. Fig: 7 (Message screenshot on mobile) 6. Conclusion In this paper we have implemented a safety enhancing feature for an autonomous car where if the driver on board is found to be drowsy and unfit to drive then the car automatically takes control of itself from the manual drive mode. The use of the raspberry pi technology has provided us with the advantage of adding this system to the car in an easy manner and also the price required is feasible for practical use.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 931 This technology will be especially useful for people who stay on road for a long time or which are not getting the required amount of rest for the number of hours spent on road. By adding this system to a self-drive car, we exploit that thin boundary between shifting from a manual drive to an auto drive mandatorily when the driver's safety is at risk. An additional function implemented is to notify the car driver of the transition, also with addition of a message sending facility to caretakers so that by intimating the respective concerned people, further concern can be provided for the driver and if any secondary attention is need for the onboard person in the car then the caretakers can handle it. REFERENCES [1] Singh Himaji Paramar et al. “Drowsy Driver Warning System Using Image Processing” International Journal of Engineering Development and Research [2] Neeha Khan et al. “Fatigue Detection System Using image processing on video sequences” International Journal of Engineering Research and Technology. [3] Francesso Azzola “MQTT Protocol Tutorial” https://www.survivingwithandroid.com/2016/10/mqtt- protocol-tutorial.html [4] https://www.pyimagesearch.com/2017/10/23/raspberr y-pi-facial-landmarks-drowsiness-detection-with-opencv- and-dlib/ [5] Miss Kanchan Manohar Sontakke “Efficient Driver Fatigue Detection and alerting System International Journal of Scientific and Research Publications. [6] Vijayalaxmi, D. Elizabeth Rani, “Driver Fatigue Estimation Using Image Processing Technique” I.J. Information Technology and Computer Science, 2016, 6, 66-72 [7] http://blog.catchpoint.com/2017/05/30/protocol-for- internet-of-things/ [8] T.THANYA, P.NIRMALA, “IOT BASED PATIENT LIFE SECURE SYSTEM”, International Journal of Management and Applied Science, Volume-3, Issue-3, Mar.-2017 [9] Gurjashan Singh Pannu et.al “Design and Implementation of Autonomous Car using Raspberry Pi” International Journal of Computer Applications. [10] https://www.hivemq.com/blog/how-to-get-started- with-mqtt [11] Prakash Choudhary et.al “A Survey Paper On Drowsiness Detection & Alarm System for Drivers” International Research Journal of Engineering and Technology (IRJET). [12] Mohamad-Hoseyn Sigari, Mahmood Fathy, and Mohsen Soryani "A Driver Face Monitoring System for Fatigue and Distraction Detection" Hindawi Publishing Corporation International Journal of Vehicular Technology. [13] Jay D. Fuletra, Bulari Bosamia: A Survey On Driver’s Drowsiness Detection Techniques presented at IJRITCC [14] VIOLA P, JONES MJ. ‘Robust real-time face detection’. Int. J. Comput. Vision. 2004; 57: 137–154 [15] W. Horng, C. Chen, Y. Chang, et al. “Driver fatigue detection based on eye tracking and dynamic template matching” International Conference on Networking, Sensing & Control. IEEE