Independent Work Report Spring, TrafficAssist. A monocular camera based approach to identifying. traffic situations

Size: px
Start display at page:

Download "Independent Work Report Spring, TrafficAssist. A monocular camera based approach to identifying. traffic situations"

Transcription

1 Independent Work Report Spring, 2013 TrafficAssist A monocular camera based approach to identifying traffic situations Horia Stefan Radoi, prof. Alain Kornhauser (advisor,orfe) Abstract This paper accompanies a software designed to implement a traffic situation identificator. It identifies lane markings and other traffic elements (other vehicles, obstacles in the road etc.), and was designed to be used as part of the visual input of an autonomous vehicle, in addition to the stereo vision. It manages to identify road situations in real time, and to signal the driver of possible scenarios. It creates a platform for a robust, platform and vehicle independent software that requires little to no calibration to identify relevant traffic situations. 1

2 1. Introduction Imagine you are out, on a Casual Wednesday, after celebrating your friends anniversary. Both you and your friend had a couple too many drinks, and are in no way capable of driving. You decide to call a taxi, and you insist that your friend should do the same. He insists that he is fine, and convinces you that he can drive, and that he can get home safely. He has, after all, driven for the past 5 years, and knows the road like the back of his hand. The bar you met up is close to a highway, and from the highway, your friend can get home in 5 minutes. He drives off, and as you are about to enter the taxi, you hear a loud crash, which you ignore. The following day you find that your friend was involved in an accident, and he is in serious trouble with the law. You are happy that your friend was not involved in a fatality, and try to make sense of what happened the previous night. Unfortunately, the scenario we presented is not unique, and can happen multiple times a day. It is estimated that, in 2010, in the United States, there were 32,885 deaths and around 2,239,000 injuries 1 2 as a result of the 5,419,000 auto vehicle crashes. Out of these fatalities, 31% were alcohol related. Since it is beyond the scope of this paper to criticize drunk driving, and given the inevitability of such behaviour, given the current legislation and human mentality, it is up to car manufacturers and engineers 1 nrd.nhtsa.dot.gov/pubs/ pdf 2 drv_factsheet.html 2

3 to provide safety nets, should this behaviour happen, and limit the damages to both the driver and to the people involved in crashes. Recent years have seen a multitude of safety devices implemented in auto vehicles, starting from the mandatory seat belts and airbags for protection, continuing with ABS, Automatic Shifting, Cruise control and GPS receivers integrated into the car, and ending with assistance for stop and go traffic and parking assistance. These additions have the role of protecting the driver and aiding him in the driving activity, by removing mechanical distractions(changing gears, pressing the gas pedal while on the highway) and providing an audible or visual assistance in the case of slow movement (parking or pulling out of a parking spot, stop and go traffic etc.). Perhaps the most important function that the future reserves is that of fully autonomous vehicles: vehicles that can drive themselves based on information they acquire from their surroundings and from GPS data, vehicles that can interact with each other, that can cluster and drive together, making better informed decisions about traffic flow, and, slowly, developing a fully autonomous traffic system, in which the driver is completely removed from the control loop. This future has the potential of drastically reducing the number of drunk related accidents, by the sheer virtue of removing the concept of a drunk driver. TrafficAssist, the software that accompanies this paper aims to help shape such an environment. It provides a monocular camera assistance system that can be attached to any vehicle s dashboard, and it will help the user identify traffic lanes and oncoming traffic. The software is aimed at being integrated 3

4 into an autonomous vehicle, and provides valuable information about the traffic conditions, information which can be used together with a stereo vision system to determine exact positions of vehicles and road obstacles based on the velocity and orientation of the car they are attached to. It is designed to work using a general, off the shelf webcam for image acquisition, and it is developed as a stand alone application on a non dedicated laptop. In its final implementation, it will use a similar input configuration, but run on a dedicated vision processing server integrated into the vehicle. 2. Overview 2.a. Background The necessity of autonomous vehicles rose as the demand for more safety in auto vehicles increased. There is currently legislation for more than 70 safety devices that can be and should be incorporated into an auto vehicle, and all are designed to aid the driver either in driving or in case of a collision. One characteristic of driving is its repetitiveness, which can become strenuous on a driver, whose full attention needs to be focused on the road and on his surroundings, most of the time exercised in an environment which rarely changes (while driving on a highway or Interstate, or in stop and go traffic). At the same time, the road infrastructure is carefully legislated, and the driving environment has a strict set of rules for every possible situation. It is a shame, then, that such a repetitive action cannot be automated, and the human driver ( Errare humanum est to err is human) be removed from the driving loop, and allowed the freedom to enjoy his driving experience without him having to worry about other 4

5 traffic participants. Previous work has been done in autonomous vehicle engineering. Starting with the DARPA challenges in 2004, 2005 and 2007, and continuing with the Google Driverless Car, it has been proven that autonomous vehicles can be built and that they can interact with human driven traffic and obey traffic laws. Combined with the emergence of hybrid and electric cars, the field of autonomous 7 vehicles has a huge potential of growth and is already being implemented, if at a lower level now, at a 8 higher level as soon as next year, with Mercedes 2014 S Class. Teams that have participated in the DARPA challenges have continued their research, and, including Princeton s Autonomous Vehicle Engineering 2.b Implementation The software was designed to be used as a standalone application, or as part of an integrated system. In its current form, it identifies lanes and has a clear representation of object edges. It will be able to implement an object classification and object tracking, by grouping the identified elements into three categories, using the vehicle it is located in as a point of reference: moving in the same direction as the vehicle (small difference in size, object shrinks as time goes by, or size difference is small when it

6 brakes), stationary objects in the scenery, or objects not moving relative to the vehicle (they appear as growing at a constant rate that is consistent to the measured speed of the vehicle) and objects moving towards the vehicle (size growing very fast, and rate of change consistent with a speed greater than that measured by the test vehicle). The software has the capability to be integrated into a larger system, as a supplementary visual input method for an autonomous vehicle, in addition to its stereo vision sensors, and can better interpret data if it has access to an accelerometer (to measure the real speed of the test vehicle). While GPS positioning would be a nice addition to the project, it is not necessary, since the software can be programmed to identify an environment based on visual cues (ie. many wide lanes for a highway environment, houses or buildings for an urban environment etc.) 3. TrafficAssist 3.a Hardware This project was developed and tested on a Sony VPCF127FX laptop computer(intel Core i7 CPU 1.73 GHz x 8), running Ubuntu 12.04, 64 bit. We have decided on a top of the shelf webcam ( Logitech C920, 1080p widescreen). This was consistent with our wish to make the hardware requirement as accessible as possible, and, at the same time, took advantage of this webcam s high pixel count (possibility to capture highly detailed images for the puppet Matte and the background) and auto focus. While, at times, the constant autofocus proved 6

