SlideShare a Scribd company logo
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 795
Arduino Based Vehicle Abnormal Behavior
Detection System using Camera with SD Card
Ni Ni San Hlaing, Lae Yin Mon
Lecturer, Department of Electronic Engineering, Technological University, Kyaukse, Myanmar
How to cite this paper: Ni Ni San Hlaing |
Lae Yin Mon "Arduino Based Vehicle
Abnormal Behavior Detection System
using Camera with SD Card" Published in
International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-5, August
2019, pp.795-799,
https://doi.org/10.31142/ijtsrd26519
Copyright © 2019 by author(s) and
International Journalof Trendin Scientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
CommonsAttribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
This paper presents a device to detect the vehicle’s speed and recording the
image. The major cause of road accidentismostly caused byhuman speed. The
speed of a moving vehicle is determined by using calculation from aparticular
distance and time as an approach to estimate the vehicle speed. This systemis
designed to reduce the road accidents in the development of thevehiclespeed
detector system by using an IR sensor, Camera, 16x2 LCD, buzzer, LED and
Arduino UNO. Police stations handle this system for reducing the vehicle’s
accidents conditions. In this system, two IR LED’s transmitter and receiver
sensor pairs, which are installed on the highway 27 cm apart, with the
transmitter and the receiver of each pair on the same side of the road. The
system displays the time taken by the vehicleincrossingthedistancefrom one
pair to the other from which the speed of the vehicle is calculated. If a vehicle
exceeds the speed limit then LED is ON while the buzzing sound gives an
indication to the police stations. The camera is used for recordingthe vehicle’s
images and LCD is used to display the vehicle’s speed. Arduino UNO is the
heart of the system, which controls all the function of the circuit.
KEYWORDS: Arduino UNO, IR sensor, Camera, 16x2 LCD, buzzer, LED
I. INTRODUCTION
Speeding has been implicated as a major contributing factor
in all fatal motor vehicle crashes. Car speed detection
systems have been implemented worldwide. Nowadays,
people are driving very fast; accidents are occurring
frequently they lost their valuable life by making a small
mistake while driving (school zone, hills area, and
highways). So, this system is used to avoid such kind of
accidents and alert the drivers and to control their vehicle
speed. If driving on highways, motorists are not exceeding
the maximum speed limit permitted for their vehicle.
II. System Block Diagram
In the block diagram, this paper is divided into two parts:
speed detection and image recording. In this thesis, IR
sensors, 16x2 LCD, camera, Arduino UNO are used. The
purpose system checks rash driving by calculationthespeed
of the vehicles between the two setpointsplaced on theroad
at a certain distance. Two IR sensors are placed apartonone
side of the road. Both IR sensors are connected to the
interrupt pin of Arduino and they detect the falling wave. If
the car moves in front of the first sensor, it gives the output
signal to Arduino. Arduino detects the falling wave and now
the internal timer of Arduino is started. Then the car moves
in front of the second sensor, the timer is stopped. Vehicle
speed is calculated by using a simple distance-time
relationship. LCD is connected to Arduino and measured
speed is shown on LCD. If the vehicle exceeds thespeed limit
then LED is ON while the buzzing sound gives indications to
the police. The camera is used to record the image and to
store the image in the memory card.
Fig1: Overall Block Diagram of Vehicle Abnormal
Behavior Detection System
The algorithm used in the flowchart.
Step1: Start.
Step2: Set liquid crystal display (LCD) that means
measured speed is shown on LCD.
Step3: Set the two IR sensors for sensing the vehicle.
Step4: Check the first IR sensor for the arrival of the
vehicle. If the vehicle arrives to go to step5
otherwise step4.
IJTSRD26519
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 796
Step5: Get the first IR sensor time in millis.
Step6: Check the second IR sensor for the arrival of the
vehicle. If the vehicle arrives to go to step7
otherwise step6.
Step7: Get the second IR sensor time in millis.
Step8: Check the first IR sensor time and the second IR
sensor time are not equal to zero. If the IR sensors
times are not equal to zero go to step9 otherwise
print “OK” on LCD and step4.
Step9: Check the time1 greater than the time2. If the time1
greater than the time2 go to step10, step12 and
step13 otherwise step11.
Step10: Subtraction the time1 and the time2.
Step11: Subtraction the time2 and the time1.
Step12: Calculate the speed of the vehicles in cm/s.
Step13: Convert the speed of the vehiclefrom cm/stokm/h.
Step14: Check the speed of the vehicle greater than 8 km/h.
If the speed of the vehicle greater than the 8 km/h
go to step15 otherwise step16.
Step15: Print speed value on LCD and Buzzer and LED ON
for 3 seconds.
Step16: Print speed value on LCD for 3 seconds.
Step17: Go to step4.
Step18: Exit.
Fig 2: Flowchart of Vehicle Abnormal Behavior
Detection System
III. Implementation
A. Software Implementation for IR Sensor
The software programming language for the IR sensor is
very simple. The setup function will followthedeclaration of
IR pins are input by using to set pinMode.
pinMode(2, INPUT);
pinMode(3, INPUT);
The loop function includes the code to be executed
continuously reading the IR pins. Firstly, check the first IR
sensor for the arrival of the vehicle. If the vehicle is arrived
the time1 get in millisec. Moreover, check the second IR
sensor for the arrival of the vehicle. If the vehicle arrives the
time 2 gets in millisec.
if (digitalRead(2)==0)
first_sensor_time=millis();
if (digitalRead(3)==0)
second_sensor_time=millis();
B. Software Implementation for Code Explanation of
Vehicle Abnormal Behavior Detector Sketch
At the beginning of the code a header file is declared by
name LiquidCrystal.h which is used for the LCD display. In
the next line pins of LCD are declared in the function “Liquid
Crystal Display (LCD) (4, 5, 6, 7, 8, 9)”, number in thebracket
shows the pins of Arduino pins that are connected to the
LCD. Inline 3 and 2 two integers are declared by the name
sensor1 and sensor2, these are pins of Arduino that are
connected to the IR sensors. After it 4 integers are declared
by the name first sensor time, second sensor time,difference
and float second1, second2. Where the first sensor time is
the measured time if sensor1 is activated and the second
sensor time is the measured time if sensor2 is activated.The
difference is the difference of first sensor time and second
sensor time, which is equivalent to the time taken by car to
go from sensor1 to sensor2 or sensor2 to sensor1. The float
is declared by name second1 and second2 that is measured
the time from the sensors. Now double is declared by name
speed that is the measured speed of the running car. And
then, inline 10 and 11 two integers are declared bythename
of buzzer and LED, these are pins of Arduino that are
connected to the buzzer and LED.In the void setup( )
function, LCD is being by using lcd.begin(16,2)function.LCD
is cleared by using the lcd.clear( ) function and SPEED
MEASUREMENT is printed on LCD by using the function
“LCD.print”. After it 4 integers are declared by the name
pinMode(2, INPUT), pinMode(3, INPUT), pinMode(buzzer,
OUTPUT)and pinMode(light, OUTPUT). First IR sensor is
declared input by using the pinMode(3,INPUT)functionand
second IR sensor is declared input by using the pinMode(2,
INPUT) function. The buzzer is declared output by using the
pinMode(buzzer, OUTPUT) function and LED is declared
output by using the pinMode(light, OUTPUT)function.Inthe
void loop( ) function, “if”, “else if” and “else conditions” are
used for checking. Firstly, checking a first IR sensor is high
by using “if” condition and if the first IR sensor is high get
time in millisec. Checking the second IR sensor is high by
using “if” condition and if the second IR sensor is high get
time in millisec. Secondly, checking first sensor time and
second sensor time is not equal to zero by using “if”
condition. If the first sensor time and second sensortimeare
not equal to zero, checking first sensor time greater thanthe
second sensor time by using “if” condition. If the first sensor
time greater than the second sensor time, first sensor time
subtract the second sensor time in the difference and
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 797
calculate the speed in the distance and time relationship
formula. Speed convert (cm/s) to (km/h). Checking second
sensor time greater than the first sensor time by using “else
if” condition. If the second sensor time greater than the first
sensor time, second sensor time subtract the first sensor
time in the difference. Speed is printed on LCD by using
lcd.print function. Checking speed greater than the defined
speed by using “if” condition. If speed greater than the
defined speed, buzzer and LED are high. If speed less than
the defined speed by using “else” condition, buzzer and LED
are low. If the first sensor time and second sensor time are
equal to zero by using “else” condition, OK is printed on LCD
by using lcd.print function.
C. Hardware Implementation for Circuit Diagram of
Vehicle Abnormal Behavior Detection System
Fig 3: Overall Circuit Diagram of the system
This circuit is constructed with three main sections.Thefirst
section is IR sensors which are the input section. Thesecond
one is LCD which is the output section. And thelastoneisthe
microcontroller Arduino UNO. Two IR sensors are placed
together apart on one side of the road. The system basically
comprises two IR LED’s transmitter and receiver sensor
pairs, which are installed on the highway 27 cm apart, with
the transmitter and the receiver of each pair on the same
side of the road. Using the timer, select the speed limit 8
km/h for the restriction area. The system displays the time
taken by the vehicle in crossing the distancefrom onepair to
the other from which the speed of the vehicle is calculated.
Arduino UNO is the heart of the system, which controls all
the function of the circuit. If the vehicle arrives at the first IR
sensor, the first sensor senses this coming vehicle. The first
IR sensor gets a signal. This signal sends to the
microcontroller. Arduino detects the falling waves and now
internal timer of Arduino is started. Then the vehicle is
crossing in front of the second sensor, the timer is stopped.
Both IR sensors are connected to the interrupt pin of
Arduino, and they detect the falling wave. The
microcontroller is programmed by using C programming
that calculates the time duration between two sensors,
corresponding gives the speed. Now vehicle’s speed is
calculated by using a simple time-distance relationship.This
system speed is calculated in cm/s. And then, speed cm/s
convert speed km/h by using the formula. LCD is connected
to the Arduino and measured speed is shown on the LCD
display. If the vehicle exceeds the speed limit then the LED
gets ON while the buzzing sound gives an indication to the
polices that the vehicle is crossing the speed limits. The
camera is used to capture the video recording of that vehicle
between both IR sensors. The camera includes the SD card
for storing the video recording.
D. Hardware Implementation for Vehicle Abnormal
Behavior Detector Process
Fig 4: Vehicle Abnormal Behavior Detector Process
Figure 4: show vehicle abnormal behavior detector process.
In this process, two IR sensors are used to detect the vehicle
for getting time between the two IR sensors. If the first IR
sensor arrives the vehicle, it gets time inmillisec.Andthen,if
the second IR sensor also arrives the vehicle, it gets time in
millisec. Checking first sensortimeandsecond sensortimeis
not equal to zero. If the first sensor time and second sensor
time are not equal to zero and if first sensor time greater
than the second sensor time, first sensor time subtract the
second sensor time in the difference. If the second sensor
time greater than the first sensor time, second sensor time
subtract first sensor time indifference. And then, speed is
calculated in the distance and time relationship formula.
After it, speed (cm/s) convert to speed (km/h). Speed
(km/h) printed on LCD. If speed greater than the defined
speed, buzzer and LED ON. This process is ending.
E. Speed measurement of vehicle abnormal behavior
detector system
This system comprises two IR sensor pairs, which are
installed apart on one side of the road. The system displays
the time taken by the vehicle in crossing this 10 cm distance
from one pair to the other with delay time is 200 millisec
from which the speed of the vehicle is calculated as follows;
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 798
Speed = Equation (1)
Distance = 10 cm
Delay Time = 200 millisec
= 200 10-3 sec
Speed (cm/s) = (10 1000)/200
= 50 cm/s
Speed (km/h) = Speed (cm/s) 0.036
= 1.8 km/h
The speed of the vehicle is 1.8 km/h. In this saturation, the
buzzer and LED are not alarmed. The distance between two
sensors is 27 cm and delay time is 30 millisecfromwhich the
speed of the vehicle is calculated as follows;
Distance = 27 cm
Delay Time = 30 millisec
= 30 10-3 sec
Speed (cm/s) = (27 1000)/30
= 900 cm/s
Speed (km/h) = Speed (cm/s) 0.036
= 32.4 km/h
The speed of the vehicle is 32.4 km/h. In this saturation, the
buzzer and LED are alarmed to the police station. The
distance between two sensors is 30 cm and delay time is 15
millisecond from which the speed of the vehicle is calculated
as follows;
Distance = 30 cm
Delay Time = 15 millisec
=15 10-3 sec
Speed (cm/s) = (30 1000)/15
= 2000 cm/s
Speed (km/h) = Speed (cm/s) 0.036
= 72 km/h
The speed of the vehicle is 72 km/h. In this situation, the
buzzer and LED are alarmed to the police station.
IV. Results
If the vehicle is not crossing the two IR sensor, the operation
is performed according to the code on LCD was displaying
“SPEED MEASUREMENT OK”. In this system, two IR sensors
are crossing the vehicle and then the vehicle’s speed is
shown on LCD and if the vehicle crosses the speed limit and
then buzzer and LED sound alerting the police.
Fig 5: Results for the Active System
In this result, the vehicle crosses the speed limit and then
buzzer and LED sound alerting and this speed is shown on
LCD.
Fig: 6. Vehicle’s Abnormal Speed Print on LCD
Fig: 7. Results for Buzzer and LED
Fig:8. Vehicle’s Normal Speed Print on LCD
V. Conclusion
This paper is presented vehicle abnormal behavior detector
system, which is detected using two IR sensors in order to
detect the speed of the vehicle. So, this proposed system
check on rash driving by calculating the speed of a vehicle
using the time taken to travel between thetwosetpoints ata
fixed distance. The police perform their duties while sitting
in the control room and provide theirservicewith moreease
and accuracy. The aim and objectives of the system have
been covered during the system implementation. The
proposed design fulfills the aim and objectives of the system
and implemented for detection the vehicle speed. The
proposed system requires installing the hardware system
besides the roads for detecting the vehicle speed and
notifying it to police stations. Hardware and software
required for this thesis is also being research thoroughly. All
the hardware has been testedbeforeimplementation andC#
programming language have been learned duringthis paper.
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 799
Code had been written in C language for controlling the
overall system which was uploaded to the microcontroller.
While driving on highways, drivers are not exceeding the
maximum speed limit permitted for their vehicles. In
particular, the system relies on the microcontroller todetect
vehicle speed. Car speed detector system involves three
parts. In the first portion, two IR sensors are used for
detecting the speed of the vehicle by using a simple time-
distance relationship. In the second portion, if the vehicle
crosses the speed limit and then buzzer and LED sound
alerting the police stations. The camera is capturing the
video recording of the vehicle in the third portion. The
advantage of this proposed car speed detector systemisthat
it comes handy for the highway traffic police as it provides a
digital display in accordance with a vehicle’s speed and it is
also sound an alarm if the vehicle exceeds the permissible
speed for the highway. By applying the idea of this paper the
police stations easily detect the vehicle’s speed.
VI. REFERENCES
[1] https://learn.sparkfun.com/tutorial/what –is –an –
Arduino.
[2] Anonymous: IR LED/ Infrared LED/ Infrared Sensor,
(2017). http:// electronicsforu.com/learn-electronics/
ir-led-infrared sensor.
[3] John: Car Speed Detector Using Arduino, (2018).
[4] Anonymous: IR Sensor for Obstacle Avoidance KY-032
(AD-32A), (2016). http://irsensor.wi zecode .com.
[5] Tarun, A.: Construction and Working Principle of LCD
Display, (2016).
[6] Anonymous:Camera,(2015).
https://en.m.wikipedia.org/w/index.php?Title=Camer
a&action=edit&section=1.
[7] Anonymous: IR (Infrared) Obstacle Detection Sensor,
(2015). http://www.electronichub.org/ir-sensor.
[8] Monika, P. N. A.: Detection of Over Speeding Vehicles
on Highways, 613-619, (2015).
[9] Shumsudin, N. A.: Speed Warning System Using Solar
Power, 431-438, (2015).
[10] Joshue, F. A.: An RFID-Based Intelligent Vehicle Speed
Controller Using Active Traffic Signals, 5872-58887,
(2010).

