Detection of Drowsiness and Fatigue level of Driver

Size: px
Start display at page:

Download "Detection of Drowsiness and Fatigue level of Driver"

Transcription

1 IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 11 April 2015 ISSN (online): Detection of and Fatigue level of Driver Shreya P. Patel Madhu Sharma Bhumika P. Patel Nisha Shukla Hinaxi M. Patel Abstract Driver s inattentiveness is one of the main causes for most accidents related to vehicle crashes. Safe driving is the major concept in the societies to reduce accidents. Long distance driving cause driver fatigue due to which heavy accident occurs of vehicles like cars, aero planes, trucks etc. So it is very necessary to prevent the accidents all over the world. This paper presents the procedure of driver s drowsiness detection system which measures the drowsiness and fatigue level of driver. An initial buzzer is used to alert the driver after the system detects that the driver is in drowsy condition. In this system a camera is placed in front of driver s face in car which records the video of driver. The MATLAB will be used to detect the eye of driver that is conducted using the process of extraction of face image from the live video and in case if it detects the eye closure for certain threshold time period then it beeps the alarm to aware driver. We also describe the procedure to measure the open and close of eye so from that we can accurately detect the drowsiness and fatigue level. The main criteria of this system must be that it is highly non-intrusive and the driver should not be responsible to give any kind of feedback to system. Keywords: Inattentiveness, fatigue, drowsiness, threshold, detection system I. INTRODUCTION In today s world where Science and Technology has made amazing advances, the innovations in automobile industries over hundred years should be considered as it have made our vehicles more powerful, easier to drive and control, more-safer and environmentally friendly[1]. But the increasing number of road vehicle accidents is the crucial problem in the world. One of the most important factor of vehicle crashes is the driver fatigue and monotony. Furthermore, the accidents related to the driver s drowsiness or fatigue is more dangerous and serious than other types of accidents, as the sleepy driver do not take the correct prior action against the collision. Generally the 20% of crashes and 30% of fatal crashes are occur due to driver s drowsiness and lack of concentration. Recent statistics shows that more than 1,500 deaths and around 80,000 injuries are due to fatigue related accidents. As per the survey reports of Road Traffic Injuries (RTI) the road accident ranked fourth among the leading causes of death in the world. Nearly 1.3 million people [2] die every year on the world's roads and 20 to 50 million people suffer non-fatal injuries, with many sustaining a disability as a result of their injury. According to forecasting of statistics the number of road accident will increase to 5 million in 2020 [3]. Driver s inattention might be the result of lack of alertness while driving due to the driver s drowsiness and distraction. So the prevention of such crucial crashes is the main focus effort in the field of active safety research. The advancement in the field of computer technology has provided the means for building the intelligent drowsiness and fatigue detection system. Driver drowsiness detection system is one of the best application of intelligent vehicle system [4]. The main aim of this paper is to develop a prototype [5] of driver s drowsiness and fatigue detection system with a warning alarm. Our whole focus will be placed on designing the drowsy detection system that will accurately monitor the open and closed state of the driver s eye in real time [1]. By continuously monitoring the eyes, it can be seen that the symptoms of driver s drowsy behavior can be detected early enough to prevent the crashes. Fig.1 shows the overall flow of our system. Based on the image acquisition of video from camera which is placed in front of the driver s face perform real time processing of video stream in order to get frames from which we detect the driver s face for the further detection of eyes from it [6]. So that we can track the All rights reserved by 133

2 Detection of and Fatigue level of Driver blinks of driver from eyes and after as we get driver eyes closed in continuously 4-5 frames then we can say that driver is in drowsy state and the warning alarm beeps to alert the driver and thus it avoid crucial accidents. Fig. 1: System Flow II. PROPOSED SYSTEM A. Face Recognition: Face detection is a process that aims to locate a human face in an image. Face recognition is a necessary step in all face processing system, and its overall performance of drowsiness detection systems. To begin tracking a face, we have to first detect it. We use vision.cascadeobjectdetector to detect the face in video frame. By this command only the face is detected from video frame. The best Face detection is done by Viola-Jones method developed by Paul Viola and Michael Jones. Fig. 2: Detected face from a input video Object Detection by Paul Viola and Michael Jones can be done method like Simple rectangular features named Haar-like features, an Integral image, AdaBoost machine-learning and Cascaded classifier [16]. 1) Haar-Like Features: This feature considers rectangular regions at a location in detection window. The advantage of haar-like features is its calculation speed. Due to haar-like feature any size can be calculated at constant time. Haar-like features can be expressed by two or three joins-black and white. Rectangle feature can indicate whether the border lies between dark region and light region [16]. All rights reserved by 134

3 Detection of and Fatigue level of Driver Fig. 3: Haar-like features 2) Integral Image: Integral image is also known as summed area table. It is used to compute Haar-like rectangle feature. It is an array containing sums of pixel. Calculating a feature is very fast and efficient. The integral value of each pixel is sum of all pixel to its top left [16]. The formula for integral image is given below: ii (x, y) = where ii(x,y) is the integral image at pixel location (x,y) and i(x,y) is the original image. To compute the sum of any rectangular area is extremely efficient using the integral image. Fig. 4: Summed area of integral image 3) Adaboost-Machine Leaning: "Adaptive Boosting" is a machine learning method given by Yoav Freund and Schapire. In AdaBoost learning method, the sums of pixel in white boxes are subtracted from the sum of pixel black areas. The machine creates a set of Haar-like features [16]. B. Eye Tracking: The experimental results on eye detection are based on the assumption that eye regions eye regions from video frame are corrected located. PERCLOS Percentage of Eye Closure over time) is most useful method for measuring eye blinking. We can determine that if eyes is open, then the condition is normal and if the eyes are closed then a alarm signal is generated to alert the driver. We need to detect the eye region because we have to examine eye to know whether the person feels sleepy or not. Fig. 5: Tracking eyes from a input video C. Eye Template Creation: The eyes to be located at a proper place in the taken video frame so that the size of template is created accurate tracking. The system will track user's open eye located in template. Eye blinking is the time difference between the beginning and the end of the blink. Once the eye is located, a timer is started to generated whether the driver's eyes are open or closed. Fig. 6: Eye Template All rights reserved by 135

