SlideShare a Scribd company logo
Page 1
SCHOOL BUS TRACKING AND SECURITY
SYSTEM
Mr. B. Muthukrishna Vinayagam, M.E.,
(Assistant Professor CSE, Kamaraj college of engineering and technology, Virudhunagar, Tamilnadu, India )
Arunachalam M, Saanmuga kumaar K, Karkuvelayyanar T
(CSE, Kamaraj college of engineering and technology, Virudhunagar, Tamilnadu, India
Email : 16ucse025@kamarajengg.edu.in, 16ucse010@kamarajengg.edu.in, 16ucse005@kamarajengg.edu.in )
----------------------------------------************************----------------------------------
Abstract:
It is important for every school to have a trustworthy and secure transportation service to ensure the safety
of the students. The proposed system provides real time information about various parameters of the
vehicle like the location, the route. In this system, we make use of face recognition and GPS technologies.
GPS module is used to find the current geographic coordinates of the vehicle's location. Camera identifies
each student as they board or alight the vehicle. The information can be accessed by the parents through a
mobile application and school administration this helps them track their wards effectively.
----------------------------------------************************----------------------------------
I. INTRODUCTION
Children security has always been a priority
problem whose solution must constantly be
improved. Children safety is importance to their
parents. Despite the best safety measures, children,
due to their lack of skills to protect them. School
bus plays an essential role in carrying most of
children everyday all over the world. Millions of
children needs to be moved a from home to school
and vice versa every day. For parents, obtaining a
safe transport for their children is a crucial issue.
The commute of students from home to
school and back has always been a source of
concern for parents. Students often get on the
wrong buses and get off at the wrong stops. Bus
drivers may not be able to identify all the students
and will not know in time if a student is missing.
Parents have no way of knowing if their ward is
safe until the evening when the bus returns. The
proposed system describes a low cost
comprehensive school bus monitoring device that
tracks the location.
Real time tracking of the bus allows the
children to have more time for activities instead of
waiting for a delayed bus and the notification
system ensures the individual safety of each student.
The tracking is achieved by reading the geographic
coordinates of the bus from the GPS module and
uploading in to a database. This information can
then be accessed by a user base that includes the
parents, bus drivers and school administration
through a mobile application which takes the
location from the database and plots it on a map.
The notification system alerts the parent when the
face recognition from their child’s face is read by
camera.
II. ARDUINO
Arduino is an open-source platform which is
used to build electronics related projects. It consists
of a microcontroller and software. This Integrated
Development runs on computer which is used to
Write and upload computer code to the physical
board.
Page 2
Fig 1.1 Arduino
III. GLOBAL POSITIONING SYSTEM (GPS)
GPS Stands for “Global Positioning
System”. GPS is a satellite navigation system
used to determine the ground position of an
object. GPS technology was first used by the
United States military in the 1960s and expanded
into civilian use over the next few decades.
A Global positioning System is used to find
the location and time information. It display the
latitude and longitude of a particular location
with help of software. This GPS device is
connected to Arduino board. The navigation
devices, GPS receiver obtain the signal from
GPS system
Fig 1.2 GPS module.
IV. Face recognition
The face recognition access control system
has quickly become the mainstream choice for
access control because it is contact-less, user-
friendly, and expandable. FacePass is an upgraded
facial recognition access control module, one that
quickly conducts facial detection, capture,
recognition, and many more functions. A piece of
equipment embedded with the HVC-P2 can detect
and presume attributes and conditions of a user
coming in its vicinity, without the user knowing the
presence of a camera, making it possible to provide
services deemed most suitable in view of the user's
attributes.
Fig 1.3 Camera Module
V. MODULES
A. CAPTURE THE IMAGE
Viola-Jones was designed for frontal faces,
so it is able to detect frontal the best rather than
faces looking sideways, upwards or downwards.
Before detecting a face, the image is converted into
gray scale, since it is easier to work with and there’s
lesser data to process. The Viola-Jones algorithm
first detects the face on the gray scale image and
then finds the location on the colored image. Viola-
Jones outlines a box (as you can see on the right)
and searches for a face within the box. It is
essentially searching for these haar-like features,
which will be explained later. The box moves a step
to the right after going through every tile in the
picture. In this case, I’ve used a large box size and
taken large steps for demonstration, but in general,
you can change the box size and step size according
to your needs. With smaller steps, a number of
boxes detect face-like features (Haar-like features)
and the data of all of those boxes put together, helps
the algorithm determine where the face is.
Page 3
Fig 4.1 System diagram
B. TRAIN IMAGE AND STORE
The algorithm shrinks the image to 24 x 24
and looks for the trained features within the image.
It needs a lot of facial image data to be able to see
features in the different and varying forms. That's
why we need to supply lots of facial image data to
the algorithm so it can be trained. Viola and Jones
fed their algorithm 4,960 images (each manually
labeled). For some images, you can feed the mirror
image of a particular image, which would be brand
new information for a computer.
You would also need to supply the
algorithm non-facial images so it can differentiate
between the two classes. Viola and Jones supplied
their algorithm 9,544 non-facial images. Within
these, some images may look similar to features in
a face, but the algorithm will understand which
features are more likely to be on a face and which
features would obviously not be on a face.
C. FACE RECOGNIZE
 Viola–Jones algorithm which make it a
good detection algorithm are:
 Robust – very high detection rate (true-
positive rate) & very low false-positive rate
always.
 Real time – For practical applications at
least 2 frames per second must be processed.
 Face detection only (not recognition) - The