More Related Content

What's hot

Vehicle accident detection and messaging system using GSM and arduino
Vehicle accident detection and messaging system using GSM and arduinoVehicle accident detection and messaging system using GSM and arduino
Vehicle accident detection and messaging system using GSM and arduino
Ramesh Reddy
 
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera) Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Emmanuel Oshogwe Akpeokhai
 
Traffic light controller
Traffic light controllerTraffic light controller
Traffic light controllernimmi_abes
 
Railway Accident Avoiding System: A Safety Measure
Railway Accident Avoiding System: A Safety MeasureRailway Accident Avoiding System: A Safety Measure
Railway Accident Avoiding System: A Safety Measure
Yantralive Parts Technology Pvt. Ltd
 
Automatic fire fighting robot
Automatic fire fighting robotAutomatic fire fighting robot
Automatic fire fighting robot
MaulikGoyani5
 
Traffic voilation detection in videos
Traffic voilation detection in videosTraffic voilation detection in videos
Traffic voilation detection in videos
ANIKETIITBBS
 
Power Presentation On Railway Track Fault Detector
Power Presentation On Railway Track Fault DetectorPower Presentation On Railway Track Fault Detector
Power Presentation On Railway Track Fault Detector
NEERAJ SINGH
 
smart helmet
smart helmetsmart helmet
smart helmet
Venkata Krishna
 
