LANE MARKING DETECTION AND TRACKING

Size: px
Start display at page:

Download "LANE MARKING DETECTION AND TRACKING"

Transcription

1 LANE MARKING DETECTION AND TRACKING Adrian Soon Bee Tiong 1, Soon Chin Fhong 1, Rosli Omar 1, Mohammed I. Awad 2 and Tee Kian Sek 1 1 Faculty of Electrical and Electronic Engineering, University of Tun Hussein Onn Malaysia, Batu Pahat, Johor, Malaysia 2 Mechanical and Mechatronics Engineering, Faculty of Engineering, Ain Shams University, Cairo, Egypt adriansbt@yahoo.com ABSTRACT Visually detecting and tracking lane markings on the road is a difficult task. The challenges faced on the road are different lighting, raining, poor lane markings, and objects on the road. This paper presents a different method to detect and track lane markings. The system carefully selects region of interests from the road image for image processing and recognition, avoiding the need to process large part of the image. The feature extraction is based on modified local threshold that is robust to different lighting condition. The line recognition is based on template matching that imitates the orientation columns of visual cortex. Detection of lane marking is done by scanning the road image for line pattern and the line is trace to complete the detection. When detection is complete, the system will track the lane marking with simple alignment algorithm. The lane marking detection and tracking system was tested on the road, in speed up to 70 km/h. The system is able to detect lane markings under cast shadows, variable ambient lighting and raining conditions, with low processing power. Keywords: lane marking detection, vision, local threshold. INTRODUCTION Lane markings are one the most important road information for drivers to drive safely and efficiently. One of the present challenge of computer vision in automous vehicle is the ability to recognize lane markings, under different lighting condition, in a fast and robust method. Some methods are capable to detect straight lines, while some can detect curve lines at the expense of high computation. Lane marking detection generally consist of feature extraction and algorithm to interpret the features detected. With few exceptions such as (Kluge and Lakshmanan, 1995) that uses deformable template model onto the intensity gradient of the input image directly. There are various lane marking feature extraction used, such as edge detection (Miao, Li, and Shen, 2012), (Dickmanns and Mysliwetz, 1992), local thresholding (Lipski et al., 2008), (Shi, Kong, and Zheng, 2009), (Pollard, Gruyer, Tarel, Ieng, and Cord, 2011), (Revilloud, Gruyer, and Pollard, 2013), ridgeness (López, Serrat, Cañero, Lumbreras, and Graf, 2010), Hough transform (Meuter et al., 2009), contextual features (Gopalan, Hong, Shneier, and Chellappa, 2012). Some works require certain image processing, such as perspective transformation (Lipski et al., 2008), before the features are extracted. The algorithm used to analyse or interpret the extracted features is dependent on the type of feature extraction or approach used. A deformable template is used on the intensity gradient of the input image, and go through iteration process until it meets the road line in the image (Kluge and Lakshmanan, 1995). Other method used are lane modelling and fitting method (López et al., 2010), (Revilloud et al., 2013), voting (Meuter et al., 2009), and K-means cluster algorithm (Miao et al., 2012). For tracking the lane markings, the algorithms used are Kalman filter with Interacting Multiple Models algorithm (Meuter et al., 2009), and particle filter (Gopalan et al., 2012). There are few work done that imitate some concept in biological vertebrate vision such as in (Dickmanns and Mysliwetz, 1992) by identifying the lane markings edge size and orientation in the initial stage of visual processing. Hubel and Wiesel (Hubel and Wiesel, 1962) shows that the primary visual cortex has orientation columns. The neurons in this region are excited by visual line stimuli of varying angles. This concept is applied to this current work, to match the detected possible object with line template of different orientation. In this paper, the feature extraction of lane marking is based on local threshold. Unlike previous works, we extract features only from selected regions of interest. The features are used to determine if it is a possible lane marking. The features are matched with a collection of varying line orientation template, consisting of areas of excitatory response and inhibitory responses, similar to the orientation columns in the visual cortex. This matching method will determine if the feature is a lane marking and the lane marking s orientation. Our contributions include 1) the development of a modified local threshold algorithm specifically road lane marking extraction, 2) line recognition imitating the orientation column, and 3) a different processing flow. LANE MARKING DETECTION AND TRACKING The hardware used in this system is a webcam and a laptop. The program runs mainly in MATLAB. The acquired video images resolution is 432x240, with frame rate of 30. Figure-1 shows the processing structure of the lane marking detection system, consisting of three levels. The low level is the feature extraction based on local threshold, middle level is the recognition of lane marking and its orientation using template matching, and lastly the high-level that carry out the tracing and tracking of lane 8910

2 markings. At the start of the system, a 24x24 pixel sized region of interest (ROI) scan through the bottom rows of the image to search for possible lane marking. When the possible lane marking is identified and its orientation kwn, the rest of the lane marking is traced. After both left and right lane marking is fully detected, the system will keep track of the lane marking as the vehicle drives on the road. pixel value range. T pixel will be set to a much lower value than V max. The third stage will be to extract out the possible lane markings from the ROI by using the threshold T pixel. Pixels that are above T pixel will be set to white. The algorithm flow is shown in Figure-3. m x m ROI Figure-1. Processing structure. V diff = V max V min N_min : number of pixels that < V min + V diff /2 N_max : number of pixels that > V max -V diff /2 Features extraction To extract features from the ROI, the ROI image goes through few stages of analysis, to avoid inaccurate extraction and to ensure successful feature extraction from low and high contrast image. If possible lane marking is detected, ROI will be aligned before being process at the line recognition stage. Compared to other local threshold algorithms (Lipski et al., 2008), (Shi et al., 2009), this algorithm is specifically for extracting lane marking on the road, avoid extracting ises on road surfaces, and uses less computing time. Firstly, the local contrast V diff, the difference between maximal and minimal value, is determined. If V diff is smaller than the threshold T contrast means that there s a very small contrast in the image, shown in Figure-2(a). The threshold T pixel for the pixel value of the possible lane marking, will be set to the maximal pixel value V max. If exceed, the image shows a high contrast, shown in Figure-2(b). V diff > T contrast N_min < (m x m x 0.9) Percentage = 100 V diff /255 x 45 Percentage = 100 V diff /255 x 80 Percentage = 100 T pixel = V max x percentage/100 Figure-2. (a) Road line with low contrast. (b) Road line with high contrast. The following stage is to determine the threshold T pixel for high contrast ROI. The number of pixels that are within range of a certain level of the minimum pixel value, V min and (V min + V diff /2), are counted. When the total number of pixels are lower than T ROI % of the total number of pixel of the ROI, the pixel value of the possible lane marking has higher pixel value range. T pixel will be set to a slightly lower value than V max. On the other hand, when it is above T ROI % of the total number of pixel of the ROI, the pixel value of the possible lane marking has lower V pixel > T pixel Label as white Label as Black Figure-3. Feature extraction algorithm flow. Line recognition The line recognition is based on template matching. This process is to determine if the feature is a line and in what orientation the line is. Kwing the 8911