goal is to distinguish faces from non-faces
(detection is the first step in the recognition
process).
The algorithm has four stages:
1. Haar Feature Selection
2. Creating an Integral Image
3. Adaboost Training
4. Cascading Classifiers
The features sought by the detection framework
universally involve the sums of image pixels within
rectangular areas. As such, they bear some
resemblance to Haar basis functions, which have
been used previously in the realm of image-based
object detection. However, since the features used
by Viola and Jones all rely on more than one
rectangular area, they are generally more complex.
The figure on the right illustrates the four different
types of features used in the framework. The value
of any given feature is the sum of the pixels within
clear rectangles subtracted from the sum of the
pixels within shaded rectangles. Rectangular
features of this sort are primitive when compared to
alternatives such as steerable filters. Although they
are sensitive to vertical and horizontal features,
their feedback is considerably coarser.
 Edge features
 Line-features
 Four-sided features
Fig 5.2 Face detection
Page 4
D. GPS MODULE
The Location object represents a
geographic location which can consist of a latitude,
longitude, time stamp, and other information such
as bearing, altitude and velocity. A Global
positioning System is used to find the location and
time information. It display the latitude and
longitude of a particular location with help of
software. This GPS device is connected to Arduino
board. The navigation devices, GPS receiver obtain
the signal from GPS system.
Fig 5.3 Location Tracking
E. NOTIFICATION
Short Message Service (SMS) is a text
messaging service component of most telephone,
World Wide Web and mobile device systems. It
uses standardized communication protocols to
enable mobile device exchange short text message.
Fig 5.4 Notification.
VI.1 CAPTURE THE IMAGE
Fig 6.1 Get the student information
The fig 8 shows the to get the information for each
student and store the information to CSV (comma-
separated values) file and capture the image for
corresponding student.
VI.2 TRAIN IMAGE AND STORE
Fig 6.2 Train image
Fig 6.3 Trained image
The capture image to be train using
proposed algorithm and store the image. To set the
train image to be labeled then the labeled images
are arranged at sequence and identify the location.

Recommended for you

IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCV

This document describes a system to automate class attendance using face detection and recognition with OpenCV. The system uses the Viola-Jones algorithm for face detection and linear binary pattern histograms for face recognition. Detected faces are converted to grayscale images for better accuracy. The system trains on positive images of faces and negative images without faces to build a classifier. It then detects faces in class and recognizes students by matching features to a stored database, updating attendance and notifying administrators. The proposed system aims to reduce time spent on manual attendance and increase accuracy by automating the process through computer vision techniques.

irjet
IRJET- Automation Software for Student Monitoring System
IRJET-  	  Automation Software for Student Monitoring SystemIRJET-  	  Automation Software for Student Monitoring System
IRJET- Automation Software for Student Monitoring System

This document proposes and evaluates an automated student monitoring system using various technologies. The system aims to more efficiently track student attendance by automating the process and eliminating issues like proxy attendance. It explores methods like face recognition using parameters like pose, sharpness and brightness. Other approaches examined include voiceprint recognition, RFID tags, and an Android-based system using barcodes and fingerprint sensors. The proposed system would make attendance tracking faster, more accurate, and paperless by automating the process through electronic sensors. It could prevent cheating but may have issues with lighting conditions or noise affecting biometric systems. An evaluation found such a semi-automated system using smartphone Wi-Fi fingerprinting and a k-NN algorithm could provide an inexpensive and effective

irjet
Ingerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parentsIngerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parents

Abstract This paper is a study of a fingerprint recognition system based on minutiae based fingerprint algorithms used in various techniques. This line of track mainly involves extraction of minutiae points from the model fingerprint images and fingerprint matching based on the number of minutiae pairings among two fingerprints. This paper also provides the design method of fingerprint based student attendance with help of GSM. This system ignores the requirement for stationary materials and personnel for keeping of records. Keywords – GSM, LCD

Page 5
The train labeled image use to predicate the
unknown label image.
VI.3 Recognize and store
Fig 6.4 Recognize and store
Recognize the face with student id and student
name. To compare the capture face to trained image
and get information for student.
VI.4 STUDENT INFORMATION
Fig 6.5 Student details
Fig 6.6 Student Information
After a successful recognition the student
details are stored in CSV file and sent the location
to their parents.
VI.5 Location Tracking
Fig 6.7 Send the location
Fig 6.8 Location tracking
After adding the address the location sensor
monitor the location using Google Map. When the
correct location is reached the notification is sent to
their parents mobile number. The location address
list are shown in Google map which is represented
above.
VI. CONCLUSIONS
School bus tracking and security system is
to track the school buses and provide relevant
information to their students. The project has
described the design and architecture of school bus
tracking system. The proposed system is
implemented by the use of image processing and
GPS location tracker. The system is able to
demonstrate its performance to track school bus
from any area.
Page 6
In future the proposed system can be
improved and extend the application for all the
industries who are all using the transport system.
Some other safety measures in security modules
will be added, The future implementation also adds
the live stream where user can view what is
happening inside the bus.
ACKNOWLEDGMENT
We express a unique pleasure and honorable
thanking our Secretary Thiru. S.P.G.C SRI
MURUGAN, our Principal, Dr. ANANT
ACHARY, M.E, Ph.D., Kamaraj College of
Engineering and Technology for giving an
opportunity to undertake this project work. We
express our immense gratitude to Dr. M. INDRA
DEVI M.E., Ph.D., Head of the Department,
Computer Science and Engineering and Technology
for her encouragement and benevolence in having
offered all facilities and accorded all privileges to
us to bring out this project successfully. We are
greatly indebted to Mr. B. MUTNUKRISHNA
VINAYAGAM, M.E., Assistant Professor,
Department of Computer Science and Engineering,
for his inspiring guidance without which the
project wouldn’t have attained the level of
efficiency it has now. We are indebted to the
Department of Computer Science Engineering as a
whole for extending their helping hands in
completing the project. Last but not least, we would
like to thank our teaching and non- teaching staff
members who spent their valuable time in giving
their ideas during the course of our project. Above
all we are grateful to our beloved parents for their
moral support.
REFERENCES
Briley Kenney. The best GPS Tracking Watches for Kids: Updated for 2016.
Retrieved from http://smartwatches.org/
Barnard, R.W. and Kellogg, C. (2017) “Applications of Convolution
Operators to Problems in Univalent Function Theory”, Michigan Mach,
Vol.27, pp.81–94.
P. Verma, J.S.Bhatia, “Design and Develo Tracking System with Google Map
based Monitoring”, International Journal of Computer Science, Engineering
and Applications (IJCSEA), vol. 3, no. 3, pp. 33-40, 2013.
T. Ahonen, A Hadid, M. Pietikanen, Face Recognition with Local Binary
Patterns. University of Oulu, Finland. 2011.
D. Yi, R. Liu, R.-F. Chu, Z. Lei, and S. Z. Li, “Face matching between near
infrared and visible light images,” in Proc. Int. Conf. Adv. Biometrics, 2014,
pp. 523–530.
Manash Pratim Gohain, Speed Governors, GPS must for school buses,The
Times of India,February 24,2017
Pham Hoang Oat, Micheal Drieberg and Nguyen Chi Cuong ,
Development of Vehicle TrackingSystemusingGPS and GSM Modem ,
2013 IEEE Conference on Open Systems (ICOS), December 2 - 4, 2013,
Sarawak, Malaysia.
Sabira Khanam, Maliha Mahbub, Anuradha Mandal, M. Shamim Kaiser
and Shamim Al Mamun,”Improvement of RFID Tag Detection Using
Smart Antenna For Tag Based School Monitoring System”,International
Conference on Electrical Engineering and Information & Communication
Technology (ICEEICT) 2014.
Pengfei Zhou; Yuanqing Zheng; Mo Li, "How Long to Wait? Predicting
Bus Arrival Time with Mobile PhoneBased
ParticipatorySensing,"MobileComputing,IEEETransactions on, vol.13,
no.6, pp.1228, 1241, June 2014.
P.J. Phillips, H. Moon, S.A. Rizvi and P. J. Rauss, "The FERET Evaluation
Methodology for Face-Recognition Algorithms", IEEE Trans. Pattern
Analysis and Machine Intelligence, vol. 22, no. 10, pp. 1090-1104, Oct. 2010.