4 Detection of and Fatigue level of Driver D. Blink Detection: Eye blink is a quick action of closing and opening of the eyelids. Eye blink detection has a wide range of applications in human computer interface (HCI) systems. It can also be used in driver s assistance systems. This proposed method detects visual changes in eye locations using the proposed horizontal symmetry feature of the eyes. Our new method detects eye blinks via a standard webcam in real-time. We give overview of different techniques to the problem and describes best possible methods of eye blink detection techniques. The main propose system is the motion analysis method and finding frame difference used for tracking intentionally blink of eyes. We are using some Parameters to describe the blink behaviour: Blink Interval Blink Duration 1) Blink Duration: A common definition of Blink Duration is the time difference between the beginning and the end of the blink, where the beginning and end points are measured at the point where half the amplitude is reached. A better definition of blink duration is the sum of half the rise time and half the fall time in the blink complex. 2) Blink Interval: A common definition of Blink Interval is the time difference between the beginnings of two successive blinks. Fig. 7: Blink Templates III. CONCLUSION In this, a driver s drowsiness detection system has been proposed based on fatigue detection. The proposed system is based on eyes closer, blinking rate of eye detection of the driver. The system continuously captures the image of the subject on site and detects face region, then eyes are detected in the face under consideration to determine if eyes are closed or open, if eyes found to be closed for 4-5 consecutive frames or blinking rate of is found to be abnormal for long duration, for 3-4 consecutive frames then it is concluded that the subject is falling asleep or having state of drowsiness therefore fatigue is detected and a warning alarm issued. The proposed system can be applied in applications like in software industries where developers works continuously for hours to detect their vigilance level, for computer operators, operating critical operations on distant machines, hands free interaction with computational devices/machines, controlling heavy machineries like cranes etc. IV. FUTURE WORK The first and foremost improvement that can be made is to make the system work in real time where the system takes the input video directly from the camera and detect whether the driver is drowsy or not. If the driver is drowsy it gives the voice alert to the driver. If the driver is not drowsy it will continue taking the video as input and perform the calculations. The further improvement that could be made to the project is to determine a fixed threshold such that any face in any illumination i.e in both light and dark could be given as input and the blink could be detected efficiently. Another improvement that can be made is to reduce the computation time by designing an efficient and more accurate algorithm. A. Appendix: APPLICATION AREA Table -1: Various Techniques of Detection PUBLICATION AUTHOR TITLE CENTRAL IDEA YEAR Mitesh Patel, Sara For Driver s eyes detection the iris is Fatigue Detection Lal, Diarmuid detected from the eyes using binary Using Computer Kavanag, Peter MAY 2010 image. Face detection takes place using Vision Rossiter[7] skin segmentation technique. Cha Zhang and A Survey of Recent The Viola Jones face detector technique All rights reserved by 136

5 Detection of and Fatigue Level of Driver Zhengyou Zhang[10] JUNE 2010 Advances in Face Detection Huong Nice Quan[15] Hariri, B. Abtahi, S., Shirmohammadi, S, Martel, L.[19] Staszek, K. Wincza, K. ; Gruszczynski, S.[20] D.Jayanthi, M.Bommy[17] Ashish Bodanwar, Rahul Mudpalliwar, Vikrant Pawar, Kaustubh Gaikwad[5] Ijaz Khan, Hadi Abdullah and Mohd Shamian Bin Zainal[13] K.Subhashini Spurjeon, Yogesh Bahindwar[14] Mohamed A. Mohamed, A. I. Abdel-Fatah, Bassant M.El-Den[8] NOVEMBER 2010 AUGUEST 2011 MAY 2012 OCTOBER 2012 APRIL 2013 JUNE 2013 DECEMBER 2013 AUGUST 2014 Vikash, Dr. N.C. Barwar[3] MAY 2014 Detection for car assisted driver system using image processing analysisinterfacing with hardware Demo: Vision based smart in-car camera system for driver yawning detection Driver's drowsiness monitoring system utilizing microwave Doppler sensor Vision-based Realtime Driver Fatigue Detection System for Efficient Vehicle Control Drowsy Driving Detection System Efficient eyes and mouth detection algorithm using combination of Viola Jones and skin color pixel detection Tracking of Eyes to detect the Driver's Fighting Accident Using Eye Detection for Smartphones Monitoring of Driver Vigilance Using Viola- Jones Detection of and Fatigue level of Driver is used in this research paper. Viola Jones technique contains three basic idea, The integral image, classifier learning with AdaBoost, and the attentional cascade structure. The purpose of this paper is to detect drowsiness in driver accidents. The vision-based system have been widely used. Feature-based, image-based, template matching approaches are used. In this paper we will present a visionbased smart environment using in-car cameras that can be used for real time tracking and monitoring of a driver in order to detect the driver's drowsiness based on yawning detection. System is built on the top of an embedded platform, called APEX. In This sensor utilizes multiple receiver architecture providing electronically steered beam of a receiving antenna. A SSB modulation of the transmitted signal has been applied to allow for beam steering at the intermediate frequency. Investigations of the output signal have been carried out in order to detect and measure eye blink duration and eye blink frequency. In this paper the face and eyes are tracked from the captured video. In this paper Eye-tracking is done using the method of Dynamic template matching. Sensors like alcohol sensor, IR sensor, accelerometer is used for drowsiness detection and consumption of alcohol by driver. This paper presents the Viola Jones improved algorithm for face, eyes and mouth detection in the image form a input video frame. Viola Jones and Skin color pixel technique is used. Driver's fatigue and drowsiness are the major causes of accidents. PERCLOS (Percent of Eyelid Closure) technique is used. Detection is based 2 parts: 1) Based on physiological measures 2) Based on the physical measures. System is implemented in combination with android environment. Using of eyes blink rate of driver for detection. They used Haar cascade library to detect facial features. The All rights reserved by 137