7 to be a nuisance in image acquisition, the algorithms used were able to account for this flaw. For the purposes of testing this software, we have also used a 2004 BMW Z4, and acquired images in the area surrounding Princeton University, on Route 1 and Washington Road. The camera was placed on the passenger s side, close to the center of the vehicle, at the dashboard level. It was physically placed at 1.5 meters from the front of the car, at a height of 1 meter from the road level. 3.b Software OpenCV and Python OpenCV is an open source vision platform, released under a BSD licence, free for both academic and commercial use. It was written in C and C++, and provides interfaces for C, C++, Python and Java, under Windows, Linux, Mac OS, ios and Android. OpenCV uses the full computational power of a multi core computer, and provides a good framework for real time image processing. OpenCV contains over 500 optimized functions, for immediate usage. It features a growing online community, and very well documented community support, through both their own wiki and the StackOverflow website. This availability of algorithm implementation made it an essential tool for this project. The learning curve is steep, but once one understands the basic functionality, OpenCV proves to be a powerful image manipulation software. The OpenCV libraries and functions are built in a way that enables interaction between different programmers, by providing cross platform and language independent support. OpenCV features tutorials for multiple platforms, and the documentation files 7

8 feature all available programming implementations (C++, C, Python etc.). The OpenCV version used in this project is OpenCV This project was coded in Python. It is a very lightweight programming platform, providing the power of C++ and enabling the same object oriented programming functionality, while reducing the amount of code needed to be written. It provided a very good educational environment for the initial implementation of the OpenCV functions. Unfortunately, since the OpenCV developers are still implementing functions in Python, the lack of documentation for those functions proved to be an obstacle in implementing the program. The Python build used in the early phases of project was c Implementation The software is designed to use both real time input and pre recorded input. For consistency, during testing, a pre recorded video sequence was used as input. Once a stream is determined, the software processes each frame individually, by first determining the edges of the objects present (Using Sobel Operators and Canny edge detectors). This information is going to be used by the object classifier. The Canny edge detector is used with Hough transformations to determine the straight lines in the image. These lines, resulting from the prominent edges, are the basis of the lane identification of the software. 8

9 Future development includes identifying objects into the three classes described earlier (moving with, away from and towards the camera) and extrapolating the POV image to a top down (bird s eye) view of the world. By providing this extrapolation, a future autonomous vehicle can identify the best route to avoid road congestion or to tackle traffic problems as they arise. 4. Tests and results The system was tested in a highway setting around Princeton, NJ. The videos captured identify common traffic situations, such as stop and go traffic, following a vehicle, following a vehicle that brakes and accelerates. A test video was captured in an urban environment as well (Washington Road), and another test video captured a curving road (exiting a turnpike). So far, the results are satisfying, with the sobel operator identifying contours and creating a good basis for lane detection. Future developments include restricting the region of interest of the image to focus only on the road ahead (thus ignoring what happens to the sky and on the reflection of the car), and a better identification of discontinuous lines. Some test results can be seen in the Appendix. 9

10 5. Related Work 5.a PAVE In 2005 and 2007, Princeton s Autonomous Vehicle Engineering team participated in the two DARPA challenges. Both teams led by professor Alain Kornhauser, composed of undergraduate students, built two autonomous vehicles to participate in each respective competition. Even though the cars were functional, some of the algorithms used in their development became obsolete, as did some of the hardware on the vehicles. In 2012, a group of PAVE students including myself started porting the software of PAVE from the Microsoft Robotics Studio to the Robot Operating System (ROS), which has a better support for OpenCV implementations. The hardware used on these vehicles included both color stereo vision cameras and monocular, black and white cameras. The approach that PAVE takes is that since humans can drive using only vision, it is not unreasonable to consider a self driving car that utilizes only vision porcessing. The end goal is that the TrafficAssist software is going to be used on the PAVE vehicle. 5.b Google Self Driving car The Google Self Driving car is perhaps one of the best known examples of autonomous vehicles. The Google project, started under the coordination of Sebastian Thrun (the coordinator of the Stanford teams at the 2004, 2005 and 2007 DARPA challenges), has been leading both technological 10

11 advances and legislation to be pushed towards a future of autonomous driving vehicles. In a presentation given earlier this semester, during ORF 401, Joshua Herbach, a former Princeton Undergraduate and member of the PAVE project, currently working on the Google Self Driving car, showed some of the mechanics of the Google vehicle. While different from the PAVE approach in that most of the information regarding the environment comes from the huge LIDAR unit located above the vehicle (to obtain a representation of its surroundings), the Google car uses vision as a means of verification of its input data. This approach takes into account the huge database that Google has at hand (with the Google Street view), and uses a group of people to map out the specifics of each environment (traffic signs, speed limits etc.). In addition, the Google approach is sensitive to change, in that, if a car identifies that an environment is not consistent with its databases, it prompts its driver to take control of the car, until the area is updated. While Google s approach is working, it is severely ignoring the potential of vision processing: modifications in the environment happen all the time (branches falling, potholes forming, water on the road etc.), and a vision based approach can easily identify these obstacles and act accordingly. 6. Limitations and further work The current limitations of the project come from the restricted time frame given by the University in completing the independent work. While the project is not currently in a finished state, it will still be improved and more features can be added. 11