More Related Content

What's hot

3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image
Waqas Tariq
 
Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...
Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...
Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...
IJAEMSJORNAL
 
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNINGMULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
csandit
 
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET Journal
 
IRJET- Automation Software for Student Monitoring System
IRJET-  	  Automation Software for Student Monitoring SystemIRJET-  	  Automation Software for Student Monitoring System
IRJET- Automation Software for Student Monitoring System
IRJET Journal
 
Ingerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parentsIngerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parents
eSAT Journals
 
Yawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detectionYawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detection
eSAT Publishing House
 
Developing Image Processing System for Classification of Indian Multispectral...
Developing Image Processing System for Classification of Indian Multispectral...Developing Image Processing System for Classification of Indian Multispectral...
Developing Image Processing System for Classification of Indian Multispectral...
Sumedha Mishra
 
UNIVERSITY BUSES ROUTING AND TRACKING SYSTEM
UNIVERSITY BUSES ROUTING AND TRACKING SYSTEMUNIVERSITY BUSES ROUTING AND TRACKING SYSTEM
UNIVERSITY BUSES ROUTING AND TRACKING SYSTEM
ijcseit
 
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNINGMULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
sipij
 
FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...
FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...
FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...
cscpconf
 
Hand gesture recognition using support vector machine
Hand gesture recognition using support vector machineHand gesture recognition using support vector machine
Hand gesture recognition using support vector machine
theijes
 
IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...
IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...
IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...
IRJET Journal
 
Object detection for KRSBI robot soccer using PeleeNet on omnidirectional camera
Object detection for KRSBI robot soccer using PeleeNet on omnidirectional cameraObject detection for KRSBI robot soccer using PeleeNet on omnidirectional camera
Object detection for KRSBI robot soccer using PeleeNet on omnidirectional camera
TELKOMNIKA JOURNAL
 
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- Self-Driving Cars: Automation Testing using Udacity Simulator
IRJET- Self-Driving Cars: Automation Testing using Udacity SimulatorIRJET- Self-Driving Cars: Automation Testing using Udacity Simulator
IRJET- Self-Driving Cars: Automation Testing using Udacity Simulator
IRJET Journal
 
An Enhanced Authentication System Using Face and Fingerprint Technologies
An Enhanced Authentication System Using Face and Fingerprint TechnologiesAn Enhanced Authentication System Using Face and Fingerprint Technologies
An Enhanced Authentication System Using Face and Fingerprint Technologies
iosrjce
 
Bw36444448
Bw36444448Bw36444448
Bw36444448
IJERA Editor
 

What's hot (18)

3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image
 
Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...
Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...
Attendance Monitoring System of Students Based on Biometric and GPS Tracking ...
 
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNINGMULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
 
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
 
IRJET- Automation Software for Student Monitoring System
IRJET-  	  Automation Software for Student Monitoring SystemIRJET-  	  Automation Software for Student Monitoring System
IRJET- Automation Software for Student Monitoring System
 
Ingerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parentsIngerprint based student attendance system with sms alert to parents
Ingerprint based student attendance system with sms alert to parents
 
Yawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detectionYawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detection
 
Developing Image Processing System for Classification of Indian Multispectral...
Developing Image Processing System for Classification of Indian Multispectral...Developing Image Processing System for Classification of Indian Multispectral...
Developing Image Processing System for Classification of Indian Multispectral...
 
UNIVERSITY BUSES ROUTING AND TRACKING SYSTEM
UNIVERSITY BUSES ROUTING AND TRACKING SYSTEMUNIVERSITY BUSES ROUTING AND TRACKING SYSTEM
UNIVERSITY BUSES ROUTING AND TRACKING SYSTEM
 
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNINGMULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
MULTIMODAL BIOMETRICS RECOGNITION FROM FACIAL VIDEO VIA DEEP LEARNING
 
FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...
FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...
FUSION BASED MULTIMODAL AUTHENTICATION IN BIOMETRICS USING CONTEXT-SENSITIVE ...
 
Hand gesture recognition using support vector machine
Hand gesture recognition using support vector machineHand gesture recognition using support vector machine
Hand gesture recognition using support vector machine
 
IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...
IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...
IRJET- Wound Assessment System for Patients with Diabetic Ulcers using Smartp...
 
Object detection for KRSBI robot soccer using PeleeNet on omnidirectional camera
Object detection for KRSBI robot soccer using PeleeNet on omnidirectional cameraObject detection for KRSBI robot soccer using PeleeNet on omnidirectional camera
Object detection for KRSBI robot soccer using PeleeNet on omnidirectional camera
 
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- Self-Driving Cars: Automation Testing using Udacity Simulator
IRJET- Self-Driving Cars: Automation Testing using Udacity SimulatorIRJET- Self-Driving Cars: Automation Testing using Udacity Simulator
IRJET- Self-Driving Cars: Automation Testing using Udacity Simulator
 
An Enhanced Authentication System Using Face and Fingerprint Technologies
An Enhanced Authentication System Using Face and Fingerprint TechnologiesAn Enhanced Authentication System Using Face and Fingerprint Technologies
An Enhanced Authentication System Using Face and Fingerprint Technologies
 
Bw36444448
Bw36444448Bw36444448
Bw36444448
 

Similar to School Bus Tracking and Security System

IRJET- Advance Driver Assistance System using Artificial Intelligence
IRJET- Advance Driver Assistance System using Artificial IntelligenceIRJET- Advance Driver Assistance System using Artificial Intelligence
IRJET- Advance Driver Assistance System using Artificial Intelligence
IRJET Journal
 
IRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face RecognitionIRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face Recognition
IRJET Journal
 
IRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using AndroidIRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using Android
IRJET Journal
 
Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...
Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...
Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...
IRJET Journal
 
IRJET- Intelligent Automated Attendance System based on Facial Recognition
IRJET-  	  Intelligent Automated Attendance System based on Facial RecognitionIRJET-  	  Intelligent Automated Attendance System based on Facial Recognition
IRJET- Intelligent Automated Attendance System based on Facial Recognition
IRJET Journal
 
IRJET - A Review on Face Recognition using Deep Learning Algorithm
IRJET -  	  A Review on Face Recognition using Deep Learning AlgorithmIRJET -  	  A Review on Face Recognition using Deep Learning Algorithm
IRJET - A Review on Face Recognition using Deep Learning Algorithm
IRJET Journal
 
IRJET - Augmented Reality: Social Profile Detection by Face Recognition
IRJET - Augmented Reality: Social Profile Detection by Face RecognitionIRJET - Augmented Reality: Social Profile Detection by Face Recognition
IRJET - Augmented Reality: Social Profile Detection by Face Recognition
IRJET Journal
 
F0423134
F0423134F0423134
F0423134
IOSR Journals
 
IRJET- Digiyathra
IRJET-  	  DigiyathraIRJET-  	  Digiyathra
IRJET- Digiyathra
IRJET Journal
 
IRJET- Student Attendance System by Face Detection
IRJET- Student Attendance System by Face DetectionIRJET- Student Attendance System by Face Detection
IRJET- Student Attendance System by Face Detection
IRJET Journal
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face Recognition
IRJET Journal
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face Recognition
IRJET Journal
 
IRJET- Vehicle Seat Vacancy Identification using Image Processing Technique
IRJET- Vehicle Seat Vacancy Identification using Image Processing TechniqueIRJET- Vehicle Seat Vacancy Identification using Image Processing Technique
IRJET- Vehicle Seat Vacancy Identification using Image Processing Technique
IRJET Journal
 
Face Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoTFace Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoT
IRJET Journal
 
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry PiIRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET Journal
 
Visual Saliency Model Using Sift and Comparison of Learning Approaches
Visual Saliency Model Using Sift and Comparison of Learning ApproachesVisual Saliency Model Using Sift and Comparison of Learning Approaches
Visual Saliency Model Using Sift and Comparison of Learning Approaches
csandit
 
A Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net AlgorithmA Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net Algorithm
IRJET Journal
 
An Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processingAn Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processing
theijes
 
Person Acquisition and Identification Tool
Person Acquisition and Identification ToolPerson Acquisition and Identification Tool
Person Acquisition and Identification Tool
IRJET Journal
 
Virtual Contact Discovery using Facial Recognition
Virtual Contact Discovery using Facial RecognitionVirtual Contact Discovery using Facial Recognition
Virtual Contact Discovery using Facial Recognition
IRJET Journal
 

Similar to School Bus Tracking and Security System (20)

IRJET- Advance Driver Assistance System using Artificial Intelligence
IRJET- Advance Driver Assistance System using Artificial IntelligenceIRJET- Advance Driver Assistance System using Artificial Intelligence
IRJET- Advance Driver Assistance System using Artificial Intelligence
 
IRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face RecognitionIRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face Recognition
 
IRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using AndroidIRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using Android
 
Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...
Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...
Self-X: Geo Fencing and Face Recognition based Smart Attendance Management Ap...
 
IRJET- Intelligent Automated Attendance System based on Facial Recognition
IRJET-  	  Intelligent Automated Attendance System based on Facial RecognitionIRJET-  	  Intelligent Automated Attendance System based on Facial Recognition
IRJET- Intelligent Automated Attendance System based on Facial Recognition
 
IRJET - A Review on Face Recognition using Deep Learning Algorithm
IRJET -  	  A Review on Face Recognition using Deep Learning AlgorithmIRJET -  	  A Review on Face Recognition using Deep Learning Algorithm
IRJET - A Review on Face Recognition using Deep Learning Algorithm
 