6 Detection of and Fatigue level of Driver Vinay K Diddi, Prof S.B.Jamge[18] A.N.Shewale, Pranita Chaudhari[16] NOVEMBER 2014 DECEMBER 2014 Technique Head Pose and Eye State Monitoring (HEM) for Driver Detection: Overview Real Time Driver Detection System programming is done using Open CV. This paper presents visual analysis of eye index (EI), pupil activity (PA), and head pose(hp) for alertness of vehicle driver. The system uses Viola Jones algorithm which detects images. Haar-like fetaure technique is used to detect face and eye. REFERENCES [1] Singh Himani Parmar, Mehul Jajal, Yadav Priyanka Brijbhan Drowsy Driver Warning System Using Image Processing [2] Ruikar M. National statistics of road traffic accidents in. J Orthop Traumatol Rehabil [3] Vikash, Dr. N.C. Barwar Monitoring of Driver Vigilance Using Viola- Jones Technique International Journal of Application or Innovation in Engineering & Management (IJAIEM) Volume 3, Issue 5, May 2014 [4] Monali V. Rajput, J. W. Bakal, PhD. Execution Scheme for Driver Detection using Yawning Feature International Journal of Computer Applications Volume 62 No.6, January 2013 [5] Ashish Bodanwar, Rahul Mudpalliwar, Vikrant Pawar, Kaustubh Gaikwad Drowsy Driving Detection System International Journal of Engineering and Advanced Technology (IJEAT), Volume-2, Issue-4, April 2013 [6] Vandna Saini Driver Detection System and Techniques: A Review (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 5 (3), 2014 [7] Mitesh Patel, Sara Lal, Diarmuid Kavanag, Peter Rossiter Fatigue Detection Using Computer Vision INTL Journal of Electronics and Telecommunications, 2010, VOL. 56 [8] Bassant M. El-Den Fighting Accident Using Eye Detection for Smartphones Int. Journal of Engineering Research and Applications Vol. 4, Issue 8( Version 2), August 2014 [9] Dr.Suryaprasad J, Sandesh D, Saraswathi V, Swathi D, Manjunath S, "Real Time Drowsy Driver Detection Using Haarcascade Samples", PES Institute of Technology-South Campus, Bangalore, [10] Cha Zhang and Zhengyou Zhang, "A Survey of Recent Advances in Face Detection", June [11] Phillip Ian Wilson, Dr. John Fernandez-Texas A&M University Corpus Christi 6300 Ocean Dr., Corpus Christi, TX ( ), "Facial Feature Detection Using Haar Classifier", JCSC 21, 4 (April 2006) [12] Yasaman Heydarzadeh, Abolfazl Toroghi Haghighat, "An Efficient Face Detection Method Using Adaboost and Facial Parts", Computer, IT and Electronic department Azad University of Qazvin Tehran, Iran [13] Ijaz Khan, Hadi Abdullah and Mohd Shamian Bin Zainal, "Efficient Eyes And Mouth Detection Algorithm Using Combination Of Viola Jones And Skin Color Pixel Detection", University Tun Hussein Onn Malaysia, June Volume 3, No. 4 [14] K.Subhashini Spurjeon, Yogesh Bahindwar, "Tracking Of Eyes To Detect The Driver's ", Department of Electronics and Telecommunication SSGI, BHILAI, Chhattisgarh, INDIA, Volume 1, Issue 5, December 2013 International Journal of Research in Advent Technology [15] Huong Nice Quan, " Detection for car assisted driver system using image processing analysis-interfacing with hardware", Faculty of Electrical & Electronics Engineering University Malaysia Pahang, November 2010 [16] A.N.Shewale, Pranita Chaudhari, "Real Time Driver Detection System", International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering, Vol. 3, Issue 12, December 2014 [17] D.jayanthi, M.bonmmy, "Vision-based Real-time Driver Fatigue Detection System for Efficient Vehicle Control", International Journal of Engineering and Advanced Technology (IJEAT) ISSN: , Volume-2, Issue-1, October 2012 [18] Vinay K Diddi, Prof S.B.Jamge, "Head Pose and Eye State Monitoring (HEM) for Driver Detection: Overview", IJISET - International Journal of Innovative Science, Engineering & Technology, Vol. 1 Issue 9, November 2014 [19] [20] All rights reserved by 138

Distracted Driving: A Novel Approach towards Accident Prevention

Distracted Driving: A Novel Approach towards Accident Prevention Advances in Computational Sciences and Technology ISSN 0973-6107 Volume 10, Number 8 (2017) pp. 2693-2705 Research India Publications http://www.ripublication.com Distracted Driving: A Novel Approach towards

More information

Real Time and Non-intrusive Driver Fatigue Monitoring

Real Time and Non-intrusive Driver Fatigue Monitoring Real Time and Non-intrusive Driver Fatigue Monitoring Qiang Ji and Zhiwei Zhu jiq@rpi rpi.edu Intelligent Systems Lab Rensselaer Polytechnic Institute (RPI) Supported by AFOSR and Honda Introduction Motivation:

More information

Drowsy Driver Detection System

Drowsy Driver Detection System Drowsy Driver Detection System Abstract Driver drowsiness is one of the major causes of serious traffic accidents, which makes this an area of great socioeconomic concern. Continuous monitoring of drivers'

More information

DRIVER FATIGUE DETECTION USING IMAGE PROCESSING AND ACCIDENT PREVENTION

DRIVER FATIGUE DETECTION USING IMAGE PROCESSING AND ACCIDENT PREVENTION Volume 116 No. 11 2017, 91-99 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu doi: 10.12732/ijpam.v116i11.10 ijpam.eu DRIVER FATIGUE DETECTION USING IMAGE

More information

Face Detection: A Literature Review

Face Detection: A Literature Review Face Detection: A Literature Review Dr.Vipulsangram.K.Kadam 1, Deepali G. Ganakwar 2 Professor, Department of Electronics Engineering, P.E.S. College of Engineering, Nagsenvana Aurangabad, Maharashtra,

More information

STUDY OF VARIOUS TECHNIQUES FOR DRIVER BEHAVIOR MONITORING AND RECOGNITION SYSTEM

STUDY OF VARIOUS TECHNIQUES FOR DRIVER BEHAVIOR MONITORING AND RECOGNITION SYSTEM INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) Proceedings of the International Conference on Emerging Trends in Engineering and Management (ICETEM14) ISSN 0976 6367(Print) ISSN 0976

More information

Face Detection System on Ada boost Algorithm Using Haar Classifiers

Face Detection System on Ada boost Algorithm Using Haar Classifiers Vol.2, Issue.6, Nov-Dec. 2012 pp-3996-4000 ISSN: 2249-6645 Face Detection System on Ada boost Algorithm Using Haar Classifiers M. Gopi Krishna, A. Srinivasulu, Prof (Dr.) T.K.Basak 1, 2 Department of Electronics

More information

Combined Approach for Face Detection, Eye Region Detection and Eye State Analysis- Extended Paper

Combined Approach for Face Detection, Eye Region Detection and Eye State Analysis- Extended Paper International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 10, Issue 9 (September 2014), PP.57-68 Combined Approach for Face Detection, Eye

More information

Controlling Humanoid Robot Using Head Movements

Controlling Humanoid Robot Using Head Movements Volume-5, Issue-2, April-2015 International Journal of Engineering and Management Research Page Number: 648-652 Controlling Humanoid Robot Using Head Movements S. Mounica 1, A. Naga bhavani 2, Namani.Niharika

More information

Instant Warning System to Detect Drivers in Fatigue

Instant Warning System to Detect Drivers in Fatigue Instant Warning System to Detect Drivers in Fatigue Amrutha.K 1, Shreekumar.T 2 Department of Computer Science & Engineering, Mangalore Intitute of technology & Engineering, Mangalore, Karnataka, India

More information

SCIENCE & TECHNOLOGY

SCIENCE & TECHNOLOGY Pertanika J. Sci. & Technol. 25 (S): 163-172 (2017) SCIENCE & TECHNOLOGY Journal homepage: http://www.pertanika.upm.edu.my/ Performance Comparison of Min-Max Normalisation on Frontal Face Detection Using