3 orientation of the line, the next section of the line can be estimated for tracing purposes, explained later section. The extracted feature image is matched with a collection of line template of different orientation, shown in Figure-4. This method imitates some of the concept in the orientation columns of the visual cortex. Figure-5 shows an example of a receptive fields of one of the template. This is similar to the simple cortical receptive fields (Hubel and Wiesel, 1962). White area gives the excitatory response while the dark area gives the inhibitory responses. The extracted feature needs to activate eugh response from both areas in order to have successful matching. Figure-6. Left lane marking detection and tracing. Figure-4. Collection of line template of different orientation. Figure-7. Changes in ROIs size according to the distance. Figure-5. Receptive fields of a template. White area gives the excitatory response. Dark area gives the inhibitory responses. Line tracing The system process the image by selecting various region of interests (ROI) throughout each input frame. It begins by scanning for possible left and right lane marking in the road image. Once detected (ROI 1 in Figure-6), the line orientation is identified and the position of the next section of the line (2 nd ROI in Figure-6) can be estimated, as shown in Figure-6. The first left road line is trace to the visible near end of the road (n-th ROI in Figure-6). When both of the left and right lane marking has been searched and traced, the system will proceed to track the line as the vehicle moves along the road. After a road line lane marking is successfully trace, the system stored the positions of the ROIs, which will be used for tracking purposes. The region of interest (ROI) are square shape and vary in size according to the distance of the lane from the vehicle. ROI will be smaller as it moves further from the vehicle, shown in Figure-7. Tracking Tracking of the lane marking is carried out after the left and right lane markings are successfully detected and traced. To track the lane marking as the vehicle moves on the road, the system uses the positions of ROIs of the traced lane markings to check if the line in the ROIs has shifted in its positions in the new image frame. This process uses the same feature extraction mentioned earlier to extract line feature in the each of the selected ROIs, and a simple alignment algorithm is used to detect changes of the line position in each ROIs. The system will then compute and update the new positions of the ROIs of the lane markings. Tracking continues throughout the frames using the updated positions of the ROIs of the lane markings. Using the positions of the ROIs of the left and right lane markings, the system is able to detect if the vehicle is within the lane or has departed from the lane. EXPERIMENTAL RESULTS Feature extraction The feature extraction gave promising results, giving good results in shadow area and in low contrast situation. Low contrast situation will occur when lane marking is further ahead and gets blur, faded lane marking colour, road affected by shadow, bright sunlight reflection on the road, or during raining. Figure-8 shows the line extraction of road line with low contrast under shadowed region. The left image (a) shows the location of the ROI on the road, the middle image (b) is the enlarged image of the ROI, and the right image (c) is the extracted line image. Despite its low contrast, the algorithm is able to give sufficient extraction. Figure-9 shows ather line extraction from a low contrast ROI taken outside of the shadowed region. 8912

4 of lights and rain droplets on the windscreen affects the feature extraction. The movement of the wiper of the vehicle affects little on the performance of the system. Figure-8. (a) ROI with low contrast under shadowed region. (b) Enlarged image of the ROI. (c) Line extraction of the ROI. Tracking The system is able to track the lane marking as the vehicle moves within inside of the lane or out of the lane. However, the result is affected during the raining situation due to the reflection of the rain water all over the road. Road markings or objects that comes within the ROIs slightly affects the lane marking tracking. The system will t able to track the lane marking if the vehicle make a sudden swerve off the lane. Figure-9. (a) ROI with low contrast under brightly lit region. (b) Enlarged image of the ROI. (c) Line extraction of the ROI. Line recognition The line matching method is able to give good results for single line Figure-10, and double line Figure-11. Both figures shows the image of the selected ROI, the extracted line feature and the result of the recognition. In cases of double line, the accuracy of the orientation recognition is slightly affected. Figure-10. Line recognition of single line (a) image of the ROI. (b) Extracted line feature. (c) Result of the line recognition. Figure-12. Sample results under different situations: (a) good weather condition, double line lane marking; (b) good weather condition, broken single line lane marking; (c) raining condition. Figure-11. Line recognition of double line (a) image of the ROI. (b) Extracted line feature. (c) Result of the line recognition. Tracing Figure-12 shows sample results of the tracing of left and right lane marking under few different conditions. Tracing is successful for continuous or broken single line and double line, under good weather condition. When raining, the road line becomes visually less visible, and reflection CONCLUSIONS In this paper we presented a different method of lane marking detection and tracking system using a camera and a conventional laptop. The use of selective ROIs and the modified local threshold algorithm give good feature extraction at different lighting situations. It also require less processing speed by processing only the necessary parts of the road image. Imitating visual cortex s orientation columns for line recognition shows good recognition result, even when the line is t clear or broken. The line recognition and tracing method is able to detect left and right lane markings without the need to 8913