12 The current lane detection system assumes continuous lane markings, and does not take into account perspective. So far, it has only been tested from one point of view, but we plan to extend it to be independent of location (perhaps needing only some calibration once it is mounted into a new place). Some alternative algorithms or approaches to implemented algorithms are available, and they are presented as more efficient and more exact approximations of lane detections or object 9 identification. A quick means of efficiency is to restrict the ROI of the image to only an area located underneath the horizon line (since that is mostly where the road will be). Alternatively, ffthe image can be classified into color regions, and those corresponding to sky or side of the road can be ignored (for the purposes of lane detection and traffic identification). 7. Conclusions While this project is still in an early state, we are working on developing it into a fully functional, standalone project. Throughout this project we have identified the potential of monocular cameras in image processing, and have formed a basis of knowledge as to how a series of 2D images can be used to simulate a 3D environment. Moreover, starting at the 2D Point of View perspective, the software has shown a potential of extrapolating to a 2D, bird s eye perspective, thus aiding in programming an Artificial intelligence module to determine the best path it can take to reach its destination. 9 Kim, ZuWhan. "Robust lane detection and tracking in challenging scenarios." Intelligent Transportation Systems, IEEE Transactions on9.1 (2008):

13 8. Appendix Some of the images resulted from testing the system: Fig 1.a Test frame of a highway traffic situation Fig 1.b Canny edge detection and Hough line transformation used on the previous image to detect lanes. Some false positives are identified in the reflection of the car and on the sky, but these issues can be resolved by restricting the ROI of the image to only the road surface (or anything below the horizon line). 13

14 Fig 1.c Two successive Sobel operators applied to the same image, once in a vertical direction and once in a horizontal direction, are here superimposed to create a good representation of the edges of the objects. Individually, the Sobel operators can provide useful information about the surroundings (the horizontal one providing a good approximation of where the shadows of the vehicles are, and the vertical one providing another means to identify traffic lanes) Honor Pledge This paper represents my own work, in accordance with University Policies. [Horia Stefan Radoi] 14

15 Acknowledgements I would like to thank my independent work advisor, professor Alain Kornhauser, for coordinating my work and steering me in the right track, even though I was a pain to work with. I would also like to thank the Computer Science department at Princeton University, along with the IW coordinators, for always reminding me of deadlines and for all the passion and dedication they have in teaching me, us to become better scholars. I would also want to thank all the people who have supported me in conducting my reasearch, Kevin Yang for allowing me to use his car for weird purposes and all my friends at Colonial Club who have supported me in their own ways. Lastly, I would want to reiterate my gratitude to professor Adam Finkelstein for allowing me to learn OpenCV and develop as a vision processing programmer. References and bibliography Academic papers Kim, ZuWhan. "Robust lane detection and tracking in challenging scenarios." Intelligent Transportation Systems, IEEE Transactions on9.1 (2008): Wang, Yue, Eam Khwang Teoh, and Dinggang Shen. "Lane detection and tracking using B Snake." Image and Vision computing 22.4 (2004):

16 Wang, Yue, Dinggang Shen, and Eam Khwang Teoh. "Lane detection using spline model." Pattern Recognition Letters 21.8 (2000): Wang, Yue, Dinggang Shen, and Eam Khwang Teoh. "Lane detection using catmull rom spline." IEEE International Conference on Intelligent Vehicles OpenCV, Python Tutorials Tutorials: Rahman, Abid, OpenCV Python Tutorials, <opencvpython.blogspot.ro> Rahmbihia, Jay, Paranoid Android, < < < < (2007). Pisarevsky, Vadim. "Introduction to OpenCV." Intel Corporation, Software and Solution Szeliski, Richard. Computer vision: Algorithms and applications. Springer,

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

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

Lane Segmentation for Self-Driving Cars using Image Processing

Lane Segmentation for Self-Driving Cars using Image Processing Lane Segmentation for Self-Driving Cars using Image Processing Aman Tanwar 1, Jayakrishna 2, Mohit Kumar Yadav 3, Niraj Singh 4, Yogita Hambir 5 1,2,3,4,5Department of Computer Engineering, Army Institute

More information

Evaluation of Connected Vehicle Technology for Concept Proposal Using V2X Testbed

Evaluation of Connected Vehicle Technology for Concept Proposal Using V2X Testbed AUTOMOTIVE Evaluation of Connected Vehicle Technology for Concept Proposal Using V2X Testbed Yoshiaki HAYASHI*, Izumi MEMEZAWA, Takuji KANTOU, Shingo OHASHI, and Koichi TAKAYAMA ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

More information

Revised and extended. Accompanies this course pages heavier Perception treated more thoroughly. 1 - Introduction

Revised and extended. Accompanies this course pages heavier Perception treated more thoroughly. 1 - Introduction Topics to be Covered Coordinate frames and representations. Use of homogeneous transformations in robotics. Specification of position and orientation Manipulator forward and inverse kinematics Mobile Robots:

More information

Autonomous driving made safe

Autonomous driving made safe tm Autonomous driving made safe Founder, Bio Celite Milbrandt Austin, Texas since 1998 Founder of Slacker Radio In dash for Tesla, GM, and Ford. 35M active users 2008 Chief Product Officer of RideScout

More information

Intelligent Technology for More Advanced Autonomous Driving

Intelligent Technology for More Advanced Autonomous Driving FEATURED ARTICLES Autonomous Driving Technology for Connected Cars Intelligent Technology for More Advanced Autonomous Driving Autonomous driving is recognized as an important technology for dealing with

More information

March 10, Greenbelt Road, Suite 400, Greenbelt, MD Tel: (301) Fax: (301)

March 10, Greenbelt Road, Suite 400, Greenbelt, MD Tel: (301) Fax: (301) Detection of High Risk Intersections Using Synthetic Machine Vision John Alesse, john.alesse.ctr@dot.gov Brian O Donnell, brian.odonnell.ctr@dot.gov Stinger Ghaffarian Technologies, Inc. Cambridge, Massachusetts

More information