More information

CHAPTER VII PROPOSED SYSTEM TESTING AND IMPLEMENTATION

CHAPTER VII PROPOSED SYSTEM TESTING AND IMPLEMENTATION CHAPTER VII PROPOSED SYSTEM TESTING AND IMPLEMENTATION 7.1 System Testing System testing tests a completely integrated after unit testing to verify that it meets its requirements. i.e, it is the process

More information

Scanned Image Segmentation and Detection Using MSER Algorithm

Scanned Image Segmentation and Detection Using MSER Algorithm Scanned Image Segmentation and Detection Using MSER Algorithm P.Sajithira 1, P.Nobelaskitta 1, Saranya.E 1, Madhu Mitha.M 1, Raja S 2 PG Students, Dept. of ECE, Sri Shakthi Institute of, Coimbatore, India

More information

IMPLEMENTATION METHOD VIOLA JONES FOR DETECTION MANY FACES

IMPLEMENTATION METHOD VIOLA JONES FOR DETECTION MANY FACES IMPLEMENTATION METHOD VIOLA JONES FOR DETECTION MANY FACES Liza Angriani 1,Abd. Rahman Dayat 2, and Syahril Amin 3 Abstract In this study will be explained about how the Viola Jones, and apply it in a

More information

COMMUNICATION AID FOR PARALYZED

COMMUNICATION AID FOR PARALYZED COMMUNICATION AID FOR PARALYZED Dhanya.S 1, Ashma Vincent 2, Mariya Ginu Varghese 3, Jerina Jose 4, Mainu Asokan 5 1 Associate Professor, Department of Electronics and Communication Engineering, Muthoot

More information

Emotion Based Music Player

Emotion Based Music Player ISSN 2278 0211 (Online) Emotion Based Music Player Nikhil Zaware Tejas Rajgure Amey Bhadang D. D. Sapkal Professor, Department of Computer Engineering, Pune, India Abstract: Facial expression provides

More information

A New Social Emotion Estimating Method by Measuring Micro-movement of Human Bust

A New Social Emotion Estimating Method by Measuring Micro-movement of Human Bust A New Social Emotion Estimating Method by Measuring Micro-movement of Human Bust Eui Chul Lee, Mincheol Whang, Deajune Ko, Sangin Park and Sung-Teac Hwang Abstract In this study, we propose a new micro-movement

More information

Implementation of Face Detection System Based on ZYNQ FPGA Jing Feng1, a, Busheng Zheng1, b* and Hao Xiao1, c

Implementation of Face Detection System Based on ZYNQ FPGA Jing Feng1, a, Busheng Zheng1, b* and Hao Xiao1, c 6th International Conference on Mechatronics, Computer and Education Informationization (MCEI 2016) Implementation of Face Detection System Based on ZYNQ FPGA Jing Feng1, a, Busheng Zheng1, b* and Hao

More information

[Kathar*, 5(2): February, 2016] ISSN: (I2OR), Publication Impact Factor: 3.785

[Kathar*, 5(2): February, 2016] ISSN: (I2OR), Publication Impact Factor: 3.785 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY A REVIEW ON DRIVER DROWSINESS AND ALCOHOL DETECTION SYSTEM Mr. Pandurang N. Kathar *, Prof. D.L.Bhuyar, Prof. A.M.Rawate * M.E.

More information

An Efficient System for Real Time Fatigue Detection

An Efficient System for Real Time Fatigue Detection An Efficient System for Real Time Fatigue Detection Syed imran Ali, Dr.Prashant Singh *, Hussain Sabir **, Avinash Sharma ** Research Scholar Dr.K.N.Modi University Newai, Tonk,Rajasthan * Project Manager

More information

A Survey on Drowsy Detection Technology

A Survey on Drowsy Detection Technology A Survey on Drowsy Detection Technology Binita Sumant Singh 1, Asst Prof Ravi Krishan Pandey 2 1 Student, Computer Engineering, GTU PG SCHOOL, Gujarat, India 2 Head of Department, Computer Science Engineering,

More information

Automatic Licenses Plate Recognition System

Automatic Licenses Plate Recognition System Automatic Licenses Plate Recognition System Garima R. Yadav Dept. of Electronics & Comm. Engineering Marathwada Institute of Technology, Aurangabad (Maharashtra), India yadavgarima08@gmail.com Prof. H.K.

More information

Design and Implementation of Smart Car Driving Kulkarni S.D.

Design and Implementation of Smart Car Driving Kulkarni S.D. Design and Implementation of Smart Car Driving Kulkarni S.D. Shendge P.S Dixit P.K. Raut S.A Jadhav D.A. Department of Electronics & Telecommunication Engineering, BMIT, Solapur Abstract In this paper

More information

CS4670 / 5670: Computer Vision Noah Snavely

CS4670 / 5670: Computer Vision Noah Snavely CS4670 / 5670: Computer Vision Noah Snavely Lecture 29: Face Detection Revisited Announcements Project 4 due next Friday by 11:59pm 1 Remember eigenfaces? They don t work very well for detection Issues:

More information

World Journal of Engineering Research and Technology WJERT

World Journal of Engineering Research and Technology WJERT wjert, 2017, Vol. 3, Issue 3, 357-366 Original Article ISSN 2454-695X Shagun et al. WJERT www.wjert.org SJIF Impact Factor: 4.326 NUMBER PLATE RECOGNITION USING MATLAB 1 *Ms. Shagun Chaudhary and 2 Miss

More information

Car Over-Speed Detection with Remote Alerting

Car Over-Speed Detection with Remote Alerting IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Car Over-Speed Detection with Remote Alerting Amey Sawant Jyoti Khandale

More information

A Real-Time Driving Fatigue Monitoring DSP Device Based On Computing Complexity of Binarized Image

A Real-Time Driving Fatigue Monitoring DSP Device Based On Computing Complexity of Binarized Image 2009 Second International Workshop on Computer Science and Engineering A Real-Time Driving Fatigue Monitoring DSP Device Based On Computing Complexity of Binarized Image CHEN Xiang Collage of Information

More information

Fig.1: Impact of drowsy driving

Fig.1: Impact of drowsy driving Drowsy Driver Identification Using MATLAB Video Processing Mrs.S. Dhanalakshmi 1, J.Jasmine Rosepet 2, G.Leema Rosy 3, M.Philominal 4 1,2,3,4 Idhaya Engineering College for Women, Chinnasalem, India Abstract

More information

Automated Driving Car Using Image Processing