5 process large part of the image. The simple tracking method is able to track the lane marking as the vehicle swerves from the lane. The system has been tested on the road with the vehicle s average speed of 70 km/h. The current system needs to be fine tune for better detection and tracking under raining situation. The high-level processing stage can be improved for better detection and tracking of different condition of lane marking. (ITSC), th International IEEE Conference on (pp ). Revilloud, M., Gruyer, D. and Pollard, E An improved approach for robust road marking detection and tracking applied to multi-lane estimation. In Intelligent Vehicles Symposium (IV), 2013 IEEE (pp ). Shi, X., Kong, B. & Zheng, F A new lane detection method based on feature pattern. In Image and Signal Processing, CISP nd International Congress on (pp. 1-5). REFERENCES Dickmanns, E. D. and Mysliwetz, B. D Recursive 3-d road and relative ego-state recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence, 14(2), Gopalan, R., Hong, T., Shneier, M. and Chellappa, R A learning approach towards detection and tracking of lane markings. Intelligent Transportation Systems, IEEE Transactions on, 13(3), Hubel, D. H. and Wiesel, T. N Receptive fields, bicular interaction and functional architecture in the cat s visual cortex. The Journal of Physiology, 160(1), 106. Kluge, K. and Lakshmanan, S A deformabletemplate approach to lane detection. In Intelligent Vehicles 95 Symposium., Proceedings of the (pp ). Lipski, C., Scholz, B., Berger, K., Linz, C., Stich, T. and Magr, M A fast and robust approach to lane marking detection and lane tracking. In Image Analysis and Interpretation, SSIAI IEEE Southwest Symposium on (pp ). López, A., Serrat, J., Cañero, C., Lumbreras, F. and Graf, T Robust lane markings detection and road geometry computation. International Journal of Automotive Techlogy, 11(3), Meuter, M., Müller-Schneiders, S., Mika, A., Hold, S., Nunn, C. and Kummert, A A vel approach to lane detection and tracking. In Intelligent Transportation Systems, ITSC th International IEEE Conference on (pp. 1-6). Miao, X., Li, S. and Shen, H On-board lane detection system for intelligent vehicle based on mocular vision. International Journal on Smart Sensing and Intelligent Systems, 5(4), Pollard, E., Gruyer, D., Tarel, J.-P., Ieng, S.-S. and Cord, A. 2011) Lane marking extraction with combination strategy and comparative evaluation on synthetic and camera images. In Intelligent Transportation Systems 8914

Real-Time Detection of Road Markings for Driving Assistance Applications

Real-Time Detection of Road Markings for Driving Assistance Applications Real-Time Detection of Road Markings for Driving Assistance Applications Ioana Maria Chira, Ancuta Chibulcutean Students, Faculty of Automation and Computer Science Technical University of Cluj-Napoca

More information

Research on the Algorithms of Lane Recognition based on Machine Vision

Research on the Algorithms of Lane Recognition based on Machine Vision International Journal of Intelligent Engineering & Systems http://www.inass.org/ Research on the Algorithms of Lane Recognition based on Machine Vision Minghua Niu 1, Jianmin Zhang, Gen Li 1 Tianjin University

More information

Monocular Vision Based Autonomous Navigation for Arbitrarily Shaped Urban Roads

Monocular Vision Based Autonomous Navigation for Arbitrarily Shaped Urban Roads Proceedings of the International Conference on Machine Vision and Machine Learning Prague, Czech Republic, August 14-15, 2014 Paper No. 127 Monocular Vision Based Autonomous Navigation for Arbitrarily

More information

Robust lane lines detection and quantitative assessment

Robust lane lines detection and quantitative assessment Robust lane lines detection and quantitative assessment Antonio López, Joan Serrat, Cristina Cañero, Felipe Lumbreras Computer Vision Center & Computer Science Dept. Edifici O, Universitat Autònoma de

More information

Robust contour extraction and junction detection by a neural model utilizing recurrent long-range interactions

Robust contour extraction and junction detection by a neural model utilizing recurrent long-range interactions Robust contour extraction and junction detection by a neural model utilizing recurrent long-range interactions Thorsten Hansen 1, 2 & Heiko Neumann 2 1 Abteilung Allgemeine Psychologie, Justus-Liebig-Universität

More information

LANE DEPARTURE WARNING SYSTEM FOR VEHICLE SAFETY

LANE DEPARTURE WARNING SYSTEM FOR VEHICLE SAFETY LANE DEPARTURE WARNING SYSTEM FOR VEHICLE SAFETY 1 K. Sravanthi, 2 Mrs. Ch. Padmashree 1 P.G. Scholar, 2 Assistant Professor AL Ameer College of Engineering ABSTRACT In Malaysia, the rate of fatality due

More information

Sensory Augmentation for Increased Awareness of Driving Environment

Sensory Augmentation for Increased Awareness of Driving Environment Sensory Augmentation for Increased Awareness of Driving Environment Pranay Agrawal John M. Dolan Dec. 12, 2014 Technologies for Safe and Efficient Transportation (T-SET) UTC The Robotics Institute Carnegie

More information

Real Time Lane Detection for Autonomous Vehicles

Real Time Lane Detection for Autonomous Vehicles Proceedings of the International Conference on Computer and Communication Engineering 2008 May 13-15, 2008 Kuala Lumpur, Malaysia Real Time Lane Detection for Autonomous Vehicles Abdulhakam.AM.Assidiq,

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Traffic Congestion Analysis Dated: 28-11-2012 By: Romil Bansal (201207613) Ayush Datta (201203003) Rakesh Baddam (200930002) Abstract Traffic estimate from the static images is

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science V1-inspired orientation selective filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this

More information

Computational Models of V1 cells. Gabor and CORF

Computational Models of V1 cells. Gabor and CORF 1 Computational Models of V1 cells Gabor and CORF George Azzopardi Nicolai Petkov 2 Primary visual cortex (striate cortex or V1) 3 Types of V1 Cells Hubel and Wiesel, Nobel Prize winners Three main types

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2D Gabor functions and filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this presentation

More information

Stochastic Road Shape Estimation, B. Southall & C. Taylor. Review by: Christopher Rasmussen

Stochastic Road Shape Estimation, B. Southall & C. Taylor. Review by: Christopher Rasmussen Stochastic Road Shape Estimation, B. Southall & C. Taylor Review by: Christopher Rasmussen September 26, 2002 Announcements Readings for next Tuesday: Chapter 14-14.4, 22-22.5 in Forsyth & Ponce Main Contributions

More information

DESIGNING A REAL TIME SYSTEM FOR CAR NUMBER DETECTION USING DISCRETE HOPFIELD NETWORK

DESIGNING A REAL TIME SYSTEM FOR CAR NUMBER DETECTION USING DISCRETE HOPFIELD NETWORK DESIGNING A REAL TIME SYSTEM FOR CAR NUMBER DETECTION USING DISCRETE HOPFIELD NETWORK A.BANERJEE 1, K.BASU 2 and A.KONAR 3 COMPUTER VISION AND ROBOTICS LAB ELECTRONICS AND TELECOMMUNICATION ENGG JADAVPUR