A Matter of Trust: white paper. How Smart Design Can Accelerate Automated Vehicle Adoption. Authors Jack Weast Matt Yurdana Adam Jordan

A Matter of Trust: white paper. How Smart Design Can Accelerate Automated Vehicle Adoption. Authors Jack Weast Matt Yurdana Adam Jordan white paper A Matter of Trust: How Smart Design Can Accelerate Automated Vehicle Adoption Authors Jack Weast Matt Yurdana Adam Jordan Executive Summary To Win Consumers, First Earn Trust It s an exciting

More information

Lane Detection in Automotive

Lane Detection in Automotive Lane Detection in Automotive Contents Introduction... 2 Image Processing... 2 Reading an image... 3 RGB to Gray... 3 Mean and Gaussian filtering... 5 Defining our Region of Interest... 6 BirdsEyeView Transformation...

More information

DENSO www. densocorp-na.com

DENSO www. densocorp-na.com DENSO www. densocorp-na.com Machine Learning for Automated Driving Description of Project DENSO is one of the biggest tier one suppliers in the automotive industry, and one of its main goals is to provide

More information

Baset Adult-Size 2016 Team Description Paper

Baset Adult-Size 2016 Team Description Paper Baset Adult-Size 2016 Team Description Paper Mojtaba Hosseini, Vahid Mohammadi, Farhad Jafari 2, Dr. Esfandiar Bamdad 1 1 Humanoid Robotic Laboratory, Robotic Center, Baset Pazhuh Tehran company. No383,

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

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

The 3xD Simulator for Intelligent Vehicles Professor Paul Jennings. 20 th October 2016

The 3xD Simulator for Intelligent Vehicles Professor Paul Jennings. 20 th October 2016 The 3xD Simulator for Intelligent Vehicles Professor Paul Jennings 20 th October 2016 An academic department within the science faculty Established in 1980 by Professor Lord Bhattacharyya as Warwick Manufacturing

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

Deliverable D1.6 Initial System Specifications Executive Summary

Deliverable D1.6 Initial System Specifications Executive Summary Deliverable D1.6 Initial System Specifications Executive Summary Version 1.0 Dissemination Project Coordination RE Ford Research and Advanced Engineering Europe Due Date 31.10.2010 Version Date 09.02.2011

More information

A software video stabilization system for automotive oriented applications