Automated Driving Car Using Image Processing Automated Driving Car Using Image Processing Shrey Shah 1, Debjyoti Das Adhikary 2, Ashish Maheta 3 Abstract: In day to day life many car accidents occur due to lack of concentration as well as lack of

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK DRIVER FATIGUE DETECTION KANCHAN VAIDYA, ACHAL KAMBLE, POOJA WARKE Computer Engineering,

More information

EFFICIENT ATTENDANCE MANAGEMENT SYSTEM USING FACE DETECTION AND RECOGNITION

EFFICIENT ATTENDANCE MANAGEMENT SYSTEM USING FACE DETECTION AND RECOGNITION EFFICIENT ATTENDANCE MANAGEMENT SYSTEM USING FACE DETECTION AND RECOGNITION 1 Arun.A.V, 2 Bhatath.S, 3 Chethan.N, 4 Manmohan.C.M, 5 Hamsaveni M 1,2,3,4,5 Department of Computer Science and Engineering,

More information

CROWD ANALYSIS WITH FISH EYE CAMERA

CROWD ANALYSIS WITH FISH EYE CAMERA CROWD ANALYSIS WITH FISH EYE CAMERA Huseyin Oguzhan Tevetoglu 1 and Nihan Kahraman 2 1 Department of Electronic and Communication Engineering, Yıldız Technical University, Istanbul, Turkey 1 Netaş Telekomünikasyon

More information

Real-Time Face Detection and Tracking for High Resolution Smart Camera System

Real-Time Face Detection and Tracking for High Resolution Smart Camera System Digital Image Computing Techniques and Applications Real-Time Face Detection and Tracking for High Resolution Smart Camera System Y. M. Mustafah a,b, T. Shan a, A. W. Azman a,b, A. Bigdeli a, B. C. Lovell

More information

Automatic Electricity Meter Reading Based on Image Processing

Automatic Electricity Meter Reading Based on Image Processing Automatic Electricity Meter Reading Based on Image Processing Lamiaa A. Elrefaei *,+,1, Asrar Bajaber *,2, Sumayyah Natheir *,3, Nada AbuSanab *,4, Marwa Bazi *,5 * Computer Science Department Faculty

More information

ACCIDENT PREVENTION IN VEHICLE WITH EFECTIVE RESCUE OPERATION

ACCIDENT PREVENTION IN VEHICLE WITH EFECTIVE RESCUE OPERATION ISSN: 0976-3104 SPECIAL ISSUE : Emerging Technologies in Networking and Security (ETNS). ARTICLE OPEN ACCESS ACCIDENT PREVENTION IN VEHICLE WITH EFECTIVE RESCUE OPERATION K. Karthick 1, T. Praveen 2, R.

More information

COMPARATIVE PERFORMANCE ANALYSIS OF HAND GESTURE RECOGNITION TECHNIQUES

COMPARATIVE PERFORMANCE ANALYSIS OF HAND GESTURE RECOGNITION TECHNIQUES International Journal of Advanced Research in Engineering and Technology (IJARET) Volume 9, Issue 3, May - June 2018, pp. 177 185, Article ID: IJARET_09_03_023 Available online at http://www.iaeme.com/ijaret/issues.asp?jtype=ijaret&vtype=9&itype=3

More information

An Evaluation of Automatic License Plate Recognition Vikas Kotagyale, Prof.S.D.Joshi

An Evaluation of Automatic License Plate Recognition Vikas Kotagyale, Prof.S.D.Joshi An Evaluation of Automatic License Plate Recognition Vikas Kotagyale, Prof.S.D.Joshi Department of E&TC Engineering,PVPIT,Bavdhan,Pune ABSTRACT: In the last decades vehicle license plate recognition systems

More information

Smart Parking System for Locating Vacant Parking Slots

Smart Parking System for Locating Vacant Parking Slots Smart Parking System for Locating Vacant Parking Slots Akshay Nikam, Priyanka Patil, Shruti Shinde, Sippora Toppo Abstract- In urban cities finding the available parking slots is very difficult, due to

More information

Vehicle Detection using Images from Traffic Security Camera

Vehicle Detection using Images from Traffic Security Camera Vehicle Detection using Images from Traffic Security Camera Lamia Iftekhar Final Report of Course Project CS174 May 30, 2012 1 1 The Task This project is an application of supervised learning algorithms.

More information

International Journal of Computer Sciences and Engineering. Research Paper Volume-5, Issue-12 E-ISSN:

International Journal of Computer Sciences and Engineering. Research Paper Volume-5, Issue-12 E-ISSN: International Journal of Computer Sciences and Engineering Open Access Research Paper Volume-5, Issue-12 E-ISSN: 2347-2693 Performance Analysis of Real-Time Eye Blink Detector for Varying Lighting Conditions

More information

Driver Fatigue Detection System Based on DM3730

Driver Fatigue Detection System Based on DM3730 Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 1191-1196 1191 Driver Fatigue Detection System Based on DM3730 Open Access Ming Cai 1,2,*,

More information

FLASH LiDAR KEY BENEFITS

FLASH LiDAR KEY BENEFITS In 2013, 1.2 million people died in vehicle accidents. That is one death every 25 seconds. Some of these lives could have been saved with vehicles that have a better understanding of the world around them

More information

FACE RECOGNITION BY PIXEL INTENSITY

FACE RECOGNITION BY PIXEL INTENSITY FACE RECOGNITION BY PIXEL INTENSITY Preksha jain & Rishi gupta Computer Science & Engg. Semester-7 th All Saints College Of Technology, Gandhinagar Bhopal. Email Id-Priky0889@yahoo.com Abstract Face Recognition

More information

Wheeler-Classified Vehicle Detection System using CCTV Cameras

Wheeler-Classified Vehicle Detection System using CCTV Cameras Wheeler-Classified Vehicle Detection System using CCTV Cameras Pratishtha Gupta Assistant Professor: Computer Science Banasthali University Jaipur, India G. N. Purohit Professor: Computer Science Banasthali

More information

LabVIEW based Intelligent Frontal & Non- Frontal Face Recognition System

LabVIEW based Intelligent Frontal & Non- Frontal Face Recognition System LabVIEW based Intelligent Frontal & Non- Frontal Face Recognition System Muralindran Mariappan, Manimehala Nadarajan, and Karthigayan Muthukaruppan Abstract Face identification and tracking has taken a

More information

Libyan Licenses Plate Recognition Using Template Matching Method

Libyan Licenses Plate Recognition Using Template Matching Method Journal of Computer and Communications, 2016, 4, 62-71 Published Online May 2016 in SciRes. http://www.scirp.org/journal/jcc http://dx.doi.org/10.4236/jcc.2016.47009 Libyan Licenses Plate Recognition Using

More information

Recognition Of Vehicle Number Plate Using MATLAB