Speed cameras ppt full ...
Speed cameras ppt full ...Speed cameras ppt full ...
Speed cameras ppt full ...
Girija Sankar Dash
 
anti theft alarm for bikes by vinod and venu
anti theft alarm for bikes by vinod and venuanti theft alarm for bikes by vinod and venu
anti theft alarm for bikes by vinod and venu
venu13
 
Speed detection-of-moving-vehicle-using-speed-cameras
Speed detection-of-moving-vehicle-using-speed-camerasSpeed detection-of-moving-vehicle-using-speed-cameras
Speed detection-of-moving-vehicle-using-speed-cameras
VIKAS SINGH BHADOURIA
 
Automatic light control using PIR sensor
Automatic light control using PIR sensorAutomatic light control using PIR sensor
Automatic light control using PIR sensor
Krishna Prajapati
 
Induction Loop Vehicle Detector and Counter
Induction Loop Vehicle Detector and CounterInduction Loop Vehicle Detector and Counter
Induction Loop Vehicle Detector and Counter
Towfiqur Rahman
 
Design of Arduino based fire fighting Robot
Design of Arduino based fire fighting RobotDesign of Arduino based fire fighting Robot
Design of Arduino based fire fighting Robot
Nilanjan Mandal
 
Automatic railway gate control
Automatic railway gate controlAutomatic railway gate control
Automatic railway gate control
Parth Akbari
 