More information

Effects Of Shadow On Canny Edge Detection through a camera

Effects Of Shadow On Canny Edge Detection through a camera 1523 Effects Of Shadow On Canny Edge Detection through a camera Srajit Mehrotra Shadow causes errors in computer vision as it is difficult to detect objects that are under the influence of shadows. Shadow

More information

Lane Markers Detection based on Consecutive Threshold Segmentation

Lane Markers Detection based on Consecutive Threshold Segmentation ISSN 1746-7659, England, UK Journal of Information and Computing Science Vol. 6, No. 3, 2011, pp. 207-212 Lane Markers Detection based on Consecutive Threshold Segmentation Huan Wang +, Mingwu Ren,Sulin

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2D Gabor functions and filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this presentation

More information

AR-Navi: An In-Vehicle Navigation System Using Video-Based Augmented Reality Technology

AR-Navi: An In-Vehicle Navigation System Using Video-Based Augmented Reality Technology AR-Navi: An In-Vehicle Navigation System Using Video-Based Augmented Reality Technology Yoshihisa Yamaguchi 1, Takashi Nakagawa 1, Kengo Akaho 2, Mitsushi Honda 2, Hirokazu Kato 2, and Shogo Nishida 2

More information

An Approach for Real Time Moving Object Extraction based on Edge Region Determination

An Approach for Real Time Moving Object Extraction based on Edge Region Determination An Approach for Real Time Moving Object Extraction based on Edge Region Determination Sabrina Hoque Tuli Department of Computer Science and Engineering, Chittagong University of Engineering and Technology,

More information

Fingertips Tracking based on Gradient Vector

Fingertips Tracking based on Gradient Vector Int. J. Advance Soft Compu. Appl, Vol. 7, No. 3, November 2015 ISSN 2074-8523 Fingertips Tracking based on Gradient Vector Ahmad Yahya Dawod 1, Md Jan Nordin 1, and Junaidi Abdullah 2 1 Pattern Recognition

More information

IMAGE S EGMENTATION AND TEXT EXTRACTION: APPLICATION TO THE EXTRACTION OF TEXTUAL INFORMATION IN SCENE IMAGES

IMAGE S EGMENTATION AND TEXT EXTRACTION: APPLICATION TO THE EXTRACTION OF TEXTUAL INFORMATION IN SCENE IMAGES International Seminar on Application of Science Mathematics 2011 ISASM2011 IMAGE S EGMENTATION AND TEXT EXTRACTION: APPLICATION TO THE EXTRACTION OF TEXTUAL INFORMATION IN SCENE IMAGES Danial Md Nor 1,

More information

A Road Marking Extraction Method Using GPGPU

A Road Marking Extraction Method Using GPGPU , pp.46-54 http://dx.doi.org/10.14257/astl.2014.50.08 A Road Marking Extraction Method Using GPGPU Dajun Ding 1, Jongsu Yoo 1, Jekyo Jung 1, Kwon Soon 1 1 Daegu Gyeongbuk Institute of Science and Technology,

More information

CAR RECOGNITION ON A STATIC IMAGE USING 2D BASIC SHAPE GEOMETRY

CAR RECOGNITION ON A STATIC IMAGE USING 2D BASIC SHAPE GEOMETRY CAR RECOGNITION ON A STATIC IMAGE USING 2D BASIC SHAPE GEOMETRY Suprijadi 1 and Badar Agung Nugroho 2 1 Department of Physics, Faculty of Mathematics and Natural Sciences,; Institut Teknologi Bandung;

More information

Extracting Layers and Recognizing Features for Automatic Map Understanding. Yao-Yi Chiang

Extracting Layers and Recognizing Features for Automatic Map Understanding. Yao-Yi Chiang Extracting Layers and Recognizing Features for Automatic Map Understanding Yao-Yi Chiang 0 Outline Introduction/ Problem Motivation Map Processing Overview Map Decomposition Feature Recognition Discussion

More information

SINGLE IMAGE FOG REMOVAL BASED ON FUSION STRATEGY

SINGLE IMAGE FOG REMOVAL BASED ON FUSION STRATEGY SINGLE IMAGE FOG REMOVAL BASED ON FUSION STRATEGY ABSTRACT V. Thulasika and A. Ramanan Department of Computer Science, Faculty of Science, University of Jaffna, Sri Lanka v.thula.sika@gmail.com, a.ramanan@jfn.ac.lk

More information

Preceding vehicle detection and distance estimation. lane change, warning system.

Preceding vehicle detection and distance estimation. lane change, warning system. Preceding vehicle detection and distance estimation for lane change warning system U. Iqbal, M.S. Sarfraz Computer Vision Research Group (COMVis) Department of Electrical Engineering, COMSATS Institute

More information

Transactions on Information and Communications Technologies vol 16, 1996 WIT Press, ISSN

Transactions on Information and Communications Technologies vol 16, 1996 WIT Press,   ISSN ransactions on Information and Communications echnologies vol 6, 996 WI Press, www.witpress.com, ISSN 743-357 Obstacle detection using stereo without correspondence L. X. Zhou & W. K. Gu Institute of Information

More information

Vision-based Frontal Vehicle Detection and Tracking

Vision-based Frontal Vehicle Detection and Tracking Vision-based Frontal and Tracking King Hann LIM, Kah Phooi SENG, Li-Minn ANG and Siew Wen CHIN School of Electrical and Electronic Engineering The University of Nottingham Malaysia campus, Jalan Broga,

More information

Robust Unstructured Road Detection: The Importance of Contextual Information

Robust Unstructured Road Detection: The Importance of Contextual Information International Journal of Advanced Robotic Systems ARTICLE Robust Unstructured Road Detection: The Importance of Contextual Information Regular Paper Erke Shang 1, Xiangjing An 1,*, Jian Li 1, Lei Ye 1

More information

CS4758: Rovio Augmented Vision Mapping Project

CS4758: Rovio Augmented Vision Mapping Project CS4758: Rovio Augmented Vision Mapping Project Sam Fladung, James Mwaura Abstract The goal of this project is to use the Rovio to create a 2D map of its environment using a camera and a fixed laser pointer

More information

Robust Lip Contour Extraction using Separability of Multi-Dimensional Distributions