Recognition Of Vehicle Number Plate Using MATLAB Recognition Of Vehicle Number Plate Using MATLAB Mr. Ami Kumar Parida 1, SH Mayuri 2,Pallabi Nayk 3,Nidhi Bharti 4 1Asst. Professor, Gandhi Institute Of Engineering and Technology, Gunupur 234Under Graduate,

More information

Bluetooth Low Energy Sensing Technology for Proximity Construction Applications

Bluetooth Low Energy Sensing Technology for Proximity Construction Applications Bluetooth Low Energy Sensing Technology for Proximity Construction Applications JeeWoong Park School of Civil and Environmental Engineering, Georgia Institute of Technology, 790 Atlantic Dr. N.W., Atlanta,

More information

Morphological Image Processing Approach of Vehicle Detection for Real-Time Traffic Analysis

Morphological Image Processing Approach of Vehicle Detection for Real-Time Traffic Analysis Morphological Image Processing Approach of Vehicle Detection for Real-Time Traffic Analysis Prutha Y M *1, Department Of Computer Science and Engineering Affiliated to VTU Belgaum, Karnataka Rao Bahadur

More information

A Wireless Smart Sensor Network for Flood Management Optimization

A Wireless Smart Sensor Network for Flood Management Optimization A Wireless Smart Sensor Network for Flood Management Optimization 1 Hossam Adden Alfarra, 2 Mohammed Hayyan Alsibai Faculty of Engineering Technology, University Malaysia Pahang, 26300, Kuantan, Pahang,

More information

Keyword: Morphological operation, template matching, license plate localization, character recognition.

Keyword: Morphological operation, template matching, license plate localization, character recognition. Volume 4, Issue 11, November 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Automatic

More information

Experiments with An Improved Iris Segmentation Algorithm

Experiments with An Improved Iris Segmentation Algorithm Experiments with An Improved Iris Segmentation Algorithm Xiaomei Liu, Kevin W. Bowyer, Patrick J. Flynn Department of Computer Science and Engineering University of Notre Dame Notre Dame, IN 46556, U.S.A.

More information

Night-time pedestrian detection via Neuromorphic approach

Night-time pedestrian detection via Neuromorphic approach Night-time pedestrian detection via Neuromorphic approach WOO JOON HAN, IL SONG HAN Graduate School for Green Transportation Korea Advanced Institute of Science and Technology 335 Gwahak-ro, Yuseong-gu,

More information

Face Tracking using Camshift in Head Gesture Recognition System

Face Tracking using Camshift in Head Gesture Recognition System Face Tracking using Camshift in Head Gesture Recognition System Er. Rushikesh T. Bankar 1, Dr. Suresh S. Salankar 2 1 Department of Electronics Engineering, G H Raisoni College of Engineering, Nagpur,

More information

Development of Gaze Detection Technology toward Driver's State Estimation

Development of Gaze Detection Technology toward Driver's State Estimation Development of Gaze Detection Technology toward Driver's State Estimation Naoyuki OKADA Akira SUGIE Itsuki HAMAUE Minoru FUJIOKA Susumu YAMAMOTO Abstract In recent years, the development of advanced safety

More information

Driver status monitoring based on Neuromorphic visual processing

Driver status monitoring based on Neuromorphic visual processing Driver status monitoring based on Neuromorphic visual processing Dongwook Kim, Karam Hwang, Seungyoung Ahn, and Ilsong Han Cho Chun Shik Graduated School for Green Transportation Korea Advanced Institute

More information

Leukemia Detection With Image Processing Using Matlab And Display The Results In Graphical User Interface

Leukemia Detection With Image Processing Using Matlab And Display The Results In Graphical User Interface IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Volume 3, PP 65-69 www.iosrjen.org Leukemia Detection With Image Processing Using Matlab And Display The Results In Graphical

More information

Accident prevention and detection using internet of Things (IOT)

Accident prevention and detection using internet of Things (IOT) ISSN:2348-2079 Volume-6 Issue-1 International Journal of Intellectual Advancements and Research in Engineering Computations Accident prevention and detection using internet of Things (IOT) INSTITUTE OF

More information

Wadehra Kartik, Kathpalia Mukul, Bahl Vasudha, International Journal of Advance Research, Ideas and Innovations in Technology

Wadehra Kartik, Kathpalia Mukul, Bahl Vasudha, International Journal of Advance Research, Ideas and Innovations in Technology ISSN: 2454-132X Impact factor: 4.295 (Volume 4, Issue 1) Available online at www.ijariit.com Hand Detection and Gesture Recognition in Real-Time Using Haar-Classification and Convolutional Neural Networks

More information

Vehicle License Plate Recognition System Using LoG Operator for Edge Detection and Radon Transform for Slant Correction

Vehicle License Plate Recognition System Using LoG Operator for Edge Detection and Radon Transform for Slant Correction Vehicle License Plate Recognition System Using LoG Operator for Edge Detection and Radon Transform for Slant Correction Jaya Gupta, Prof. Supriya Agrawal Computer Engineering Department, SVKM s NMIMS University

More information

OPEN CV BASED AUTONOMOUS RC-CAR

OPEN CV BASED AUTONOMOUS RC-CAR OPEN CV BASED AUTONOMOUS RC-CAR B. Sabitha 1, K. Akila 2, S.Krishna Kumar 3, D.Mohan 4, P.Nisanth 5 1,2 Faculty, Department of Mechatronics Engineering, Kumaraguru College of Technology, Coimbatore, India

More information

Face Detection using 3-D Time-of-Flight and Colour Cameras

Face Detection using 3-D Time-of-Flight and Colour Cameras Face Detection using 3-D Time-of-Flight and Colour Cameras Jan Fischer, Daniel Seitz, Alexander Verl Fraunhofer IPA, Nobelstr. 12, 70597 Stuttgart, Germany Abstract This paper presents a novel method to

More information

A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS

A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS Vol. 12, Issue 1/2016, 42-46 DOI: 10.1515/cee-2016-0006 A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS Slavomir MATUSKA 1*, Robert HUDEC 2, Patrik KAMENCAY 3,

More information

Image Processing and Particle Analysis for Road Traffic Detection

Image Processing and Particle Analysis for Road Traffic Detection Image Processing and Particle Analysis for Road Traffic Detection ABSTRACT Aditya Kamath Manipal Institute of Technology Manipal, India This article presents a system developed using graphic programming

More information

Embracing Complexity. Gavin Walker Development Manager

Embracing Complexity. Gavin Walker Development Manager Embracing Complexity Gavin Walker Development Manager 1 MATLAB and Simulink Proven Ability to Make the Complex Simpler 1970 Stanford Ph.D. thesis, with thousands of lines of Fortran code 2 MATLAB and Simulink

More information

Implementation of License Plate Recognition System in ARM Cortex A8 Board