Fingerprint Based Security System
Fingerprint Based Security SystemFingerprint Based Security System
Fingerprint Based Security System
Trijendra Singh
 
Biometric Sensors
Biometric SensorsBiometric Sensors
Biometric Sensorsparmsidhu
 
Line follower robot
Line follower robotLine follower robot
Line follower robotPriya Hada
 
Vehicle Speed detecter By PRAGYA AGARWAL
Vehicle Speed detecter By PRAGYA AGARWALVehicle Speed detecter By PRAGYA AGARWAL
Vehicle Speed detecter By PRAGYA AGARWAL
iamtheone5
 
IoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular TrafficIoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular Traffic
Mphasis
 

What's hot (20)

Vehicle accident detection and messaging system using GSM and arduino
Vehicle accident detection and messaging system using GSM and arduinoVehicle accident detection and messaging system using GSM and arduino
Vehicle accident detection and messaging system using GSM and arduino
 
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera) Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
Speed Detection Of Moving Vehicles (Using Traffic Enforcement Camera)
 
Traffic light controller
Traffic light controllerTraffic light controller
Traffic light controller
 
Railway Accident Avoiding System: A Safety Measure
Railway Accident Avoiding System: A Safety MeasureRailway Accident Avoiding System: A Safety Measure
Railway Accident Avoiding System: A Safety Measure
 
Automatic fire fighting robot
Automatic fire fighting robotAutomatic fire fighting robot
Automatic fire fighting robot
 
Traffic voilation detection in videos
Traffic voilation detection in videosTraffic voilation detection in videos
Traffic voilation detection in videos
 
Power Presentation On Railway Track Fault Detector
Power Presentation On Railway Track Fault DetectorPower Presentation On Railway Track Fault Detector
Power Presentation On Railway Track Fault Detector
 
smart helmet
smart helmetsmart helmet
smart helmet
 
Speed cameras ppt full ...
Speed cameras ppt full ...Speed cameras ppt full ...
Speed cameras ppt full ...
 
anti theft alarm for bikes by vinod and venu
anti theft alarm for bikes by vinod and venuanti theft alarm for bikes by vinod and venu
anti theft alarm for bikes by vinod and venu
 
Speed detection-of-moving-vehicle-using-speed-cameras
Speed detection-of-moving-vehicle-using-speed-camerasSpeed detection-of-moving-vehicle-using-speed-cameras
Speed detection-of-moving-vehicle-using-speed-cameras
 
Automatic light control using PIR sensor
Automatic light control using PIR sensorAutomatic light control using PIR sensor
Automatic light control using PIR sensor
 
Induction Loop Vehicle Detector and Counter
Induction Loop Vehicle Detector and CounterInduction Loop Vehicle Detector and Counter
Induction Loop Vehicle Detector and Counter
 
Design of Arduino based fire fighting Robot
Design of Arduino based fire fighting RobotDesign of Arduino based fire fighting Robot
Design of Arduino based fire fighting Robot
 
Automatic railway gate control
Automatic railway gate controlAutomatic railway gate control
Automatic railway gate control
 
Fingerprint Based Security System
Fingerprint Based Security SystemFingerprint Based Security System
Fingerprint Based Security System
 