IRJET - Augmented Reality: Social Profile Detection by Face Recognition
IRJET - Augmented Reality: Social Profile Detection by Face RecognitionIRJET - Augmented Reality: Social Profile Detection by Face Recognition
IRJET - Augmented Reality: Social Profile Detection by Face Recognition
 
F0423134
F0423134F0423134
F0423134
 
IRJET- Digiyathra
IRJET-  	  DigiyathraIRJET-  	  Digiyathra
IRJET- Digiyathra
 
IRJET- Student Attendance System by Face Detection
IRJET- Student Attendance System by Face DetectionIRJET- Student Attendance System by Face Detection
IRJET- Student Attendance System by Face Detection
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face Recognition
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face Recognition
 
IRJET- Vehicle Seat Vacancy Identification using Image Processing Technique
IRJET- Vehicle Seat Vacancy Identification using Image Processing TechniqueIRJET- Vehicle Seat Vacancy Identification using Image Processing Technique
IRJET- Vehicle Seat Vacancy Identification using Image Processing Technique
 
Face Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoTFace Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoT
 
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry PiIRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
 
Visual Saliency Model Using Sift and Comparison of Learning Approaches
Visual Saliency Model Using Sift and Comparison of Learning ApproachesVisual Saliency Model Using Sift and Comparison of Learning Approaches
Visual Saliency Model Using Sift and Comparison of Learning Approaches
 
A Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net AlgorithmA Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net Algorithm
 
An Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processingAn Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processing
 
Person Acquisition and Identification Tool
Person Acquisition and Identification ToolPerson Acquisition and Identification Tool
Person Acquisition and Identification Tool
 
Virtual Contact Discovery using Facial Recognition
Virtual Contact Discovery using Facial RecognitionVirtual Contact Discovery using Facial Recognition
Virtual Contact Discovery using Facial Recognition
 

More from IJSRED

IJSRED-V3I6P13
IJSRED-V3I6P13IJSRED-V3I6P13
IJSRED-V3I6P13
IJSRED
 
BigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunityBigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunity
IJSRED
 
Quantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf DiseaseQuantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf Disease
IJSRED
 
DC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric VehiclesDC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric Vehicles
IJSRED
 
Growth Path Followed by France
Growth Path Followed by FranceGrowth Path Followed by France
Growth Path Followed by France
IJSRED
 
Acquisition System
Acquisition SystemAcquisition System
Acquisition System
IJSRED
 
Parallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPParallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MP
IJSRED
 
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. AmaraStudy of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. Amara
IJSRED
 
Understanding Architecture of Internet of Things
Understanding Architecture of Internet of ThingsUnderstanding Architecture of Internet of Things
Understanding Architecture of Internet of Things
IJSRED
 
Smart shopping cart
Smart shopping cartSmart shopping cart
Smart shopping cart
IJSRED
 
An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...
IJSRED
 
Smart Canteen Management
Smart Canteen ManagementSmart Canteen Management
Smart Canteen Management
IJSRED
 
Gandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic EthicsGandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic Ethics
IJSRED
 
Impacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric SolutionImpacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric Solution
IJSRED
 
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
IJSRED
 
Inginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition SystemInginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition System
IJSRED
 
Farmer's Analytical assistant
Farmer's Analytical assistantFarmer's Analytical assistant
Farmer's Analytical assistant
IJSRED
 
Functions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in IndiaFunctions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in India
IJSRED
 
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
IJSRED
 
GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...
GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...
GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...
IJSRED
 

More from IJSRED (20)

IJSRED-V3I6P13
IJSRED-V3I6P13IJSRED-V3I6P13
IJSRED-V3I6P13
 
BigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunityBigBasket encashing the Demonetisation: A big opportunity
BigBasket encashing the Demonetisation: A big opportunity
 
Quantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf DiseaseQuantitative and Qualitative Analysis of Plant Leaf Disease
Quantitative and Qualitative Analysis of Plant Leaf Disease
 
DC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric VehiclesDC Fast Charger and Battery Management System for Electric Vehicles
DC Fast Charger and Battery Management System for Electric Vehicles
 
Growth Path Followed by France
Growth Path Followed by FranceGrowth Path Followed by France
Growth Path Followed by France
 
Acquisition System
Acquisition SystemAcquisition System
Acquisition System
 
Parallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MPParallelization of Graceful Labeling Using Open MP
Parallelization of Graceful Labeling Using Open MP
 
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. AmaraStudy of Phenotypic Plasticity of  Fruits of Luffa Acutangula Var. Amara
Study of Phenotypic Plasticity of Fruits of Luffa Acutangula Var. Amara
 
Understanding Architecture of Internet of Things
Understanding Architecture of Internet of ThingsUnderstanding Architecture of Internet of Things
Understanding Architecture of Internet of Things
 
Smart shopping cart
Smart shopping cartSmart shopping cart
Smart shopping cart
 
An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...An Emperical Study of Learning How Soft Skills is Essential for Management St...
An Emperical Study of Learning How Soft Skills is Essential for Management St...
 
Smart Canteen Management
Smart Canteen ManagementSmart Canteen Management
Smart Canteen Management
 
Gandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic EthicsGandhian trusteeship and Economic Ethics
Gandhian trusteeship and Economic Ethics
 
Impacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric SolutionImpacts of a New Spatial Variable on a Black Hole Metric Solution
Impacts of a New Spatial Variable on a Black Hole Metric Solution
 
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
A Study to Assess the Effectiveness of Planned Teaching Programme on Knowledg...
 
Inginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition SystemInginious Trafalgar Contrivition System
Inginious Trafalgar Contrivition System
 
Farmer's Analytical assistant
Farmer's Analytical assistantFarmer's Analytical assistant
Farmer's Analytical assistant
 