Implementation of License Plate Recognition System in ARM Cortex A8 Board www..org 9 Implementation of License Plate Recognition System in ARM Cortex A8 Board S. Uma 1, M.Sharmila 2 1 Assistant Professor, 2 Research Scholar, Department of Electrical and Electronics Engg, College

More information

MICROCHIP PATTERN RECOGNITION BASED ON OPTICAL CORRELATOR

MICROCHIP PATTERN RECOGNITION BASED ON OPTICAL CORRELATOR 38 Acta Electrotechnica et Informatica, Vol. 17, No. 2, 2017, 38 42, DOI: 10.15546/aeei-2017-0014 MICROCHIP PATTERN RECOGNITION BASED ON OPTICAL CORRELATOR Dávid SOLUS, Ľuboš OVSENÍK, Ján TURÁN Department

More information

Portable Facial Recognition Jukebox Using Fisherfaces (Frj)

Portable Facial Recognition Jukebox Using Fisherfaces (Frj) Portable Facial Recognition Jukebox Using Fisherfaces (Frj) Richard Mo Department of Electrical and Computer Engineering The University of Michigan - Dearborn Dearborn, USA Adnan Shaout Department of Electrical

More information

OBJECTIVE OF THE BOOK ORGANIZATION OF THE BOOK

OBJECTIVE OF THE BOOK ORGANIZATION OF THE BOOK xv Preface Advancement in technology leads to wide spread use of mounting cameras to capture video imagery. Such surveillance cameras are predominant in commercial institutions through recording the cameras

More information

Near Infrared Face Image Quality Assessment System of Video Sequences

Near Infrared Face Image Quality Assessment System of Video Sequences 2011 Sixth International Conference on Image and Graphics Near Infrared Face Image Quality Assessment System of Video Sequences Jianfeng Long College of Electrical and Information Engineering Hunan University

More information

GamECAR JULY ULY Meetings. 5 Toward the future. 5 Consortium. E Stay updated

GamECAR JULY ULY Meetings. 5 Toward the future. 5 Consortium. E Stay updated NEWSLETTER 1 ULY 2017 JULY The project engine has started and there is a long way to go, but we aim at consuming as less gas as possible! It will be a game, but a serious one. Playing it for real, while

More information

Stabilization of the Mobility in Free Traffic

Stabilization of the Mobility in Free Traffic Indian Journal of Science and Technology, Vol 9(31), DOI: 10.17485/ijst/2016/v9i31/98122, August 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Stabilization of the Mobility in Free Traffic A.

More information

University of Toronto. Companion Robot Security. ECE1778 Winter Wei Hao Chang Apper Alexander Hong Programmer

University of Toronto. Companion Robot Security. ECE1778 Winter Wei Hao Chang Apper Alexander Hong Programmer University of Toronto Companion ECE1778 Winter 2015 Creative Applications for Mobile Devices Wei Hao Chang Apper Alexander Hong Programmer April 9, 2015 Contents 1 Introduction 3 1.1 Problem......................................

More information

Authenticated Automated Teller Machine Using Raspberry Pi

Authenticated Automated Teller Machine Using Raspberry Pi Authenticated Automated Teller Machine Using Raspberry Pi 1 P. Jegadeeshwari, 2 K.M. Haripriya, 3 P. Kalpana, 4 K. Santhini Department of Electronics and Communication, C K college of Engineering and Technology.

More information

Real-Time Tracking via On-line Boosting Helmut Grabner, Michael Grabner, Horst Bischof

Real-Time Tracking via On-line Boosting Helmut Grabner, Michael Grabner, Horst Bischof Real-Time Tracking via On-line Boosting, Michael Grabner, Horst Bischof Graz University of Technology Institute for Computer Graphics and Vision Tracking Shrek M Grabner, H Grabner and H Bischof Real-time

More information

Graduation Design Project Proposal Form

Graduation Design Project Proposal Form King Saud University College of Engineering Electrical Engineering Department Semester: 381 Graduation Design Project Proposal Form Project # E1 Project Title: Design, Manufacturing and Characterization

More information

A Survey on Different Face Detection Algorithms in Image Processing

A Survey on Different Face Detection Algorithms in Image Processing A Survey on Different Face Detection Algorithms in Image Processing Doyle Fermi 1, Faiza N B 2, Ranjana Radhakrishnan 3, Swathi S Kartha 4, Anjali S 5 U.G. Student, Department of Computer Engineering,

More information

Multi-User Blood Alcohol Content Estimation in a Realistic Simulator using Artificial Neural Networks and Support Vector Machines

Multi-User Blood Alcohol Content Estimation in a Realistic Simulator using Artificial Neural Networks and Support Vector Machines Multi-User Blood Alcohol Content Estimation in a Realistic Simulator using Artificial Neural Networks and Support Vector Machines ROBINEL Audrey & PUZENAT Didier {arobinel, dpuzenat}@univ-ag.fr Laboratoire

More information

Integrated Driving Aware System in the Real-World: Sensing, Computing and Feedback

Integrated Driving Aware System in the Real-World: Sensing, Computing and Feedback Integrated Driving Aware System in the Real-World: Sensing, Computing and Feedback Jung Wook Park HCI Institute Carnegie Mellon University 5000 Forbes Avenue Pittsburgh, PA, USA, 15213 jungwoop@andrew.cmu.edu

More information

An Overview of TTI Automated and Connected Vehicles Research

An Overview of TTI Automated and Connected Vehicles Research An Overview of TTI Automated and Connected Vehicles Research Michael P. Manser, Ph.D. Human Factors Program Manager Associate Director of Safety Initiatives Center for Transportation Safety Texas A&M Transportation

More information

AUSTRALIAN JOURNAL OF BASIC AND APPLIED SCIENCES

AUSTRALIAN JOURNAL OF BASIC AND APPLIED SCIENCES AUSTRALIAN JOURNAL OF BASIC AND APPLIED SCIENCES ISSN:1991-8178 EISSN: 2309-8414 Journal home page: www.ajbasweb.com Adaptive Traffic light using Image Processing and Fuzzy Logic 1 Mustafa Hassan and 2

More information

Vehicle Detection, Tracking and Counting Objects For Traffic Surveillance System Using Raspberry-Pi

Vehicle Detection, Tracking and Counting Objects For Traffic Surveillance System Using Raspberry-Pi Vehicle Detection, Tracking and Counting Objects For Traffic Surveillance System Using Raspberry-Pi MR. MAJETI V N HEMANTH KUMAR 1, MR. B.VASANTH 2 1 [M.Tech]/ECE, Student, EMBEDDED SYSTEMS (ES), JNTU

More information

P1.4. Light has to go where it is needed: Future Light Based Driver Assistance Systems