Biometric Sensors
Biometric SensorsBiometric Sensors
Biometric Sensors
 
Line follower robot
Line follower robotLine follower robot
Line follower robot
 
Vehicle Speed detecter By PRAGYA AGARWAL
Vehicle Speed detecter By PRAGYA AGARWALVehicle Speed detecter By PRAGYA AGARWAL
Vehicle Speed detecter By PRAGYA AGARWAL
 
IoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular TrafficIoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular Traffic
 

Similar to Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD Card

Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using MicrocontrollerFour IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
ijtsrd
 
IRJET- IoT based Adaptive Traffic Monitoring
IRJET- IoT based Adaptive Traffic MonitoringIRJET- IoT based Adaptive Traffic Monitoring
IRJET- IoT based Adaptive Traffic Monitoring
IRJET Journal
 
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET Journal
 
Implementation of Doppler Radar Based Vehicle Speed Detection System
Implementation of Doppler Radar Based Vehicle Speed Detection SystemImplementation of Doppler Radar Based Vehicle Speed Detection System
Implementation of Doppler Radar Based Vehicle Speed Detection System
ijtsrd
 
IRJET- Accident Detection and Monitoring System using IoT
IRJET-  	  Accident Detection and Monitoring System using IoTIRJET-  	  Accident Detection and Monitoring System using IoT
IRJET- Accident Detection and Monitoring System using IoT
IRJET Journal
 
Automatic Intelligent Traffic Controller and Operation Mode
Automatic Intelligent Traffic Controller and Operation ModeAutomatic Intelligent Traffic Controller and Operation Mode
Automatic Intelligent Traffic Controller and Operation Mode
IRJET Journal
 
IRJET- Automatic Gate Control and Parking System using AVR Controller
IRJET- Automatic Gate Control and Parking System using AVR ControllerIRJET- Automatic Gate Control and Parking System using AVR Controller
IRJET- Automatic Gate Control and Parking System using AVR Controller
IRJET Journal
 
IRJET- Advanced Safety Sytem for the Vehicles
IRJET-  	  Advanced Safety Sytem for the VehiclesIRJET-  	  Advanced Safety Sytem for the Vehicles
IRJET- Advanced Safety Sytem for the Vehicles
IRJET Journal
 
IRJET - Smart Traffic Signal Monitoring & Controlling using IoT
IRJET -  	  Smart Traffic Signal Monitoring & Controlling using IoTIRJET -  	  Smart Traffic Signal Monitoring & Controlling using IoT
IRJET - Smart Traffic Signal Monitoring & Controlling using IoT
IRJET Journal
 
IRJET- Driver State Monitoring System and Vehicle Control
IRJET- Driver State Monitoring System and Vehicle ControlIRJET- Driver State Monitoring System and Vehicle Control
IRJET- Driver State Monitoring System and Vehicle Control
IRJET 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- Automatic Vehicle Beam Control System
IRJET-  	  Automatic Vehicle Beam Control SystemIRJET-  	  Automatic Vehicle Beam Control System
IRJET- Automatic Vehicle Beam Control System
IRJET 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
 
IRJET - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET - Smart Traffic Management System
IRJET - Smart Traffic Management System
IRJET Journal
 
Anti-Smog Radar Application for Vehicles
Anti-Smog Radar Application for VehiclesAnti-Smog Radar Application for Vehicles
Anti-Smog Radar Application for Vehicles
IJMREMJournal
 
WIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORING
WIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORINGWIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORING
WIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORING
IRJET Journal
 
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
ijtsrd
 
IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...
IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...
IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...
IRJET Journal
 
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET Journal
 
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET Journal
 

Similar to Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD Card (20)

Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using MicrocontrollerFour IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
 
IRJET- IoT based Adaptive Traffic Monitoring
IRJET- IoT based Adaptive Traffic MonitoringIRJET- IoT based Adaptive Traffic Monitoring
IRJET- IoT based Adaptive Traffic Monitoring
 
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...
 
Implementation of Doppler Radar Based Vehicle Speed Detection System
Implementation of Doppler Radar Based Vehicle Speed Detection SystemImplementation of Doppler Radar Based Vehicle Speed Detection System
Implementation of Doppler Radar Based Vehicle Speed Detection System
 
IRJET- Accident Detection and Monitoring System using IoT
IRJET-  	  Accident Detection and Monitoring System using IoTIRJET-  	  Accident Detection and Monitoring System using IoT
IRJET- Accident Detection and Monitoring System using IoT
 
Automatic Intelligent Traffic Controller and Operation Mode
Automatic Intelligent Traffic Controller and Operation ModeAutomatic Intelligent Traffic Controller and Operation Mode
Automatic Intelligent Traffic Controller and Operation Mode
 
IRJET- Automatic Gate Control and Parking System using AVR Controller
IRJET- Automatic Gate Control and Parking System using AVR ControllerIRJET- Automatic Gate Control and Parking System using AVR Controller
IRJET- Automatic Gate Control and Parking System using AVR Controller
 
IRJET- Advanced Safety Sytem for the Vehicles
IRJET-  	  Advanced Safety Sytem for the VehiclesIRJET-  	  Advanced Safety Sytem for the Vehicles
IRJET- Advanced Safety Sytem for the Vehicles
 
IRJET - Smart Traffic Signal Monitoring & Controlling using IoT
IRJET -  	  Smart Traffic Signal Monitoring & Controlling using IoTIRJET -  	  Smart Traffic Signal Monitoring & Controlling using IoT
IRJET - Smart Traffic Signal Monitoring & Controlling using IoT
 