Functions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in IndiaFunctions of Forensic Engineering Investigator in India
Functions of Forensic Engineering Investigator in India
 
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
Participation Politique Feminine En Competition Électorale Au Congo-Kinshasa....
 
GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...
GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...
GSM Based Smart Helmet with Sensors for Accident Prevention and Intellectual ...
 

Recently uploaded

Unblocking The Main Thread - Solving ANRs and Frozen Frames
Unblocking The Main Thread - Solving ANRs and Frozen FramesUnblocking The Main Thread - Solving ANRs and Frozen Frames
Unblocking The Main Thread - Solving ANRs and Frozen Frames
Sinan KOZAK
 
Bangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model Safe
Bangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model SafeBangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model Safe
Bangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model Safe
bookhotbebes1
 
21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY
21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY
21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY
PradeepKumarSK3
 
Rotary Intersection in traffic engineering.pptx
Rotary Intersection in traffic engineering.pptxRotary Intersection in traffic engineering.pptx
Rotary Intersection in traffic engineering.pptx
surekha1287
 
Trends in Computer Aided Design and MFG.
Trends in Computer Aided Design and MFG.Trends in Computer Aided Design and MFG.
Trends in Computer Aided Design and MFG.
Tool and Die Tech
 
Development of Chatbot Using AI/ML Technologies
Development of  Chatbot Using AI/ML TechnologiesDevelopment of  Chatbot Using AI/ML Technologies
Development of Chatbot Using AI/ML Technologies
maisnampibarel
 
Quadcopter Dynamics, Stability and Control
Quadcopter Dynamics, Stability and ControlQuadcopter Dynamics, Stability and Control
Quadcopter Dynamics, Stability and Control
Blesson Easo Varghese
 
UNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-ID
UNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-IDUNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-ID
UNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-ID
GOWSIKRAJA PALANISAMY
 
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model SafeRohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
binna singh$A17
 
Exploring Deep Learning Models for Image Recognition: A Comparative Review
Exploring Deep Learning Models for Image Recognition: A Comparative ReviewExploring Deep Learning Models for Image Recognition: A Comparative Review
Exploring Deep Learning Models for Image Recognition: A Comparative Review
sipij
 
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdfOCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
Muanisa Waras
 
L-3536-Cost Benifit Analysis in ESIA.pptx
L-3536-Cost Benifit Analysis in ESIA.pptxL-3536-Cost Benifit Analysis in ESIA.pptx
L-3536-Cost Benifit Analysis in ESIA.pptx
naseki5964
 
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
IJAEMSJORNAL
 
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model SafePaharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model Safe
aarusi sexy model
 
IS Code SP 23: Handbook on concrete mixes
IS Code SP 23: Handbook  on concrete mixesIS Code SP 23: Handbook  on concrete mixes
IS Code SP 23: Handbook on concrete mixes
Mani Krishna Sarkar
 
Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...
Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...
Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...
VICTOR MAESTRE RAMIREZ
 
Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...
Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...
Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...
YanKing2
 
Software Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project ManagementSoftware Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project Management
Prakhyath Rai
 
Social media management system project report.pdf
Social media management system project report.pdfSocial media management system project report.pdf
Social media management system project report.pdf
Kamal Acharya
 
Conservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic RegenerationConservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic Regeneration
PriyankaKarn3
 

Recently uploaded (20)

Unblocking The Main Thread - Solving ANRs and Frozen Frames
Unblocking The Main Thread - Solving ANRs and Frozen FramesUnblocking The Main Thread - Solving ANRs and Frozen Frames
Unblocking The Main Thread - Solving ANRs and Frozen Frames
 
Bangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model Safe
Bangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model SafeBangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model Safe
Bangalore @ℂall @Girls ꧁❤ 0000000000 ❤꧂@ℂall @Girls Service Vip Top Model Safe
 
21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY
21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY
21EC63_Module1B.pptx VLSI design 21ec63 MOS TRANSISTOR THEORY
 
Rotary Intersection in traffic engineering.pptx
Rotary Intersection in traffic engineering.pptxRotary Intersection in traffic engineering.pptx
Rotary Intersection in traffic engineering.pptx
 
Trends in Computer Aided Design and MFG.
Trends in Computer Aided Design and MFG.Trends in Computer Aided Design and MFG.
Trends in Computer Aided Design and MFG.
 
Development of Chatbot Using AI/ML Technologies
Development of  Chatbot Using AI/ML TechnologiesDevelopment of  Chatbot Using AI/ML Technologies
Development of Chatbot Using AI/ML Technologies
 
Quadcopter Dynamics, Stability and Control
Quadcopter Dynamics, Stability and ControlQuadcopter Dynamics, Stability and Control
Quadcopter Dynamics, Stability and Control
 
UNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-ID
UNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-IDUNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-ID
UNIT I INCEPTION OF INFORMATION DESIGN 20CDE09-ID
 
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model SafeRohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
 
Exploring Deep Learning Models for Image Recognition: A Comparative Review
Exploring Deep Learning Models for Image Recognition: A Comparative ReviewExploring Deep Learning Models for Image Recognition: A Comparative Review
Exploring Deep Learning Models for Image Recognition: A Comparative Review
 
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdfOCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
 
L-3536-Cost Benifit Analysis in ESIA.pptx
L-3536-Cost Benifit Analysis in ESIA.pptxL-3536-Cost Benifit Analysis in ESIA.pptx
L-3536-Cost Benifit Analysis in ESIA.pptx
 
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
 
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model SafePaharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Arti Singh Top Model Safe
 
IS Code SP 23: Handbook on concrete mixes
IS Code SP 23: Handbook  on concrete mixesIS Code SP 23: Handbook  on concrete mixes
IS Code SP 23: Handbook on concrete mixes
 
Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...
Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...
Advances in Detect and Avoid for Unmanned Aircraft Systems and Advanced Air M...
 
Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...
Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...
Natural Is The Best: Model-Agnostic Code Simplification for Pre-trained Large...
 