Robust Lip Contour Extraction using Separability of Multi-Dimensional Distributions Robust Lip Contour Extraction using Separability of Multi-Dimensional Distributions Tomokazu Wakasugi, Masahide Nishiura and Kazuhiro Fukui Corporate Research and Development Center, Toshiba Corporation

More information

Lane Detection Algorithm based on Local Feature Extraction

Lane Detection Algorithm based on Local Feature Extraction Lane Detection Algorithm based on Local Feature Etraction Guorong Liu 1,2 1 College of Electrical and Information Engineering Hunan University Changsha, People s Republic of China lgr745@hotmail.com Shutao

More information

HOUGH TRANSFORM CS 6350 C V

HOUGH TRANSFORM CS 6350 C V HOUGH TRANSFORM CS 6350 C V HOUGH TRANSFORM The problem: Given a set of points in 2-D, find if a sub-set of these points, fall on a LINE. Hough Transform One powerful global method for detecting edges

More information

A NOVEL LANE FEATURE EXTRACTION ALGORITHM BASED ON DIGITAL INTERPOLATION

A NOVEL LANE FEATURE EXTRACTION ALGORITHM BASED ON DIGITAL INTERPOLATION 17th European Signal Processing Conference (EUSIPCO 2009) Glasgow, Scotland, August 24-28, 2009 A NOVEL LANE FEATURE EXTRACTION ALGORITHM BASED ON DIGITAL INTERPOLATION Yifei Wang, Naim Dahnoun, and Alin

More information

Use of Shape Deformation to Seamlessly Stitch Historical Document Images

Use of Shape Deformation to Seamlessly Stitch Historical Document Images Use of Shape Deformation to Seamlessly Stitch Historical Document Images Wei Liu Wei Fan Li Chen Jun Sun Satoshi Naoi In China, efforts are being made to preserve historical documents in the form of digital

More information

LOCAL-GLOBAL OPTICAL FLOW FOR IMAGE REGISTRATION

LOCAL-GLOBAL OPTICAL FLOW FOR IMAGE REGISTRATION LOCAL-GLOBAL OPTICAL FLOW FOR IMAGE REGISTRATION Ammar Zayouna Richard Comley Daming Shi Middlesex University School of Engineering and Information Sciences Middlesex University, London NW4 4BT, UK A.Zayouna@mdx.ac.uk

More information

Cs : Computer Vision Final Project Report

Cs : Computer Vision Final Project Report Cs 600.461: Computer Vision Final Project Report Giancarlo Troni gtroni@jhu.edu Raphael Sznitman sznitman@jhu.edu Abstract Given a Youtube video of a busy street intersection, our task is to detect, track,

More information

Chapter 9 Object Tracking an Overview