IRJET- Driver State Monitoring System and Vehicle Control
IRJET- Driver State Monitoring System and Vehicle ControlIRJET- Driver State Monitoring System and Vehicle Control
IRJET- Driver State Monitoring System and Vehicle Control
 
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- Automatic Vehicle Beam Control System
IRJET-  	  Automatic Vehicle Beam Control SystemIRJET-  	  Automatic Vehicle Beam Control System
IRJET- Automatic Vehicle Beam Control System
 
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 - Smart Traffic Management System
IRJET - Smart Traffic Management SystemIRJET - Smart Traffic Management System
IRJET - Smart Traffic Management System
 
Anti-Smog Radar Application for Vehicles
Anti-Smog Radar Application for VehiclesAnti-Smog Radar Application for Vehicles
Anti-Smog Radar Application for Vehicles
 
WIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORING
WIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORINGWIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORING
WIRELESS BLOCK BOX USING FOR DRIVER SAFTEY AND VEHICLE ACCIDENTAL MONITORING
 
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
 
IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...
IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...
IRJET - Avoidance of Collision between Vehicles through Li-Fi based Communica...
 
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
 
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
ijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
ijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
ijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
ijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
ijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
ijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
ijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
PedroFerreira53928
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
Celine George
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 

Recently uploaded (20)

Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 

Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD Card

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 795 Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD Card Ni Ni San Hlaing, Lae Yin Mon Lecturer, Department of Electronic Engineering, Technological University, Kyaukse, Myanmar How to cite this paper: Ni Ni San Hlaing | Lae Yin Mon "Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD Card" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019, pp.795-799, https://doi.org/10.31142/ijtsrd26519 Copyright © 2019 by author(s) and International Journalof Trendin Scientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative CommonsAttribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT This paper presents a device to detect the vehicle’s speed and recording the image. The major cause of road accidentismostly caused byhuman speed. The speed of a moving vehicle is determined by using calculation from aparticular distance and time as an approach to estimate the vehicle speed. This systemis designed to reduce the road accidents in the development of thevehiclespeed detector system by using an IR sensor, Camera, 16x2 LCD, buzzer, LED and Arduino UNO. Police stations handle this system for reducing the vehicle’s accidents conditions. In this system, two IR LED’s transmitter and receiver sensor pairs, which are installed on the highway 27 cm apart, with the transmitter and the receiver of each pair on the same side of the road. The system displays the time taken by the vehicleincrossingthedistancefrom one pair to the other from which the speed of the vehicle is calculated. If a vehicle exceeds the speed limit then LED is ON while the buzzing sound gives an indication to the police stations. The camera is used for recordingthe vehicle’s images and LCD is used to display the vehicle’s speed. Arduino UNO is the heart of the system, which controls all the function of the circuit. KEYWORDS: Arduino UNO, IR sensor, Camera, 16x2 LCD, buzzer, LED I. INTRODUCTION Speeding has been implicated as a major contributing factor in all fatal motor vehicle crashes. Car speed detection systems have been implemented worldwide. Nowadays, people are driving very fast; accidents are occurring frequently they lost their valuable life by making a small mistake while driving (school zone, hills area, and highways). So, this system is used to avoid such kind of accidents and alert the drivers and to control their vehicle speed. If driving on highways, motorists are not exceeding the maximum speed limit permitted for their vehicle. II. System Block Diagram In the block diagram, this paper is divided into two parts: speed detection and image recording. In this thesis, IR sensors, 16x2 LCD, camera, Arduino UNO are used. The purpose system checks rash driving by calculationthespeed of the vehicles between the two setpointsplaced on theroad at a certain distance. Two IR sensors are placed apartonone side of the road. Both IR sensors are connected to the interrupt pin of Arduino and they detect the falling wave. If the car moves in front of the first sensor, it gives the output signal to Arduino. Arduino detects the falling wave and now the internal timer of Arduino is started. Then the car moves in front of the second sensor, the timer is stopped. Vehicle speed is calculated by using a simple distance-time relationship. LCD is connected to Arduino and measured speed is shown on LCD. If the vehicle exceeds thespeed limit then LED is ON while the buzzing sound gives indications to the police. The camera is used to record the image and to store the image in the memory card. Fig1: Overall Block Diagram of Vehicle Abnormal Behavior Detection System The algorithm used in the flowchart. Step1: Start. Step2: Set liquid crystal display (LCD) that means measured speed is shown on LCD. Step3: Set the two IR sensors for sensing the vehicle. Step4: Check the first IR sensor for the arrival of the vehicle. If the vehicle arrives to go to step5 otherwise step4. IJTSRD26519
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 796 Step5: Get the first IR sensor time in millis. Step6: Check the second IR sensor for the arrival of the vehicle. If the vehicle arrives to go to step7 otherwise step6. Step7: Get the second IR sensor time in millis. Step8: Check the first IR sensor time and the second IR sensor time are not equal to zero. If the IR sensors times are not equal to zero go to step9 otherwise print “OK” on LCD and step4. Step9: Check the time1 greater than the time2. If the time1 greater than the time2 go to step10, step12 and step13 otherwise step11. Step10: Subtraction the time1 and the time2. Step11: Subtraction the time2 and the time1. Step12: Calculate the speed of the vehicles in cm/s. Step13: Convert the speed of the vehiclefrom cm/stokm/h. Step14: Check the speed of the vehicle greater than 8 km/h. If the speed of the vehicle greater than the 8 km/h go to step15 otherwise step16. Step15: Print speed value on LCD and Buzzer and LED ON for 3 seconds. Step16: Print speed value on LCD for 3 seconds. Step17: Go to step4. Step18: Exit. Fig 2: Flowchart of Vehicle Abnormal Behavior Detection System III. Implementation A. Software Implementation for IR Sensor The software programming language for the IR sensor is very simple. The setup function will followthedeclaration of IR pins are input by using to set pinMode. pinMode(2, INPUT); pinMode(3, INPUT); The loop function includes the code to be executed continuously reading the IR pins. Firstly, check the first IR sensor for the arrival of the vehicle. If the vehicle is arrived the time1 get in millisec. Moreover, check the second IR sensor for the arrival of the vehicle. If the vehicle arrives the time 2 gets in millisec. if (digitalRead(2)==0) first_sensor_time=millis(); if (digitalRead(3)==0) second_sensor_time=millis(); B. Software Implementation for Code Explanation of Vehicle Abnormal Behavior Detector Sketch At the beginning of the code a header file is declared by name LiquidCrystal.h which is used for the LCD display. In the next line pins of LCD are declared in the function “Liquid Crystal Display (LCD) (4, 5, 6, 7, 8, 9)”, number in thebracket shows the pins of Arduino pins that are connected to the LCD. Inline 3 and 2 two integers are declared by the name sensor1 and sensor2, these are pins of Arduino that are connected to the IR sensors. After it 4 integers are declared by the name first sensor time, second sensor time,difference and float second1, second2. Where the first sensor time is the measured time if sensor1 is activated and the second sensor time is the measured time if sensor2 is activated.The difference is the difference of first sensor time and second sensor time, which is equivalent to the time taken by car to go from sensor1 to sensor2 or sensor2 to sensor1. The float is declared by name second1 and second2 that is measured the time from the sensors. Now double is declared by name speed that is the measured speed of the running car. And then, inline 10 and 11 two integers are declared bythename of buzzer and LED, these are pins of Arduino that are connected to the buzzer and LED.In the void setup( ) function, LCD is being by using lcd.begin(16,2)function.LCD is cleared by using the lcd.clear( ) function and SPEED MEASUREMENT is printed on LCD by using the function “LCD.print”. After it 4 integers are declared by the name pinMode(2, INPUT), pinMode(3, INPUT), pinMode(buzzer, OUTPUT)and pinMode(light, OUTPUT). First IR sensor is declared input by using the pinMode(3,INPUT)functionand second IR sensor is declared input by using the pinMode(2, INPUT) function. The buzzer is declared output by using the pinMode(buzzer, OUTPUT) function and LED is declared output by using the pinMode(light, OUTPUT)function.Inthe void loop( ) function, “if”, “else if” and “else conditions” are used for checking. Firstly, checking a first IR sensor is high by using “if” condition and if the first IR sensor is high get time in millisec. Checking the second IR sensor is high by using “if” condition and if the second IR sensor is high get time in millisec. Secondly, checking first sensor time and second sensor time is not equal to zero by using “if” condition. If the first sensor time and second sensortimeare not equal to zero, checking first sensor time greater thanthe second sensor time by using “if” condition. If the first sensor time greater than the second sensor time, first sensor time subtract the second sensor time in the difference and
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 797 calculate the speed in the distance and time relationship formula. Speed convert (cm/s) to (km/h). Checking second sensor time greater than the first sensor time by using “else if” condition. If the second sensor time greater than the first sensor time, second sensor time subtract the first sensor time in the difference. Speed is printed on LCD by using lcd.print function. Checking speed greater than the defined speed by using “if” condition. If speed greater than the defined speed, buzzer and LED are high. If speed less than the defined speed by using “else” condition, buzzer and LED are low. If the first sensor time and second sensor time are equal to zero by using “else” condition, OK is printed on LCD by using lcd.print function. C. Hardware Implementation for Circuit Diagram of Vehicle Abnormal Behavior Detection System Fig 3: Overall Circuit Diagram of the system This circuit is constructed with three main sections.Thefirst section is IR sensors which are the input section. Thesecond one is LCD which is the output section. And thelastoneisthe microcontroller Arduino UNO. Two IR sensors are placed together apart on one side of the road. The system basically comprises two IR LED’s transmitter and receiver sensor pairs, which are installed on the highway 27 cm apart, with the transmitter and the receiver of each pair on the same side of the road. Using the timer, select the speed limit 8 km/h for the restriction area. The system displays the time taken by the vehicle in crossing the distancefrom onepair to the other from which the speed of the vehicle is calculated. Arduino UNO is the heart of the system, which controls all the function of the circuit. If the vehicle arrives at the first IR sensor, the first sensor senses this coming vehicle. The first IR sensor gets a signal. This signal sends to the microcontroller. Arduino detects the falling waves and now internal timer of Arduino is started. Then the vehicle is crossing in front of the second sensor, the timer is stopped. Both IR sensors are connected to the interrupt pin of Arduino, and they detect the falling wave. The microcontroller is programmed by using C programming that calculates the time duration between two sensors, corresponding gives the speed. Now vehicle’s speed is calculated by using a simple time-distance relationship.This system speed is calculated in cm/s. And then, speed cm/s convert speed km/h by using the formula. LCD is connected to the Arduino and measured speed is shown on the LCD display. If the vehicle exceeds the speed limit then the LED gets ON while the buzzing sound gives an indication to the polices that the vehicle is crossing the speed limits. The camera is used to capture the video recording of that vehicle between both IR sensors. The camera includes the SD card for storing the video recording. D. Hardware Implementation for Vehicle Abnormal Behavior Detector Process Fig 4: Vehicle Abnormal Behavior Detector Process Figure 4: show vehicle abnormal behavior detector process. In this process, two IR sensors are used to detect the vehicle for getting time between the two IR sensors. If the first IR sensor arrives the vehicle, it gets time inmillisec.Andthen,if the second IR sensor also arrives the vehicle, it gets time in millisec. Checking first sensortimeandsecond sensortimeis not equal to zero. If the first sensor time and second sensor time are not equal to zero and if first sensor time greater than the second sensor time, first sensor time subtract the second sensor time in the difference. If the second sensor time greater than the first sensor time, second sensor time subtract first sensor time indifference. And then, speed is calculated in the distance and time relationship formula. After it, speed (cm/s) convert to speed (km/h). Speed (km/h) printed on LCD. If speed greater than the defined speed, buzzer and LED ON. This process is ending. E. Speed measurement of vehicle abnormal behavior detector system This system comprises two IR sensor pairs, which are installed apart on one side of the road. The system displays the time taken by the vehicle in crossing this 10 cm distance from one pair to the other with delay time is 200 millisec from which the speed of the vehicle is calculated as follows;
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 798 Speed = Equation (1) Distance = 10 cm Delay Time = 200 millisec = 200 10-3 sec Speed (cm/s) = (10 1000)/200 = 50 cm/s Speed (km/h) = Speed (cm/s) 0.036 = 1.8 km/h The speed of the vehicle is 1.8 km/h. In this saturation, the buzzer and LED are not alarmed. The distance between two sensors is 27 cm and delay time is 30 millisecfromwhich the speed of the vehicle is calculated as follows; Distance = 27 cm Delay Time = 30 millisec = 30 10-3 sec Speed (cm/s) = (27 1000)/30 = 900 cm/s Speed (km/h) = Speed (cm/s) 0.036 = 32.4 km/h The speed of the vehicle is 32.4 km/h. In this saturation, the buzzer and LED are alarmed to the police station. The distance between two sensors is 30 cm and delay time is 15 millisecond from which the speed of the vehicle is calculated as follows; Distance = 30 cm Delay Time = 15 millisec =15 10-3 sec Speed (cm/s) = (30 1000)/15 = 2000 cm/s Speed (km/h) = Speed (cm/s) 0.036 = 72 km/h The speed of the vehicle is 72 km/h. In this situation, the buzzer and LED are alarmed to the police station. IV. Results If the vehicle is not crossing the two IR sensor, the operation is performed according to the code on LCD was displaying “SPEED MEASUREMENT OK”. In this system, two IR sensors are crossing the vehicle and then the vehicle’s speed is shown on LCD and if the vehicle crosses the speed limit and then buzzer and LED sound alerting the police. Fig 5: Results for the Active System In this result, the vehicle crosses the speed limit and then buzzer and LED sound alerting and this speed is shown on LCD. Fig: 6. Vehicle’s Abnormal Speed Print on LCD Fig: 7. Results for Buzzer and LED Fig:8. Vehicle’s Normal Speed Print on LCD V. Conclusion This paper is presented vehicle abnormal behavior detector system, which is detected using two IR sensors in order to detect the speed of the vehicle. So, this proposed system check on rash driving by calculating the speed of a vehicle using the time taken to travel between thetwosetpoints ata fixed distance. The police perform their duties while sitting in the control room and provide theirservicewith moreease and accuracy. The aim and objectives of the system have been covered during the system implementation. The proposed design fulfills the aim and objectives of the system and implemented for detection the vehicle speed. The proposed system requires installing the hardware system besides the roads for detecting the vehicle speed and notifying it to police stations. Hardware and software required for this thesis is also being research thoroughly. All the hardware has been testedbeforeimplementation andC# programming language have been learned duringthis paper.
  • 5. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26519 | Volume – 3 | Issue – 5 | July - August 2019 Page 799 Code had been written in C language for controlling the overall system which was uploaded to the microcontroller. While driving on highways, drivers are not exceeding the maximum speed limit permitted for their vehicles. In particular, the system relies on the microcontroller todetect vehicle speed. Car speed detector system involves three parts. In the first portion, two IR sensors are used for detecting the speed of the vehicle by using a simple time- distance relationship. In the second portion, if the vehicle crosses the speed limit and then buzzer and LED sound alerting the police stations. The camera is capturing the video recording of the vehicle in the third portion. The advantage of this proposed car speed detector systemisthat it comes handy for the highway traffic police as it provides a digital display in accordance with a vehicle’s speed and it is also sound an alarm if the vehicle exceeds the permissible speed for the highway. By applying the idea of this paper the police stations easily detect the vehicle’s speed. VI. REFERENCES [1] https://learn.sparkfun.com/tutorial/what –is –an – Arduino. [2] Anonymous: IR LED/ Infrared LED/ Infrared Sensor, (2017). http:// electronicsforu.com/learn-electronics/ ir-led-infrared sensor. [3] John: Car Speed Detector Using Arduino, (2018). [4] Anonymous: IR Sensor for Obstacle Avoidance KY-032 (AD-32A), (2016). http://irsensor.wi zecode .com. [5] Tarun, A.: Construction and Working Principle of LCD Display, (2016). [6] Anonymous:Camera,(2015). https://en.m.wikipedia.org/w/index.php?Title=Camer a&action=edit&section=1. [7] Anonymous: IR (Infrared) Obstacle Detection Sensor, (2015). http://www.electronichub.org/ir-sensor. [8] Monika, P. N. A.: Detection of Over Speeding Vehicles on Highways, 613-619, (2015). [9] Shumsudin, N. A.: Speed Warning System Using Solar Power, 431-438, (2015). [10] Joshue, F. A.: An RFID-Based Intelligent Vehicle Speed Controller Using Active Traffic Signals, 5872-58887, (2010).