Software Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project ManagementSoftware Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project Management
 
Social media management system project report.pdf
Social media management system project report.pdfSocial media management system project report.pdf
Social media management system project report.pdf
 
Conservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic RegenerationConservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic Regeneration
 

School Bus Tracking and Security System

  • 1. Page 1 SCHOOL BUS TRACKING AND SECURITY SYSTEM Mr. B. Muthukrishna Vinayagam, M.E., (Assistant Professor CSE, Kamaraj college of engineering and technology, Virudhunagar, Tamilnadu, India ) Arunachalam M, Saanmuga kumaar K, Karkuvelayyanar T (CSE, Kamaraj college of engineering and technology, Virudhunagar, Tamilnadu, India Email : 16ucse025@kamarajengg.edu.in, 16ucse010@kamarajengg.edu.in, 16ucse005@kamarajengg.edu.in ) ----------------------------------------************************---------------------------------- Abstract: It is important for every school to have a trustworthy and secure transportation service to ensure the safety of the students. The proposed system provides real time information about various parameters of the vehicle like the location, the route. In this system, we make use of face recognition and GPS technologies. GPS module is used to find the current geographic coordinates of the vehicle's location. Camera identifies each student as they board or alight the vehicle. The information can be accessed by the parents through a mobile application and school administration this helps them track their wards effectively. ----------------------------------------************************---------------------------------- I. INTRODUCTION Children security has always been a priority problem whose solution must constantly be improved. Children safety is importance to their parents. Despite the best safety measures, children, due to their lack of skills to protect them. School bus plays an essential role in carrying most of children everyday all over the world. Millions of children needs to be moved a from home to school and vice versa every day. For parents, obtaining a safe transport for their children is a crucial issue. The commute of students from home to school and back has always been a source of concern for parents. Students often get on the wrong buses and get off at the wrong stops. Bus drivers may not be able to identify all the students and will not know in time if a student is missing. Parents have no way of knowing if their ward is safe until the evening when the bus returns. The proposed system describes a low cost comprehensive school bus monitoring device that tracks the location. Real time tracking of the bus allows the children to have more time for activities instead of waiting for a delayed bus and the notification system ensures the individual safety of each student. The tracking is achieved by reading the geographic coordinates of the bus from the GPS module and uploading in to a database. This information can then be accessed by a user base that includes the parents, bus drivers and school administration through a mobile application which takes the location from the database and plots it on a map. The notification system alerts the parent when the face recognition from their child’s face is read by camera. II. ARDUINO Arduino is an open-source platform which is used to build electronics related projects. It consists of a microcontroller and software. This Integrated Development runs on computer which is used to Write and upload computer code to the physical board.
  • 2. Page 2 Fig 1.1 Arduino III. GLOBAL POSITIONING SYSTEM (GPS) GPS Stands for “Global Positioning System”. GPS is a satellite navigation system used to determine the ground position of an object. GPS technology was first used by the United States military in the 1960s and expanded into civilian use over the next few decades. A Global positioning System is used to find the location and time information. It display the latitude and longitude of a particular location with help of software. This GPS device is connected to Arduino board. The navigation devices, GPS receiver obtain the signal from GPS system Fig 1.2 GPS module. IV. Face recognition The face recognition access control system has quickly become the mainstream choice for access control because it is contact-less, user- friendly, and expandable. FacePass is an upgraded facial recognition access control module, one that quickly conducts facial detection, capture, recognition, and many more functions. A piece of equipment embedded with the HVC-P2 can detect and presume attributes and conditions of a user coming in its vicinity, without the user knowing the presence of a camera, making it possible to provide services deemed most suitable in view of the user's attributes. Fig 1.3 Camera Module V. MODULES A. CAPTURE THE IMAGE Viola-Jones was designed for frontal faces, so it is able to detect frontal the best rather than faces looking sideways, upwards or downwards. Before detecting a face, the image is converted into gray scale, since it is easier to work with and there’s lesser data to process. The Viola-Jones algorithm first detects the face on the gray scale image and then finds the location on the colored image. Viola- Jones outlines a box (as you can see on the right) and searches for a face within the box. It is essentially searching for these haar-like features, which will be explained later. The box moves a step to the right after going through every tile in the picture. In this case, I’ve used a large box size and taken large steps for demonstration, but in general, you can change the box size and step size according to your needs. With smaller steps, a number of boxes detect face-like features (Haar-like features) and the data of all of those boxes put together, helps the algorithm determine where the face is.
  • 3. Page 3 Fig 4.1 System diagram B. TRAIN IMAGE AND STORE The algorithm shrinks the image to 24 x 24 and looks for the trained features within the image. It needs a lot of facial image data to be able to see features in the different and varying forms. That's why we need to supply lots of facial image data to the algorithm so it can be trained. Viola and Jones fed their algorithm 4,960 images (each manually labeled). For some images, you can feed the mirror image of a particular image, which would be brand new information for a computer. You would also need to supply the algorithm non-facial images so it can differentiate between the two classes. Viola and Jones supplied their algorithm 9,544 non-facial images. Within these, some images may look similar to features in a face, but the algorithm will understand which features are more likely to be on a face and which features would obviously not be on a face. C. FACE RECOGNIZE  Viola–Jones algorithm which make it a good detection algorithm are:  Robust – very high detection rate (true- positive rate) & very low false-positive rate always.  Real time – For practical applications at least 2 frames per second must be processed.  Face detection only (not recognition) - The goal is to distinguish faces from non-faces (detection is the first step in the recognition process). The algorithm has four stages: 1. Haar Feature Selection 2. Creating an Integral Image 3. Adaboost Training 4. Cascading Classifiers The features sought by the detection framework universally involve the sums of image pixels within rectangular areas. As such, they bear some resemblance to Haar basis functions, which have been used previously in the realm of image-based object detection. However, since the features used by Viola and Jones all rely on more than one rectangular area, they are generally more complex. The figure on the right illustrates the four different types of features used in the framework. The value of any given feature is the sum of the pixels within clear rectangles subtracted from the sum of the pixels within shaded rectangles. Rectangular features of this sort are primitive when compared to alternatives such as steerable filters. Although they are sensitive to vertical and horizontal features, their feedback is considerably coarser.  Edge features  Line-features  Four-sided features Fig 5.2 Face detection
  • 4. Page 4 D. GPS MODULE The Location object represents a geographic location which can consist of a latitude, longitude, time stamp, and other information such as bearing, altitude and velocity. A Global positioning System is used to find the location and time information. It display the latitude and longitude of a particular location with help of software. This GPS device is connected to Arduino board. The navigation devices, GPS receiver obtain the signal from GPS system. Fig 5.3 Location Tracking E. NOTIFICATION Short Message Service (SMS) is a text messaging service component of most telephone, World Wide Web and mobile device systems. It uses standardized communication protocols to enable mobile device exchange short text message. Fig 5.4 Notification. VI.1 CAPTURE THE IMAGE Fig 6.1 Get the student information The fig 8 shows the to get the information for each student and store the information to CSV (comma- separated values) file and capture the image for corresponding student. VI.2 TRAIN IMAGE AND STORE Fig 6.2 Train image Fig 6.3 Trained image The capture image to be train using proposed algorithm and store the image. To set the train image to be labeled then the labeled images are arranged at sequence and identify the location.
  • 5. Page 5 The train labeled image use to predicate the unknown label image. VI.3 Recognize and store Fig 6.4 Recognize and store Recognize the face with student id and student name. To compare the capture face to trained image and get information for student. VI.4 STUDENT INFORMATION Fig 6.5 Student details Fig 6.6 Student Information After a successful recognition the student details are stored in CSV file and sent the location to their parents. VI.5 Location Tracking Fig 6.7 Send the location Fig 6.8 Location tracking After adding the address the location sensor monitor the location using Google Map. When the correct location is reached the notification is sent to their parents mobile number. The location address list are shown in Google map which is represented above. VI. CONCLUSIONS School bus tracking and security system is to track the school buses and provide relevant information to their students. The project has described the design and architecture of school bus tracking system. The proposed system is implemented by the use of image processing and GPS location tracker. The system is able to demonstrate its performance to track school bus from any area.
  • 6. Page 6 In future the proposed system can be improved and extend the application for all the industries who are all using the transport system. Some other safety measures in security modules will be added, The future implementation also adds the live stream where user can view what is happening inside the bus. ACKNOWLEDGMENT We express a unique pleasure and honorable thanking our Secretary Thiru. S.P.G.C SRI MURUGAN, our Principal, Dr. ANANT ACHARY, M.E, Ph.D., Kamaraj College of Engineering and Technology for giving an opportunity to undertake this project work. We express our immense gratitude to Dr. M. INDRA DEVI M.E., Ph.D., Head of the Department, Computer Science and Engineering and Technology for her encouragement and benevolence in having offered all facilities and accorded all privileges to us to bring out this project successfully. We are greatly indebted to Mr. B. MUTNUKRISHNA VINAYAGAM, M.E., Assistant Professor, Department of Computer Science and Engineering, for his inspiring guidance without which the project wouldn’t have attained the level of efficiency it has now. We are indebted to the Department of Computer Science Engineering as a whole for extending their helping hands in completing the project. Last but not least, we would like to thank our teaching and non- teaching staff members who spent their valuable time in giving their ideas during the course of our project. Above all we are grateful to our beloved parents for their moral support. REFERENCES Briley Kenney. The best GPS Tracking Watches for Kids: Updated for 2016. Retrieved from http://smartwatches.org/ Barnard, R.W. and Kellogg, C. (2017) “Applications of Convolution Operators to Problems in Univalent Function Theory”, Michigan Mach, Vol.27, pp.81–94. P. Verma, J.S.Bhatia, “Design and Develo Tracking System with Google Map based Monitoring”, International Journal of Computer Science, Engineering and Applications (IJCSEA), vol. 3, no. 3, pp. 33-40, 2013. T. Ahonen, A Hadid, M. Pietikanen, Face Recognition with Local Binary Patterns. University of Oulu, Finland. 2011. D. Yi, R. Liu, R.-F. Chu, Z. Lei, and S. Z. Li, “Face matching between near infrared and visible light images,” in Proc. Int. Conf. Adv. Biometrics, 2014, pp. 523–530. Manash Pratim Gohain, Speed Governors, GPS must for school buses,The Times of India,February 24,2017 Pham Hoang Oat, Micheal Drieberg and Nguyen Chi Cuong , Development of Vehicle TrackingSystemusingGPS and GSM Modem , 2013 IEEE Conference on Open Systems (ICOS), December 2 - 4, 2013, Sarawak, Malaysia. Sabira Khanam, Maliha Mahbub, Anuradha Mandal, M. Shamim Kaiser and Shamim Al Mamun,”Improvement of RFID Tag Detection Using Smart Antenna For Tag Based School Monitoring System”,International Conference on Electrical Engineering and Information & Communication Technology (ICEEICT) 2014. Pengfei Zhou; Yuanqing Zheng; Mo Li, "How Long to Wait? Predicting Bus Arrival Time with Mobile PhoneBased ParticipatorySensing,"MobileComputing,IEEETransactions on, vol.13, no.6, pp.1228, 1241, June 2014. P.J. Phillips, H. Moon, S.A. Rizvi and P. J. Rauss, "The FERET Evaluation Methodology for Face-Recognition Algorithms", IEEE Trans. Pattern Analysis and Machine Intelligence, vol. 22, no. 10, pp. 1090-1104, Oct. 2010.