A software video stabilization system for automotive oriented applications A software video stabilization system for automotive oriented applications A. Broggi, P. Grisleri Dipartimento di Ingegneria dellinformazione Universita degli studi di Parma 43100 Parma, Italy Email: {broggi,

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

MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT

MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT MULTI-LAYERED HYBRID ARCHITECTURE TO SOLVE COMPLEX TASKS OF AN AUTONOMOUS MOBILE ROBOT F. TIECHE, C. FACCHINETTI and H. HUGLI Institute of Microtechnology, University of Neuchâtel, Rue de Tivoli 28, CH-2003

More information

ADAS Development using Advanced Real-Time All-in-the-Loop Simulators. Roberto De Vecchi VI-grade Enrico Busto - AddFor

ADAS Development using Advanced Real-Time All-in-the-Loop Simulators. Roberto De Vecchi VI-grade Enrico Busto - AddFor ADAS Development using Advanced Real-Time All-in-the-Loop Simulators Roberto De Vecchi VI-grade Enrico Busto - AddFor The Scenario The introduction of ADAS and AV has created completely new challenges

More information

Semi-Autonomous Parking for Enhanced Safety and Efficiency

Semi-Autonomous Parking for Enhanced Safety and Efficiency Technical Report 105 Semi-Autonomous Parking for Enhanced Safety and Efficiency Sriram Vishwanath WNCG June 2017 Data-Supported Transportation Operations & Planning Center (D-STOP) A Tier 1 USDOT University

More information

C-ITS Platform WG9: Implementation issues Topic: Road Safety Issues 1 st Meeting: 3rd December 2014, 09:00 13:00. Draft Agenda

C-ITS Platform WG9: Implementation issues Topic: Road Safety Issues 1 st Meeting: 3rd December 2014, 09:00 13:00. Draft Agenda C-ITS Platform WG9: Implementation issues Topic: Road Safety Issues 1 st Meeting: 3rd December 2014, 09:00 13:00 Venue: Rue Philippe Le Bon 3, Room 2/17 (Metro Maalbek) Draft Agenda 1. Welcome & Presentations

More information

Autonomous Mobile Robot Design. Dr. Kostas Alexis (CSE)

Autonomous Mobile Robot Design. Dr. Kostas Alexis (CSE) Autonomous Mobile Robot Design Dr. Kostas Alexis (CSE) Course Goals To introduce students into the holistic design of autonomous robots - from the mechatronic design to sensors and intelligence. Develop

More information

Interaction in Urban Traffic Insights into an Observation of Pedestrian-Vehicle Encounters

Interaction in Urban Traffic Insights into an Observation of Pedestrian-Vehicle Encounters Interaction in Urban Traffic Insights into an Observation of Pedestrian-Vehicle Encounters André Dietrich, Chair of Ergonomics, TUM andre.dietrich@tum.de CARTRE and SCOUT are funded by Monday, May the

More information

TEAM AERO-I TEAM AERO-I JOURNAL PAPER DELHI TECHNOLOGICAL UNIVERSITY Journal paper for IARC 2014

TEAM AERO-I TEAM AERO-I JOURNAL PAPER DELHI TECHNOLOGICAL UNIVERSITY Journal paper for IARC 2014 TEAM AERO-I TEAM AERO-I JOURNAL PAPER DELHI TECHNOLOGICAL UNIVERSITY DELHI TECHNOLOGICAL UNIVERSITY Journal paper for IARC 2014 2014 IARC ABSTRACT The paper gives prominence to the technical details of

More information

Building a Computer Vision Research Vehicle with ROS

Building a Computer Vision Research Vehicle with ROS Building a Computer Vision Research Vehicle with ROS ROSCon 2017 2017-09-21 Vancouver Andreas Fregin, Markus Roth, Markus Braun, Sebastian Krebs & Fabian Flohr Agenda 1. Introduction 2. History 3. Triggering

More information

Kinect Interface for UC-win/Road: Application to Tele-operation of Small Robots

Kinect Interface for UC-win/Road: Application to Tele-operation of Small Robots Kinect Interface for UC-win/Road: Application to Tele-operation of Small Robots Hafid NINISS Forum8 - Robot Development Team Abstract: The purpose of this work is to develop a man-machine interface for

More information

Connected Car Networking

Connected Car Networking Connected Car Networking Teng Yang, Francis Wolff and Christos Papachristou Electrical Engineering and Computer Science Case Western Reserve University Cleveland, Ohio Outline Motivation Connected Car

More information

Classification of Road Images for Lane Detection

Classification of Road Images for Lane Detection Classification of Road Images for Lane Detection Mingyu Kim minkyu89@stanford.edu Insun Jang insunj@stanford.edu Eunmo Yang eyang89@stanford.edu 1. Introduction In the research on autonomous car, it is

More information

Driver Assistance Systems (DAS)

Driver Assistance Systems (DAS) Driver Assistance Systems (DAS) Short Overview László Czúni University of Pannonia What is DAS? DAS: electronic systems helping the driving of a vehicle ADAS (advanced DAS): the collection of systems and

More information

An Automatic System for Detecting the Vehicle Registration Plate from Video in Foggy and Rainy Environments using Restoration Technique

An Automatic System for Detecting the Vehicle Registration Plate from Video in Foggy and Rainy Environments using Restoration Technique An Automatic System for Detecting the Vehicle Registration Plate from Video in Foggy and Rainy Environments using Restoration Technique Savneet Kaur M.tech (CSE) GNDEC LUDHIANA Kamaljit Kaur Dhillon Assistant

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

Spring 2005 Group 6 Final Report EZ Park

Spring 2005 Group 6 Final Report EZ Park 18-551 Spring 2005 Group 6 Final Report EZ Park Paul Li cpli@andrew.cmu.edu Ivan Ng civan@andrew.cmu.edu Victoria Chen vchen@andrew.cmu.edu -1- Table of Content INTRODUCTION... 3 PROBLEM... 3 SOLUTION...

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

Intelligent driving TH« TNO I Innovation for live

Intelligent driving TH« TNO I Innovation for live Intelligent driving TNO I Innovation for live TH«Intelligent Transport Systems have become an integral part of the world. In addition to the current ITS systems, intelligent vehicles can make a significant

More information

Terry Max Christy & Jeremy Borgman Dr. Gary Dempsey & Nick Schmidt November 29, 2011

Terry Max Christy & Jeremy Borgman Dr. Gary Dempsey & Nick Schmidt November 29, 2011 P r o j e c t P r o p o s a l 0 Nautical Autonomous System with Task Integration Project Proposal Terry Max Christy & Jeremy Borgman Dr. Gary Dempsey & Nick Schmidt November 29, 2011 P r o j e c t P r

More information

Advances in Vehicle Periphery Sensing Techniques Aimed at Realizing Autonomous Driving

Advances in Vehicle Periphery Sensing Techniques Aimed at Realizing Autonomous Driving FEATURED ARTICLES Autonomous Driving Technology for Connected Cars Advances in Vehicle Periphery Sensing Techniques Aimed at Realizing Autonomous Driving Progress is being made on vehicle periphery sensing,

More information

Final Report Non Hit Car And Truck

Final Report Non Hit Car And Truck Final Report Non Hit Car And Truck 2010-2013 Project within Vehicle and Traffic Safety Author: Anders Almevad Date 2014-03-17 Content 1. Executive summary... 3 2. Background... 3. Objective... 4. Project

More information

Virtual Homologation of Software- Intensive Safety Systems: From ESC to Automated Driving

Virtual Homologation of Software- Intensive Safety Systems: From ESC to Automated Driving Virtual Homologation of Software- Intensive Safety Systems: From ESC to Automated Driving Dr. Houssem Abdellatif Global Head Autonomous Driving & ADAS TÜV SÜD Auto Service Christian Gnandt Lead Engineer

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

Major Project SSAD. Mentor : Raghudeep SSAD Mentor :Manish Jha Group : Group20 Members : Harshit Daga ( ) Aman Saxena ( )

Major Project SSAD. Mentor : Raghudeep SSAD Mentor :Manish Jha Group : Group20 Members : Harshit Daga ( ) Aman Saxena ( ) Major Project SSAD Advisor : Dr. Kamalakar Karlapalem Mentor : Raghudeep SSAD Mentor :Manish Jha Group : Group20 Members : Harshit Daga (200801028) Aman Saxena (200801010) We were supposed to calculate

More information

Eyedentify MMR SDK. Technical sheet. Version Eyedea Recognition, s.r.o.

Eyedentify MMR SDK. Technical sheet. Version Eyedea Recognition, s.r.o. Eyedentify MMR SDK Technical sheet Version 2.3.1 010001010111100101100101011001000110010101100001001000000 101001001100101011000110110111101100111011011100110100101 110100011010010110111101101110010001010111100101100101011

More information

Safe, Efficient and Effective Testing of Connected and Autonomous Vehicles Paul Jennings. Franco-British Symposium on ITS 5 th October 2016

Safe, Efficient and Effective Testing of Connected and Autonomous Vehicles Paul Jennings. Franco-British Symposium on ITS 5 th October 2016 Safe, Efficient and Effective Testing of Connected and Autonomous Vehicles Paul Jennings Franco-British Symposium on ITS 5 th October 2016 An academic department within the science faculty Established

More information

$FWLYH DQG 3DVVLYH &DU 6DIHW\ $Q,QWHJUDWHG $SSURDFK WR 5HGXFLQJ $FFLGHQWV

$FWLYH DQG 3DVVLYH &DU 6DIHW\ $Q,QWHJUDWHG $SSURDFK WR 5HGXFLQJ $FFLGHQWV 63((&+ 0U(UNNL/LLNDQHQ Member of the European Commission, responsible for Enterprise and the Information Society $FWLYH DQG 3DVVLYH &DU 6DIHW\ $Q,QWHJUDWHG $SSURDFK WR 5HGXFLQJ $FFLGHQWV Airbag 2002-6

More information

VSI Labs The Build Up of Automated Driving

VSI Labs The Build Up of Automated Driving VSI Labs The Build Up of Automated Driving October - 2017 Agenda Opening Remarks Introduction and Background Customers Solutions VSI Labs Some Industry Content Opening Remarks Automated vehicle systems

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

SIS63-Building the Future-Advanced Integrated Safety Applications: interactive Perception platform and fusion modules results

SIS63-Building the Future-Advanced Integrated Safety Applications: interactive Perception platform and fusion modules results SIS63-Building the Future-Advanced Integrated Safety Applications: interactive Perception platform and fusion modules results Angelos Amditis (ICCS) and Lali Ghosh (DEL) 18 th October 2013 20 th ITS World

More information

VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL

VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL Instructor : Dr. K. R. Rao Presented by: Prasanna Venkatesh Palani (1000660520) prasannaven.palani@mavs.uta.edu

More information

Minimizing Distraction While Adding Features

Minimizing Distraction While Adding Features Minimizing Distraction While Adding Features Lisa Southwick, UX Manager Hyundai American Technical Center, Inc. Agenda Distracted Driving Advanced Driver Assistance Systems (ADAS) ADAS User Experience

More information

F=MA. W=F d = -F YOUTH GUIDE - APPENDICES YOUTH GUIDE 03

F=MA. W=F d = -F YOUTH GUIDE - APPENDICES YOUTH GUIDE 03 W=F d F=MA F 12 = -F 21 YOUTH GUIDE - APPENDICES YOUTH GUIDE 03 APPENDIX A: CALCULATE IT (OPTIONAL ACTIVITY) Time required: 20 minutes If you have additional time or are interested in building quantitative

More information

E 322 DESIGN 6 SMART PARKING SYSTEM. Section 1

E 322 DESIGN 6 SMART PARKING SYSTEM. Section 1 E 322 DESIGN 6 SMART PARKING SYSTEM Section 1 Summary of Assignments of Individual Group Members Joany Jores Project overview, GPS Limitations and Solutions Afiq Izzat Mohamad Fuzi SFPark, GPS System Mohd

More information

Embedding Artificial Intelligence into Our Lives

Embedding Artificial Intelligence into Our Lives Embedding Artificial Intelligence into Our Lives Michael Thompson, Synopsys D&R IP-SOC DAYS Santa Clara April 2018 1 Agenda Introduction What AI is and is Not Where AI is being used Rapid Advance of AI

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

Perception platform and fusion modules results. Angelos Amditis - ICCS and Lali Ghosh - DEL interactive final event

Perception platform and fusion modules results. Angelos Amditis - ICCS and Lali Ghosh - DEL interactive final event Perception platform and fusion modules results Angelos Amditis - ICCS and Lali Ghosh - DEL interactive final event 20 th -21 st November 2013 Agenda Introduction Environment Perception in Intelligent Transport

More information

GESTURE BASED HUMAN MULTI-ROBOT INTERACTION. Gerard Canal, Cecilio Angulo, and Sergio Escalera

GESTURE BASED HUMAN MULTI-ROBOT INTERACTION. Gerard Canal, Cecilio Angulo, and Sergio Escalera GESTURE BASED HUMAN MULTI-ROBOT INTERACTION Gerard Canal, Cecilio Angulo, and Sergio Escalera Gesture based Human Multi-Robot Interaction Gerard Canal Camprodon 2/27 Introduction Nowadays robots are able

More information

The GATEway Project London s Autonomous Push

The GATEway Project London s Autonomous Push The GATEway Project London s Autonomous Push 06/2016 Why TRL? Unrivalled industry position with a focus on mobility 80 years independent transport research Public and private sector with global reach 350+

More information

Deployment and Testing of Optimized Autonomous and Connected Vehicle Trajectories at a Closed- Course Signalized Intersection

Deployment and Testing of Optimized Autonomous and Connected Vehicle Trajectories at a Closed- Course Signalized Intersection Deployment and Testing of Optimized Autonomous and Connected Vehicle Trajectories at a Closed- Course Signalized Intersection Clark Letter*, Lily Elefteriadou, Mahmoud Pourmehrab, Aschkan Omidvar Civil

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

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

Introducing LISA. LISA: Laboratory for Intelligent and Safe Automobiles

Introducing LISA. LISA: Laboratory for Intelligent and Safe Automobiles Introducing LISA LISA: Laboratory for Intelligent and Safe Automobiles Mohan M. Trivedi University of California at San Diego mtrivedi@ucsd.edu Int. Workshop on Progress and Future Directions of Adaptive

More information

Author s Name Name of the Paper Session. DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION. Sensing Autonomy.

Author s Name Name of the Paper Session. DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION. Sensing Autonomy. Author s Name Name of the Paper Session DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION Sensing Autonomy By Arne Rinnan Kongsberg Seatex AS Abstract A certain level of autonomy is already

More information

Detection and Tracking of the Vanishing Point on a Horizon for Automotive Applications

Detection and Tracking of the Vanishing Point on a Horizon for Automotive Applications Detection and Tracking of the Vanishing Point on a Horizon for Automotive Applications Young-Woo Seo and Ragunathan (Raj) Rajkumar GM-CMU Autonomous Driving Collaborative Research Lab Carnegie Mellon University

More information

THE FUTURE OF AUTOMOTIVE - AUGMENTED REALITY VERSUS AUTONOMOUS VEHICLES

THE FUTURE OF AUTOMOTIVE - AUGMENTED REALITY VERSUS AUTONOMOUS VEHICLES The 14 International Conference RELIABILITY and STATISTICS in TRANSPORTATION and COMMUNICATION 2014 Proceedings of the 14th International Conference Reliability and Statistics in Transportation and Communication

More information

Stanford Center for AI Safety

Stanford Center for AI Safety Stanford Center for AI Safety Clark Barrett, David L. Dill, Mykel J. Kochenderfer, Dorsa Sadigh 1 Introduction Software-based systems play important roles in many areas of modern life, including manufacturing,

More information

Current Technologies in Vehicular Communications

Current Technologies in Vehicular Communications Current Technologies in Vehicular Communications George Dimitrakopoulos George Bravos Current Technologies in Vehicular Communications George Dimitrakopoulos Department of Informatics and Telematics Harokopio

More information

Design and Implementation of an Unmanned Ground Vehicle

Design and Implementation of an Unmanned Ground Vehicle Design and Implementation of an Unmanned Ground Vehicle Abstract Shreyas H, Thirumalesh H S Department of Electrical and Electronics Engineering, SJCE, Mysore, India Email: shreyas9693@gmail.com, hsthirumalesh@gmail.com

More information

Lane Detection Using Median Filter, Wiener Filter and Integrated Hough Transform

Lane Detection Using Median Filter, Wiener Filter and Integrated Hough Transform Journal of Automation and Control Engineering Vol. 3, No. 3, June 2015 Lane Detection Using Median Filter, Wiener Filter and Integrated Hough Transform Sukriti Srivastava, Manisha Lumb, and Ritika Singal

More information

Robocup Electrical Team 2006 Description Paper

Robocup Electrical Team 2006 Description Paper Robocup Electrical Team 2006 Description Paper Name: Strive2006 (Shanghai University, P.R.China) Address: Box.3#,No.149,Yanchang load,shanghai, 200072 Email: wanmic@163.com Homepage: robot.ccshu.org Abstract:

More information

Image Processing Based Vehicle Detection And Tracking System

Image Processing Based Vehicle Detection And Tracking System Image Processing Based Vehicle Detection And Tracking System Poonam A. Kandalkar 1, Gajanan P. Dhok 2 ME, Scholar, Electronics and Telecommunication Engineering, Sipna College of Engineering and Technology,

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

Signaling Crossing Tracks and Double Track Junctions

Signaling Crossing Tracks and Double Track Junctions Signaling Crossing Tracks and Double Track Junctions Welcome. In this tutorial, we ll discuss tracks that cross each other and how to keep trains from colliding when they reach the crossing at the same

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

COST OF TRAFFIC US alone wasted about 3 billion gallons of fuel thanks to traffic in 2014, America blew through $160 billion in wasted time and fuel

COST OF TRAFFIC US alone wasted about 3 billion gallons of fuel thanks to traffic in 2014, America blew through $160 billion in wasted time and fuel COST OF TRAFFIC US alone wasted about 3 billion gallons of fuel thanks to traffic in 2014, America blew through $160 billion in wasted time and fuel last year -- an average cost of $960 per typical motorist,

More information

Hybrid architectures. IAR Lecture 6 Barbara Webb

Hybrid architectures. IAR Lecture 6 Barbara Webb Hybrid architectures IAR Lecture 6 Barbara Webb Behaviour Based: Conclusions But arbitrary and difficult to design emergent behaviour for a given task. Architectures do not impose strong constraints Options?

More information

An implementation for efficient 8 two way traffic signal system for pedestrian and ambulance along with violation detection

An implementation for efficient 8 two way traffic signal system for pedestrian and ambulance along with violation detection An implementation for efficient 8 two way traffic signal system for pedestrian and ambulance along with violation detection Riya Paul 1, Mrs. Amrutha Benny 2, Dr. Vince Paul 3 1 (M.tech student, Sahrdaya

More information

Use of Probe Vehicles to Increase Traffic Estimation Accuracy in Brisbane

Use of Probe Vehicles to Increase Traffic Estimation Accuracy in Brisbane Use of Probe Vehicles to Increase Traffic Estimation Accuracy in Brisbane Lee, J. & Rakotonirainy, A. Centre for Accident Research and Road Safety - Queensland (CARRS-Q), Queensland University of Technology

More information

Distributed Vision System: A Perceptual Information Infrastructure for Robot Navigation

Distributed Vision System: A Perceptual Information Infrastructure for Robot Navigation Distributed Vision System: A Perceptual Information Infrastructure for Robot Navigation Hiroshi Ishiguro Department of Information Science, Kyoto University Sakyo-ku, Kyoto 606-01, Japan E-mail: ishiguro@kuis.kyoto-u.ac.jp

More information

Invited talk IET-Renault Workshop Autonomous Vehicles: From theory to full scale applications Novotel Paris Les Halles, June 18 th 2015

Invited talk IET-Renault Workshop Autonomous Vehicles: From theory to full scale applications Novotel Paris Les Halles, June 18 th 2015 Risk assessment & Decision-making for safe Vehicle Navigation under Uncertainty Christian LAUGIER, First class Research Director at Inria http://emotion.inrialpes.fr/laugier Contributions from Mathias

More information

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

Video Synthesis System for Monitoring Closed Sections 1

Video Synthesis System for Monitoring Closed Sections 1 Video Synthesis System for Monitoring Closed Sections 1 Taehyeong Kim *, 2 Bum-Jin Park 1 Senior Researcher, Korea Institute of Construction Technology, Korea 2 Senior Researcher, Korea Institute of Construction

More information

A Winning Combination

A Winning Combination A Winning Combination Risk factors Statements in this presentation that refer to future plans and expectations are forward-looking statements that involve a number of risks and uncertainties. Words such

More information

23270: AUGMENTED REALITY FOR NAVIGATION AND INFORMATIONAL ADAS. Sergii Bykov Technical Lead Machine Learning 12 Oct 2017

23270: AUGMENTED REALITY FOR NAVIGATION AND INFORMATIONAL ADAS. Sergii Bykov Technical Lead Machine Learning 12 Oct 2017 23270: AUGMENTED REALITY FOR NAVIGATION AND INFORMATIONAL ADAS Sergii Bykov Technical Lead Machine Learning 12 Oct 2017 Product Vision Company Introduction Apostera GmbH with headquarter in Munich, was

More information

BIG DATA EUROPE TRANSPORT PILOT: INTRODUCING THESSALONIKI. Josep Maria Salanova Grau CERTH-HIT

BIG DATA EUROPE TRANSPORT PILOT: INTRODUCING THESSALONIKI. Josep Maria Salanova Grau CERTH-HIT BIG DATA EUROPE TRANSPORT PILOT: INTRODUCING THESSALONIKI Josep Maria Salanova Grau CERTH-HIT Thessaloniki on the map ~ 1.400.000 inhabitants & ~ 1.300.000 daily trips ~450.000 private cars & ~ 20.000

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

Development of a 24 GHz Band Peripheral Monitoring Radar

Development of a 24 GHz Band Peripheral Monitoring Radar Special Issue OneF Automotive Technology Development of a 24 GHz Band Peripheral Monitoring Radar Yasushi Aoyagi * In recent years, the safety technology of automobiles has evolved into the collision avoidance

More information

ReVRSR: Remote Virtual Reality for Service Robots

ReVRSR: Remote Virtual Reality for Service Robots ReVRSR: Remote Virtual Reality for Service Robots Amel Hassan, Ahmed Ehab Gado, Faizan Muhammad March 17, 2018 Abstract This project aims to bring a service robot s perspective to a human user. We believe

More information

Electronic Travel Aid Based on. Consumer Depth Devices to Avoid Moving Objects

Electronic Travel Aid Based on. Consumer Depth Devices to Avoid Moving Objects Contemporary Engineering Sciences, Vol. 9, 2016, no. 17, 835-841 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2016.6692 Electronic Travel Aid Based on Consumer Depth Devices to Avoid Moving

More information

INTELLIGENT GUIDANCE IN A VIRTUAL UNIVERSITY

INTELLIGENT GUIDANCE IN A VIRTUAL UNIVERSITY INTELLIGENT GUIDANCE IN A VIRTUAL UNIVERSITY T. Panayiotopoulos,, N. Zacharis, S. Vosinakis Department of Computer Science, University of Piraeus, 80 Karaoli & Dimitriou str. 18534 Piraeus, Greece themisp@unipi.gr,

More information

Israel Railways No Fault Liability Renewal The Implementation of New Technological Safety Devices at Level Crossings. Amos Gellert, Nataly Kats

Israel Railways No Fault Liability Renewal The Implementation of New Technological Safety Devices at Level Crossings. Amos Gellert, Nataly Kats Mr. Amos Gellert Technological aspects of level crossing facilities Israel Railways No Fault Liability Renewal The Implementation of New Technological Safety Devices at Level Crossings Deputy General Manager

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

Sensor Fusion for Navigation in Degraded Environements

Sensor Fusion for Navigation in Degraded Environements Sensor Fusion for Navigation in Degraded Environements David M. Bevly Professor Director of the GPS and Vehicle Dynamics Lab dmbevly@eng.auburn.edu (334) 844-3446 GPS and Vehicle Dynamics Lab Auburn University

More information

Formation and Cooperation for SWARMed Intelligent Robots

Formation and Cooperation for SWARMed Intelligent Robots Formation and Cooperation for SWARMed Intelligent Robots Wei Cao 1 Yanqing Gao 2 Jason Robert Mace 3 (West Virginia University 1 University of Arizona 2 Energy Corp. of America 3 ) Abstract This article

More information

APPLICATION OF COMPUTER VISION FOR DETERMINATION OF SYMMETRICAL OBJECT POSITION IN THREE DIMENSIONAL SPACE

APPLICATION OF COMPUTER VISION FOR DETERMINATION OF SYMMETRICAL OBJECT POSITION IN THREE DIMENSIONAL SPACE APPLICATION OF COMPUTER VISION FOR DETERMINATION OF SYMMETRICAL OBJECT POSITION IN THREE DIMENSIONAL SPACE Najirah Umar 1 1 Jurusan Teknik Informatika, STMIK Handayani Makassar Email : najirah_stmikh@yahoo.com

More information

Roadblocks for building mobile AR apps

Roadblocks for building mobile AR apps Roadblocks for building mobile AR apps Jens de Smit, Layar (jens@layar.com) Ronald van der Lingen, Layar (ronald@layar.com) Abstract At Layar we have been developing our reality browser since 2009. Our

More information

Multi-Resolution Estimation of Optical Flow on Vehicle Tracking under Unpredictable Environments

Multi-Resolution Estimation of Optical Flow on Vehicle Tracking under Unpredictable Environments , pp.32-36 http://dx.doi.org/10.14257/astl.2016.129.07 Multi-Resolution Estimation of Optical Flow on Vehicle Tracking under Unpredictable Environments Viet Dung Do 1 and Dong-Min Woo 1 1 Department of

More information

Driver Assistance and Awareness Applications

Driver Assistance and Awareness Applications Using s as Automotive Sensors Driver Assistance and Awareness Applications Faroog Ibrahim Visteon Corporation GNSS is all about positioning, sure. But for most automotive applications we need a map to

More information

A Denunciation of the Monochrome:

A Denunciation of the Monochrome: A Denunciation of the Monochrome: Displaying the colors using LED strips for different purposes. Tijani Oluwatimilehin, Christian Martinez, Sabrina Herrero, Erin Vines 1.1 Abstract The interaction between

More information

Using Vision-Based Driver Assistance to Augment Vehicular Ad-Hoc Network Communication

Using Vision-Based Driver Assistance to Augment Vehicular Ad-Hoc Network Communication Using Vision-Based Driver Assistance to Augment Vehicular Ad-Hoc Network Communication Kyle Charbonneau, Michael Bauer and Steven Beauchemin Department of Computer Science University of Western Ontario

More information

AUTOMOTIVE CONTROL SYSTEMS

AUTOMOTIVE CONTROL SYSTEMS AUTOMOTIVE CONTROL SYSTEMS This engineering textbook is designed to introduce advanced control systems for vehicles, including advanced automotive concepts and the next generation of vehicles for Intelligent

More information