Chapter 9 Object Tracking an Overview Chapter 9 Object Tracking an Overview The output of the background subtraction algorithm, described in the previous chapter, is a classification (segmentation) of pixels into foreground pixels (those belonging

More information

Evaluation of Moving Object Tracking Techniques for Video Surveillance Applications

Evaluation of Moving Object Tracking Techniques for Video Surveillance Applications International Journal of Current Engineering and Technology E-ISSN 2277 4106, P-ISSN 2347 5161 2015INPRESSCO, All Rights Reserved Available at http://inpressco.com/category/ijcet Research Article Evaluation

More information

A New Approach for Shape Dissimilarity Retrieval Based on Curve Evolution and Ant Colony Optimization

A New Approach for Shape Dissimilarity Retrieval Based on Curve Evolution and Ant Colony Optimization Proc. Int. Conf. on Recent Trends in Information Processing & Computing, IPC A New Approach for Shape Dissimilarity Retrieval Based on Curve Evolution and Ant Colony Optimization Younes Saadi 1, Rathiah

More information

Real Time Motion Detection Using Background Subtraction Method and Frame Difference

Real Time Motion Detection Using Background Subtraction Method and Frame Difference Real Time Motion Detection Using Background Subtraction Method and Frame Difference Lavanya M P PG Scholar, Department of ECE, Channabasaveshwara Institute of Technology, Gubbi, Tumkur Abstract: In today

More information

Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers

Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers A. Salhi, B. Minaoui, M. Fakir, H. Chakib, H. Grimech Faculty of science and Technology Sultan Moulay Slimane

More information

A Survey of Light Source Detection Methods

A Survey of Light Source Detection Methods A Survey of Light Source Detection Methods Nathan Funk University of Alberta Mini-Project for CMPUT 603 November 30, 2003 Abstract This paper provides an overview of the most prominent techniques for light

More information

Fingerprint Image Enhancement Algorithm and Performance Evaluation

Fingerprint Image Enhancement Algorithm and Performance Evaluation Fingerprint Image Enhancement Algorithm and Performance Evaluation Naja M I, Rajesh R M Tech Student, College of Engineering, Perumon, Perinad, Kerala, India Project Manager, NEST GROUP, Techno Park, TVM,

More information

Types of Edges. Why Edge Detection? Types of Edges. Edge Detection. Gradient. Edge Detection

Types of Edges. Why Edge Detection? Types of Edges. Edge Detection. Gradient. Edge Detection Why Edge Detection? How can an algorithm extract relevant information from an image that is enables the algorithm to recognize objects? The most important information for the interpretation of an image

More information

Metric for the Fusion of Synthetic and Real Imagery from Multimodal Sensors

Metric for the Fusion of Synthetic and Real Imagery from Multimodal Sensors American Journal of Engineering and Applied Sciences Original Research Paper Metric for the Fusion of Synthetic and Real Imagery from Multimodal Sensors 1 Rami Nahas and 2 S.P. Kozaitis 1 Electrical Engineering,

More information

On-road obstacle detection system for driver assistance

On-road obstacle detection system for driver assistance Asia Pacific Journal of Engineering Science and Technology 3 (1) (2017) 16-21 Asia Pacific Journal of Engineering Science and Technology journal homepage: www.apjest.com Full length article On-road obstacle

More information

Biometric Security System Using Palm print

Biometric Security System Using Palm print ISSN (Online) : 2319-8753 ISSN (Print) : 2347-6710 International Journal of Innovative Research in Science, Engineering and Technology Volume 3, Special Issue 3, March 2014 2014 International Conference

More information

On-Board Driver Assistance System for Lane Departure Warning and Vehicle Detection

On-Board Driver Assistance System for Lane Departure Warning and Vehicle Detection International Journal of Electrical Energy, Vol. 1, No. 3, September 2013 On-Board Driver Assistance System for Lane Departure Warning and Vehicle Detection Hamdi Yalın Yalıç, Ali Seydi Keçeli, and Aydın

More information

Detection & Classification of Arrow Markings on Roads using Signed Edge Signatures

Detection & Classification of Arrow Markings on Roads using Signed Edge Signatures 2012 Intelligent Vehicles Symposium Alcalá de Henares, Spain, June 3-7, 2012 Detection & Classification of Arrow Markings on Roads using Signed Edge Signatures S. Suchitra, R. K. Satzoda and T. Srikanthan

More information

Deep Learning. Deep Learning. Practical Application Automatically Adding Sounds To Silent Movies

Deep Learning. Deep Learning. Practical Application Automatically Adding Sounds To Silent Movies http://blog.csdn.net/zouxy09/article/details/8775360 Automatic Colorization of Black and White Images Automatically Adding Sounds To Silent Movies Traditionally this was done by hand with human effort

More information

Low Cost Motion Capture

Low Cost Motion Capture Low Cost Motion Capture R. Budiman M. Bennamoun D.Q. Huynh School of Computer Science and Software Engineering The University of Western Australia Crawley WA 6009 AUSTRALIA Email: budimr01@tartarus.uwa.edu.au,

More information

(Refer Slide Time 00:17) Welcome to the course on Digital Image Processing. (Refer Slide Time 00:22)

(Refer Slide Time 00:17) Welcome to the course on Digital Image Processing. (Refer Slide Time 00:22) Digital Image Processing Prof. P. K. Biswas Department of Electronics and Electrical Communications Engineering Indian Institute of Technology, Kharagpur Module Number 01 Lecture Number 02 Application

More information

Measurements using three-dimensional product imaging

Measurements using three-dimensional product imaging ARCHIVES of FOUNDRY ENGINEERING Published quarterly as the organ of the Foundry Commission of the Polish Academy of Sciences ISSN (1897-3310) Volume 10 Special Issue 3/2010 41 46 7/3 Measurements using

More information

Multi-pass approach to adaptive thresholding based image segmentation

Multi-pass approach to adaptive thresholding based image segmentation 1 Multi-pass approach to adaptive thresholding based image segmentation Abstract - Thresholding is still one of the most common approaches to monochrome image segmentation. It often provides sufficient

More information

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Zhiyan Zhang 1, Wei Qian 1, Lei Pan 1 & Yanjun Li 1 1 University of Shanghai for Science and Technology, China

More information

The area processing unit of Caroline

The area processing unit of Caroline 2nd Workshop Robot Vision RobVis '08 February 18-20, 2008 Auckland, New Zealand The area processing unit of Caroline Finding the way through DARPA's urban challenge February 18th, 2008 Kai Berger Christian

More information

Time Stamp Detection and Recognition in Video Frames

Time Stamp Detection and Recognition in Video Frames Time Stamp Detection and Recognition in Video Frames Nongluk Covavisaruch and Chetsada Saengpanit Department of Computer Engineering, Chulalongkorn University, Bangkok 10330, Thailand E-mail: nongluk.c@chula.ac.th

More information

Vehicle Detection Method using Haar-like Feature on Real Time System

Vehicle Detection Method using Haar-like Feature on Real Time System Vehicle Detection Method using Haar-like Feature on Real Time System Sungji Han, Youngjoon Han and Hernsoo Hahn Abstract This paper presents a robust vehicle detection approach using Haar-like feature.

More information

L*a*b* color model based road lane detection in autonomous vehicles

L*a*b* color model based road lane detection in autonomous vehicles Available online at www.banglajol.info Bangladesh J. Sci. Ind. Res. 52(4), 273-280, 2017 L*a*b* color model based road lane detection in autonomous vehicles M. Kazemi* and Y. Baleghi Electrical Engineering

More information

Skew Detection and Correction of Document Image using Hough Transform Method

Skew Detection and Correction of Document Image using Hough Transform Method Skew Detection and Correction of Document Image using Hough Transform Method [1] Neerugatti Varipally Vishwanath, [2] Dr.T. Pearson, [3] K.Chaitanya, [4] MG JaswanthSagar, [5] M.Rupesh [1] Asst.Professor,

More information

Cover Page. Abstract ID Paper Title. Automated extraction of linear features from vehicle-borne laser data

Cover Page. Abstract ID Paper Title. Automated extraction of linear features from vehicle-borne laser data Cover Page Abstract ID 8181 Paper Title Automated extraction of linear features from vehicle-borne laser data Contact Author Email Dinesh Manandhar (author1) dinesh@skl.iis.u-tokyo.ac.jp Phone +81-3-5452-6417

More information

HOG-Based Person Following and Autonomous Returning Using Generated Map by Mobile Robot Equipped with Camera and Laser Range Finder

HOG-Based Person Following and Autonomous Returning Using Generated Map by Mobile Robot Equipped with Camera and Laser Range Finder HOG-Based Person Following and Autonomous Returning Using Generated Map by Mobile Robot Equipped with Camera and Laser Range Finder Masashi Awai, Takahito Shimizu and Toru Kaneko Department of Mechanical

More information

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm Group 1: Mina A. Makar Stanford University mamakar@stanford.edu Abstract In this report, we investigate the application of the Scale-Invariant

More information

American International Journal of Research in Science, Technology, Engineering & Mathematics

American International Journal of Research in Science, Technology, Engineering & Mathematics American International Journal of Research in Science, Technology, Engineering & Mathematics Available online at http://www.iasir.net ISSN (Print): 2328-3491, ISSN (Online): 2328-3580, ISSN (CD-ROM): 2328-3629

More information

Understanding Tracking and StroMotion of Soccer Ball

Understanding Tracking and StroMotion of Soccer Ball Understanding Tracking and StroMotion of Soccer Ball Nhat H. Nguyen Master Student 205 Witherspoon Hall Charlotte, NC 28223 704 656 2021 rich.uncc@gmail.com ABSTRACT Soccer requires rapid ball movements.

More information

Towards a Calibration-Free Robot: The ACT Algorithm for Automatic Online Color Training

Towards a Calibration-Free Robot: The ACT Algorithm for Automatic Online Color Training Towards a Calibration-Free Robot: The ACT Algorithm for Automatic Online Color Training Patrick Heinemann, Frank Sehnke, Felix Streichert, and Andreas Zell Wilhelm-Schickard-Institute, Department of Computer

More information

Identifying and Reading Visual Code Markers

Identifying and Reading Visual Code Markers O. Feinstein, EE368 Digital Image Processing Final Report 1 Identifying and Reading Visual Code Markers Oren Feinstein, Electrical Engineering Department, Stanford University Abstract A visual code marker

More information

Cameras. Guide for selection, installation and setting of video surveillance cameras. Cameras : selection, installation and setting guide VIT 1

Cameras. Guide for selection, installation and setting of video surveillance cameras. Cameras : selection, installation and setting guide VIT 1 2012 Cameras Guide for selection, installation and setting of video surveillance cameras Cameras : selection, installation and setting guide VIT 1 2012 Content CAMERA AND LENS REQUIREMENTS... 3 CAMERA

More information

Evaluation of Road Marking Feature Extraction

Evaluation of Road Marking Feature Extraction Proceedings of the th International IEEE Conference on Intelligent Transportation Systems Beijing, China, October 2-5, 28 Evaluation of Road Marking Feature Extraction Thomas Veit, Jean-Philippe Tarel,

More information

A New Algorithm for Shape Detection

A New Algorithm for Shape Detection IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 3, Ver. I (May.-June. 2017), PP 71-76 www.iosrjournals.org A New Algorithm for Shape Detection Hewa

More information

AUTOMATED CALIBRATION TECHNIQUE FOR PHOTOGRAMMETRIC SYSTEM BASED ON A MULTI-MEDIA PROJECTOR AND A CCD CAMERA

AUTOMATED CALIBRATION TECHNIQUE FOR PHOTOGRAMMETRIC SYSTEM BASED ON A MULTI-MEDIA PROJECTOR AND A CCD CAMERA AUTOMATED CALIBRATION TECHNIQUE FOR PHOTOGRAMMETRIC SYSTEM BASED ON A MULTI-MEDIA PROJECTOR AND A CCD CAMERA V. A. Knyaz * GosNIIAS, State Research Institute of Aviation System, 539 Moscow, Russia knyaz@gosniias.ru

More information

Vision. OCR and OCV Application Guide OCR and OCV Application Guide 1/14

Vision. OCR and OCV Application Guide OCR and OCV Application Guide 1/14 Vision OCR and OCV Application Guide 1.00 OCR and OCV Application Guide 1/14 General considerations on OCR Encoded information into text and codes can be automatically extracted through a 2D imager device.

More information

Requirements for region detection

Requirements for region detection Region detectors Requirements for region detection For region detection invariance transformations that should be considered are illumination changes, translation, rotation, scale and full affine transform

More information

A Novel Video Enhancement Based on Color Consistency and Piecewise Tone Mapping

A Novel Video Enhancement Based on Color Consistency and Piecewise Tone Mapping A Novel Video Enhancement Based on Color Consistency and Piecewise Tone Mapping Keerthi Rajan *1, A. Bhanu Chandar *2 M.Tech Student Department of ECE, K.B.R. Engineering College, Pagidipalli, Nalgonda,

More information

International Journal of Advance Engineering and Research Development. Iris Recognition and Automated Eye Tracking

International Journal of Advance Engineering and Research Development. Iris Recognition and Automated Eye Tracking International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.72 Special Issue SIEICON-2017,April -2017 e-issn : 2348-4470 p-issn : 2348-6406 Iris

More information

Light source estimation using feature points from specular highlights and cast shadows

Light source estimation using feature points from specular highlights and cast shadows Vol. 11(13), pp. 168-177, 16 July, 2016 DOI: 10.5897/IJPS2015.4274 Article Number: F492B6D59616 ISSN 1992-1950 Copyright 2016 Author(s) retain the copyright of this article http://www.academicjournals.org/ijps

More information

Estimation of a Road Mask to Improve Vehicle Detection and Tracking in Airborne Imagery

Estimation of a Road Mask to Improve Vehicle Detection and Tracking in Airborne Imagery Estimation of a Road Mask to Improve Vehicle Detection and Tracking in Airborne Imagery Xueyan Du and Mark Hickman This research proposes a method to estimate a road mask in airborne imagery to improve

More information

Malaysian License Plate Recognition Artificial Neural Networks and Evolu Computation. The original publication is availabl

Malaysian License Plate Recognition Artificial Neural Networks and Evolu Computation. The original publication is availabl JAIST Reposi https://dspace.j Title Malaysian License Plate Recognition Artificial Neural Networks and Evolu Computation Stephen, Karungaru; Fukumi, Author(s) Minoru; Norio Citation Issue Date 2005-11

More information

Finger Print Enhancement Using Minutiae Based Algorithm

Finger Print Enhancement Using Minutiae Based Algorithm Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 8, August 2014,

More information

CS334: Digital Imaging and Multimedia Edges and Contours. Ahmed Elgammal Dept. of Computer Science Rutgers University

CS334: Digital Imaging and Multimedia Edges and Contours. Ahmed Elgammal Dept. of Computer Science Rutgers University CS334: Digital Imaging and Multimedia Edges and Contours Ahmed Elgammal Dept. of Computer Science Rutgers University Outlines What makes an edge? Gradient-based edge detection Edge Operators From Edges

More information

With the number plate now correctly positioned it is important that it s size is at least 130 pixels high, and up to a maximum of 500 pixels.

With the number plate now correctly positioned it is important that it s size is at least 130 pixels high, and up to a maximum of 500 pixels. October 2017 v1.0 For the correct working of the Automatic Number Plate Reading camera, you must strictly follow the instructions in this manual. Before committing to any installation, it is recommended

More information

Locating ego-centers in depth for hippocampal place cells

Locating ego-centers in depth for hippocampal place cells 204 5th Joint Symposium on Neural Computation Proceedings UCSD (1998) Locating ego-centers in depth for hippocampal place cells Kechen Zhang,' Terrence J. Sejeowski112 & Bruce L. ~cnau~hton~ 'Howard Hughes

More information

Vision Based Road Lane Detection System for Vehicles Guidance

Vision Based Road Lane Detection System for Vehicles Guidance Australian Journal of Basic and Applied Sciences, 5(5): 728-738, 2011 ISSN 1991-8178 Vision Based Road Lane Detection System for Vehicles Guidance Othman O Khalifa, Md. Rafiqul Islam, Abdulhakam.AM. Assidi,

More information

Automated image enhancement using power law transformations

Automated image enhancement using power law transformations Sādhanā Vol. 37, Part 6, December 212, pp. 739 745. c Indian Academy of Sciences Automated image enhancement using power law transformations SPVIMAL 1 and P K THIRUVIKRAMAN 2, 1 Birla Institute of Technology

More information

Journal of Industrial Engineering Research

Journal of Industrial Engineering Research IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Mammogram Image Segmentation Using voronoi Diagram Properties Dr. J. Subash

More information

Detecting Salient Contours Using Orientation Energy Distribution. Part I: Thresholding Based on. Response Distribution

Detecting Salient Contours Using Orientation Energy Distribution. Part I: Thresholding Based on. Response Distribution Detecting Salient Contours Using Orientation Energy Distribution The Problem: How Does the Visual System Detect Salient Contours? CPSC 636 Slide12, Spring 212 Yoonsuck Choe Co-work with S. Sarma and H.-C.

More information

A Development Of A Web-Based Application System Of QR Code Location Generator and Scanner named QR- Location

A Development Of A Web-Based Application System Of QR Code Location Generator and Scanner named QR- Location UTM Computing Proceedings Innovations in Computing Technology and Applications Volume 2 Year: 2017 ISBN: 978-967-0194-95-0 1 A Development Of A Web-Based Application System Of QR Code Location Generator

More information

On Road Vehicle Detection using Shadows

On Road Vehicle Detection using Shadows On Road Vehicle Detection using Shadows Gilad Buchman Grasp Lab, Department of Computer and Information Science School of Engineering University of Pennsylvania, Philadelphia, PA buchmag@seas.upenn.edu

More information

Motion Detection. Final project by. Neta Sokolovsky

Motion Detection. Final project by. Neta Sokolovsky Motion Detection Final project by Neta Sokolovsky Introduction The goal of this project is to recognize a motion of objects found in the two given images. This functionality is useful in the video processing

More information

Mouse Pointer Tracking with Eyes

Mouse Pointer Tracking with Eyes Mouse Pointer Tracking with Eyes H. Mhamdi, N. Hamrouni, A. Temimi, and M. Bouhlel Abstract In this article, we expose our research work in Human-machine Interaction. The research consists in manipulating

More information

Project proposal: Statistical models of visual neurons

Project proposal: Statistical models of visual neurons Project proposal: Statistical models of visual neurons Anna Sotnikova asotniko@math.umd.edu Project Advisor: Prof. Daniel A. Butts dab@umd.edu Department of Biology Abstract Studying visual neurons may

More information

Efficient Lane Detection and Tracking in Urban Environments

Efficient Lane Detection and Tracking in Urban Environments 1 Efficient Lane Detection and Tracking in Urban Environments Stephan Sehestedt Sarath Kodagoda Alen Alempijevic Gamini Dissanayake The Arc Centre of Excellence for Autonomous Systems, The University of

More information

Research Fellow, Korea Institute of Civil Engineering and Building Technology, Korea (*corresponding author) 2

Research Fellow, Korea Institute of Civil Engineering and Building Technology, Korea (*corresponding author) 2 Algorithm and Experiment for Vision-Based Recognition of Road Surface Conditions Using Polarization and Wavelet Transform 1 Seung-Ki Ryu *, 2 Taehyeong Kim, 3 Eunjoo Bae, 4 Seung-Rae Lee 1 Research Fellow,

More information

TRACK AND OBSTACLE DETECTION WITH USB CAMERA FOR VISION-BASED AUTOMATED GUIDED VEHICLE

TRACK AND OBSTACLE DETECTION WITH USB CAMERA FOR VISION-BASED AUTOMATED GUIDED VEHICLE Track And Obstacle Detection With Usb Camera For Vision-based Automated Guided Vehicle TRACK AND OBSTACLE DETECTION WITH USB CAMERA FOR VISION-BASED AUTOMATED GUIDED VEHICLE Sulaiman S., 1 Marizan S. 2,

More information

AN APPROACH OF SEMIAUTOMATED ROAD EXTRACTION FROM AERIAL IMAGE BASED ON TEMPLATE MATCHING AND NEURAL NETWORK

AN APPROACH OF SEMIAUTOMATED ROAD EXTRACTION FROM AERIAL IMAGE BASED ON TEMPLATE MATCHING AND NEURAL NETWORK AN APPROACH OF SEMIAUTOMATED ROAD EXTRACTION FROM AERIAL IMAGE BASED ON TEMPLATE MATCHING AND NEURAL NETWORK Xiangyun HU, Zuxun ZHANG, Jianqing ZHANG Wuhan Technique University of Surveying and Mapping,

More information

Low-level Image Processing for Lane Detection and Tracking

Low-level Image Processing for Lane Detection and Tracking Low-level Image Processing for Lane Detection and Tracking Ruyi Jiang 1, Reinhard Klette 2, Shigang Wang 1, and Tobi Vaudrey 2 1 Shanghai Jiao Tong University, Shanghai, China 2 The University of Auckland,

More information

IMAGE SEGMENTATION. Václav Hlaváč

IMAGE SEGMENTATION. Václav Hlaváč IMAGE SEGMENTATION Václav Hlaváč Czech Technical University in Prague Faculty of Electrical Engineering, Department of Cybernetics Center for Machine Perception http://cmp.felk.cvut.cz/ hlavac, hlavac@fel.cvut.cz

More information

C. Premsai 1, Prof. A. Kavya 2 School of Computer Science, School of Computer Science Engineering, Engineering VIT Chennai, VIT Chennai

C. Premsai 1, Prof. A. Kavya 2 School of Computer Science, School of Computer Science Engineering, Engineering VIT Chennai, VIT Chennai Traffic Sign Detection Via Graph-Based Ranking and Segmentation Algorithm C. Premsai 1, Prof. A. Kavya 2 School of Computer Science, School of Computer Science Engineering, Engineering VIT Chennai, VIT

More information

How does the ROI affect the thresholding?

How does the ROI affect the thresholding? How does the ROI affect the thresholding? Micro-computed tomography can be applied for the visualization of the inner structure of a material or biological tissue in a non-destructive manner. Besides visualization,

More information