P1.4. Light has to go where it is needed: Future Light Based Driver Assistance Systems Light has to go where it is needed: Future Light Based Driver Assistance Systems Thomas Könning¹, Christian Amsel¹, Ingo Hoffmann² ¹ Hella KGaA Hueck & Co., Lippstadt, Germany ² Hella-Aglaia Mobile Vision

More information

Live Hand Gesture Recognition using an Android Device

Live Hand Gesture Recognition using an Android Device Live Hand Gesture Recognition using an Android Device Mr. Yogesh B. Dongare Department of Computer Engineering. G.H.Raisoni College of Engineering and Management, Ahmednagar. Email- yogesh.dongare05@gmail.com

More information

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION International Journal of Computer Science and Communication Vol. 2, No. 2, July-December 2011, pp. 593-599 INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION Chetan Sharma 1 and Amandeep Kaur 2 1

More information

Voice Guided Military Robot for Defence Application

Voice Guided Military Robot for Defence Application IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 11 April 2016 ISSN (online): 2349-6010 Voice Guided Military Robot for Defence Application Palak N. Patel Minal

More information

Face Detector using Network-based Services for a Remote Robot Application

Face Detector using Network-based Services for a Remote Robot Application Face Detector using Network-based Services for a Remote Robot Application Yong-Ho Seo Department of Intelligent Robot Engineering, Mokwon University Mokwon Gil 21, Seo-gu, Daejeon, Republic of Korea yhseo@mokwon.ac.kr

More information

Intelligent Sensors for Real-Time Hazard Detection and Visual Indication on Highways

Intelligent Sensors for Real-Time Hazard Detection and Visual Indication on Highways Intelligent Sensors for Real-Time Hazard Detection and Visual Indication on Highways J. Oliveira a, J. Soares a, A. R. Lourenco a,b, R. P. Duarte c a ADEETC, Instituto Superior de Engenharia de Lisboa,

More information

A new technique for distance measurement of between vehicles to vehicles by plate car using image processing

A new technique for distance measurement of between vehicles to vehicles by plate car using image processing Available online at www.sciencedirect.com Procedia Engineering 32 (2012) 348 353 I-SEEC2011 A new technique for distance measurement of between vehicles to vehicles by plate car using image processing

More information

RESEARCH AND DEVELOPMENT OF DSP-BASED FACE RECOGNITION SYSTEM FOR ROBOTIC REHABILITATION NURSING BEDS

RESEARCH AND DEVELOPMENT OF DSP-BASED FACE RECOGNITION SYSTEM FOR ROBOTIC REHABILITATION NURSING BEDS RESEARCH AND DEVELOPMENT OF DSP-BASED FACE RECOGNITION SYSTEM FOR ROBOTIC REHABILITATION NURSING BEDS Ming XING and Wushan CHENG College of Mechanical Engineering, Shanghai University of Engineering Science,

More information

Revision of the EU General Safety Regulation and Pedestrian Safety Regulation

Revision of the EU General Safety Regulation and Pedestrian Safety Regulation AC.nl Revision of the EU General Safety Regulation and Pedestrian Safety Regulation 11 September 2018 ETSC isafer Fitting safety as standard Directorate-General for Internal Market, Automotive and Mobility

More information

A Novel Morphological Method for Detection and Recognition of Vehicle License Plates

A Novel Morphological Method for Detection and Recognition of Vehicle License Plates American Journal of Applied Sciences 6 (12): 2066-2070, 2009 ISSN 1546-9239 2009 Science Publications A Novel Morphological Method for Detection and Recognition of Vehicle License Plates 1 S.H. Mohades

More information

Various Calibration Functions for Webcams and AIBO under Linux

Various Calibration Functions for Webcams and AIBO under Linux SISY 2006 4 th Serbian-Hungarian Joint Symposium on Intelligent Systems Various Calibration Functions for Webcams and AIBO under Linux Csaba Kertész, Zoltán Vámossy Faculty of Science, University of Szeged,

More information

ENHANCHED PALM PRINT IMAGES FOR PERSONAL ACCURATE IDENTIFICATION

ENHANCHED PALM PRINT IMAGES FOR PERSONAL ACCURATE IDENTIFICATION ENHANCHED PALM PRINT IMAGES FOR PERSONAL ACCURATE IDENTIFICATION Prof. Rahul Sathawane 1, Aishwarya Shende 2, Pooja Tete 3, Naina Chandravanshi 4, Nisha Surjuse 5 1 Prof. Rahul Sathawane, Information Technology,

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.72 International Journal of Advance Engineering and Research Development Volume 4, Issue 10, October -2017 e-issn (O): 2348-4470 p-issn (P): 2348-6406 REVIEW

More information

PEDESTRIAN AND OBJECT DETECTION SYSTEM IN VEHICLES FOR SAFETY DRIVING

PEDESTRIAN AND OBJECT DETECTION SYSTEM IN VEHICLES FOR SAFETY DRIVING PEDESTRIAN AND OBJECT DETECTION SYSTEM IN VEHICLES FOR SAFETY DRIVING J. Ram Prabu and S. Abinaya Department of EEE, Kumaraguru College of Technology, Coimbatore, India ABSTRACT In this paper a new image

More information

Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples

Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples 2011 IEEE Intelligent Vehicles Symposium (IV) Baden-Baden, Germany, June 5-9, 2011 Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples Daisuke Deguchi, Mitsunori

More information

PerSec. Pervasive Computing and Security Lab. Enabling Transportation Safety Services Using Mobile Devices

PerSec. Pervasive Computing and Security Lab. Enabling Transportation Safety Services Using Mobile Devices PerSec Pervasive Computing and Security Lab Enabling Transportation Safety Services Using Mobile Devices Jie Yang Department of Computer Science Florida State University Oct. 17, 2017 CIS 5935 Introduction

More information

Obstacle Avoidance Robotic Vehicle Using Ultrasonic Sensor, Android And Bluetooth For Obstacle Detection

Obstacle Avoidance Robotic Vehicle Using Ultrasonic Sensor, Android And Bluetooth For Obstacle Detection Obstacle Avoidance Robotic Vehicle Using Ultrasonic Sensor, Android And Bluetooth For Obstacle Detection Vaghela Ankit 1, Patel Jigar 2, Vaghela Savan 3 1Vaghela Ankit, Dept. Of E&C Engineering, Sigma

More information

Huang Ke 1,2 *, Weng Ji 1 1 Faculty of Architecture and Urban Planning, Chongqing University, Chongqing,

Huang Ke 1,2 *, Weng Ji 1 1 Faculty of Architecture and Urban Planning, Chongqing University, Chongqing, [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 23 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(23), 2014 [14269-14274] Contrast threshold research of small target visibility

More information