Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 18

Size: px
Start display at page:

Download "Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 18"

Transcription

1 Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 18 CADDM The recognition algorithm for lane line of urban road based on feature analysis Xiao Xiao, Che Xiangjiu College of Computer Science and Technology, Jilin University, Jilin , China Abstract: The building information model/modeling (BIM) technology is currently applied in a broad range of applications and research for facility management (FM), while the BIM-based mobile FM is difficult owing to various factors and environments. For example, the mobile applications usually require frequent cross-equipment compatibility. This paper proposes a reasonable BIM-based FM cross-platform framework and develops a mobile application on the basis of an existing BIM-based FM system. The developed mobile application is applied in a case study of a metro station project in Guangzhou to verify its effectiveness in FM practice. It helps maintenance staff in viewing BIMs, accessing related information, and updating maintenance records in a unique platform. The test results demonstrate that the proposed BIM-based cross-platform framework meet the FM application requirements and supports the extension of FM functions. Key words: facility management; building information model/modeling; mobile application; cross-platform; hybrid application 1 Introduction Urban transportation and people s life is closely linked. The car completely covered the contemporary people's life, makes people's life more convenient and fast. But it also causes many problems, such as traffic jams and traffic accidents, etc. In particular, the damage of traffic accidents to the family and society is especially serious. Recently, most of traffic accidents are caused by vehicles driving off the track. If we can detect and identify the lane line and remind drivers when the vehicles get out of their way, it will significantly reduce traffic accidents. At present many countries are doing a lot of research work on the lane line detection, and they have found a lot of lane line detection algorithms. Those algorithms use different path models and recognition technology. They can be roughly divided into two categories, one is the method based on the feature, the other is the method based on model. The method based on the feature mainly uses the image features of roads, such as edge, color and texture, etc. For example, in the reference [1], using color features with the method of the color space of color clustering recognition lane line, and then fitting the lane line. But the efficiency of the algorithm is low. In the reference [2], it gives a method based on edge detection, then uses the method based on a straight line to detect lane line. The method based on model is using a priori knowledge of the road to describe the lane line with a specific geometry model. The common road models include straight line model, parabolic model, hyperbolic model and spline curve model, etc. For examples, in the reference [3], the main work is estimating the parameters of hyperbola in order to use the hyperbolic model to describe the lane line. In the reference [4-5], it uses consistency with random sampling algorithm fitting the B-spline curve to get parameters of the lane line model. In the lane line detection, most of the captured images have interference background. Especially for the city road image, a lot of interference is created by the houses, trees, street lamps, etc. If we can remove the interference background, the detection accuracy can be greatly increased. In most instances, the physical properties of the lane line are not considered when the lane line is detected. Different types of lane line have different meanings, it is very meaningful to identify its physical properties in the intelligent transportation system. In this article, we detect lane line by analyzing the characteristics of the lane line. First we carry out the ROI(Region of Interest) initialization, then apply a more suitable method for image graying. Further we Project item: Supported by National Natural Science Foundation of China (NSFC) ( ). Corresponding author: Che Xiangjiu, Male, Ph.D., Professor. chexj@jlu.edu.cn.

2 Xiao Xiao et al., The recognition algorithm for lane line of urban road based on feature analysis 19 use the method based on the lane line features analysis to extract the lane line area. Finally we use Hough Transform algorithm with constraints to detect the lane line, and identifying the lane line physical properties. 2 Image preprocessing Before detecting the lane line in the image, we should do the image preprocessing. The main tasks are the ROI initialization, image graying and extracting feature area. 2.1 ROI initialization In order to reduce the processing time while keeping good performance, the ROI Initialization of the input image is necessary. Generally speaking, the lane line often locates in the lower part of the picture. That is the reason why our ROI is selected on the lower half of the image. In our testing process, there are two lane lines: left and right. So we divided the ROI into the left and right sub-regions. In this paper, the size of each picture is The original image and the ROI as shown in Fig.1 and Fig.2. Fig. 1 Original image. Fig. 2 ROI. 2.2 Image graying Most of the color images are RGB color space, we need to convert them into grayscale image. On the road, the colors of the lane marks are usually white or yellow. In order to enhance the character of the lane-mark information, we use a more efficient method [6] as: Gray = R G B (1) The range of the R, G and B is within [0, 255], respectively represents the value of the Red, Green, and Blue components. Gray is the value after graying. The result after processing is shown in Fig.3. Fig. 3 Grayscale. 2.3 Extracting feature area Before the lane line detection, we need to extract the feature area of the lane line. In this article, we adopt the edge detection algorithm to extract the edge character of ROI. Then we put forward a method to remove those pixels that do not belong to the edge of the lane line by the analysis of the feature of lane line, namely the interference background. Thus we can get more accurate lane line feature area. In this article, we use Canny edge detection [7]. The Canny edge detection is a multi-level edge detection method which was developed by Canny J in 1986, aiming to find an optimal edge detection algorithm. Canny edge detection algorithm can obtain better

3 20 Computer Aided Drafting, Design and Manufacturing (CADDM), Vol.26, No.2, Jun results even in the case of low contrast. Steps of Canny edge detection: (1) Elimination of noise edges: using Gaussian filter on the image. Image Gaussian filter can use the two one-dimension Gaussian kernels to do convolution twice, also can use a two-dimensional Gaussian kernel to do convolution once. One-dimensional Gaussian function and two-dimensional Gaussian function are shown as: 2 2 2σ x 1 K = e 2π σ σ x y 1 K = e 2π 2 σ (2) (3) (2) Computing the gradient and direction: we use the convolution operator to do convolution in the image on the x direction and y direction. The convolution operator is represented as G x and G y. We use the Eq.(4) and (5) to calculate the gradient and direction of each pixel in the image: 2 2 x y G G G (4) GY θ =arctan (5) GX The gradient direction generally is chosen from these four possible angles: 0, 45, 90 and 135. (3) The non-maximum inhibition: excluding the non-edge pixels, just keeping some candidate. (4) Hysteresis thresholds: we select two thresholds. If a pixel value in the picture is greater than the high threshold, the pixel is on the edge. If a pixel value in the picture is less than the low threshold, the pixel will be excluded. If the value of a pixel in the picture between the two thresholds, the pixel will be preserved when it connect to a pixel which is greater than the high threshold. Canny edge detection processing results are shown in Fig.4. Fig. 4 Canny edge detection. There are lots of edges that do not belong to lane lines in Fig.4. The original method [8] did the detection on the results as Fig.4 directly. It not only influenced the correct detection of the lane line, but also made heavy workload. Through the above description and the analysis of the feature of lane line, in this paper, we put forward a method based on contour map to remove interference background. The contour map is put these pixels which are detected by edge detection together to be a whole. If the interference background can be removed, the accuracy and efficiency of detection can be improved [9]. The specific method is as follows: (1) Analyzing the area of contour map of lane line and interference background. Lane line is a relatively independent and obvious individual, its contour area is bigger than the area of the interference of background. So we put forward a method to choose contour maps by the comparison of contours and a threshold. The calculation of contour area is the number of pixels contained in contour map. A contour map will be retained if its area is greater than the threshold, while a contour map will be removed if its area is less than the threshold. (2) Analyzing the width-length ratio of lane line and interference background. In normal circumstances, the lane line is parallel with the movement trace of the car, but the lane line is tilted in driving view. Even so, its width-length ratio of edge contour area should be within a certain range. The width-length ratio refers to the peripheral rectangle of the contour map. We will reserve those pixels if the width-length ratio is in the range, otherwise, we will remove those pixels. According to the analysis of lots of pictures, we found that the contour area of some interference background is very small comparing with the lane line. And the width-length ratio of lane lines should be limited. We should remove those contour maps if the width-length ratio is too large [10]. After the experiments of 300 pictures(the size of those pictures is ) we collected, we found that the results are optimal when the threshold of contour area is set to 40. Then we did subsequent experiments to those pictures which were processed above, when the threshold of width-length ratio is set to 3 we can get the best results. The experimental results as shown in Fig.5.

4 Xiao Xiao et al., The recognition algorithm for lane line of urban road based on feature analysis 21 Fig. 5 After elimination of interference background process. By contrast Fig.5 with the Canny transformation result (as shown in Fig.4), obviously we can get that a lot of interference background on the picture has been removed. The preserved edge character fits the requirements more. The error brought by the interference background will be reduced, and the efficiency and accuracy of lane line detection can be improved. 3 Lane line detection and recognition 3.1 Hough transform The lane line detection based on Hough Transform is a commonly used method. Hough Transform is a kind of space transform, it implements the mapping from image space to the parameter space. A straight line under the x-y coordinate system can be represented by y = kx + b. The main idea of the Hough Transform is to exchange the equation parameters and variables, with x and y as known quantity, k and b as variables. The parameter space coordinates are expressed as ρ and θ of polar coordinates. The formula equation is shown as follow: ρ = xcosθ ysinθ (6) According to the Eq.(6), points of straight line of a image are mapped into sine curve of ρ-θ space, and these sine curves at one point, as shown in Fig.6. In Fig.6, a few points on a straight line of x-y coordinate system are shown in Fig.6(a), and the corresponding sine curves of the ρ-θ space are shown in (b). Several properties of Hough Transform are as follows: (a) (b) Fig. 6 Example of Hough Transform. (a) x-y coordinate system; (b) ρ-θ space. (1) A point of the x-y space corresponds to a sine curve of the ρ-θ space. (2) A point of the ρ-θ space corresponds to a straight line of the x-y space. (3) N points on a straight line of x-y space correspond to n sine curves at a common point of ρ-θ space. Secondly, based on the removal of the interference of background, we choose the longest straight line as the lane line in two ROI sub-regions respectively. After these operations the result of lane line detection is shown in Fig.7. In this paper, the specific process by using Hough Transform with constraints is as follow: According to the feature of the lane line, firstly, in the picture, the lane line hardly appears in horizontal direction, so we should delete the straight line whose slope between the [ 0.1, 0.1] [10]. Fig. 7 Result after Hough Transform.

5 22 Computer Aided Drafting, Design and Manufacturing (CADDM), Vol.26, No.2, Jun The identification of physical properties of the lane line As the different types of lane lines have different meanings, the identification of physical properties of the lane line has a great significance to intelligent transportation system. We mainly identify the color of lane line and distinguish the lane line is dotted line or full line. First, the beginning and end of the lane line can be gotten through lane line detection. It is set to p 1 (x 1, y 1 ) and p 2 (x 2, y 2 ) respectively, and then extracting the neighborhood of lane line [11]. The coordinates of four vertices of neighborhood are (x 1, y 1 OFFSET), (x 1, y 1 +OFFSET), (x 2, y 2 OFFSET) and (x 2, y 2 +OFFSET). According to the size of the image, the OFFSET is set to 10, it means the width of the neighborhood is 20 pixels.when we are identifying the color, because of RGB color space is not a uniform color space, it is not suitable for color identification. In this paper, we use the HSV color space [12]. HSV color can be divided into three components: hue(h), saturation(s) and luminance(v). The transformation from RGB color space to HSV color space is shown as: V max R, G, B / 255 (7) V min{ R, G, B}, if V 0 S V (8) 0, otherwise 60 G B, if V = R V min min R, G, B 60B R H 120, if V = G V min min R, G, B 60R G 240, if V = B V min min R, G, B (9) If H<0, then H=H+360. In OPENCV, H=H/2, S=S 255, V=V 255. The calculation of HSV component within the neighborhood is used for color identification. Then according to the number of the lines of identified color in proportion to the number of rows of the whole neighborhood, we can judge whether the lane line is dotted line or lines. The recognition algorithm is shown: begin for each line of the field do if(95<=componenth<=110&& componentv>40&& components>40) yellownum=yellownum+1. GetOneYellowPixelThisRow=true. end if if(componentv>=210) whitenum=whitenum+1. GetOneYellowPixelThisRow=true. end if end for if(yellownum>=whitenum) if(yellownum/sumlinesnum>0.7) LineColor=yellow and LineType=FullLine. else LineColor=yellow and LineType=DashLine. end if if(yellownum<whitenum) if(white/ sumlinesnum >0.7) LineColor=white and LineType=FullLine. else LineColor=yellow and LineType=DashLine. end if end The threshold value in the table H, S and V is the average of more than one lane image. 4 The experiment results and analysis In this paper, the experimental environment we use is VS2010 and OPENCV2.4.4, the machine configuration is i3 processor, RAM 4 GB. The image from the collection images focused on the road of Changchun city of Jilin province. We selected a large number of images with various road background, the experiment results and analysis is shown as follows. 4.1 The lane line detection results As shown in Fig.8, we choose four groups of images with four kinds of methods to test, method 1 is the original method [8] which does not do the removal of interference background, results such as Fig.(a1), (b1), (c1) and (d1). Method 2 [13] is the feature extraction algorithm based on local information, results such as Fig.(a2), (b2), (c2) and (d2). Method 3 is based on the raster scanning manner, after the straight line detection, to scan every single line. The road lane lines are detected when they meet the lane line feature, results such as Fig.(a3), (b3), (c3) and (d3). Method 4 is an improved algorithm proposed by this paper which removes interference background, the results of experiment are Fig.(a4), (b4), (c4) and (d4). From the experiment results above, we can obviously find that the former three methods can not get satisfied results, while the method proposed in this paper can accurately detect various types of lane line, the accuracy is obviously improved.

6 Xiao Xiao et al., The recognition algorithm for lane line of urban road based on feature analysis (a1) (a2) (a3) (a4) (b1) (b2) (b3) (b4) (c1) (c2) (c3) (c4) (d1) (d2) (d3) (d4) Fig. 8 Result of lane line detection. 23

7 24 Computer Aided Drafting, Design and Manufacturing (CADDM), Vol.26, No.2, Jun In order to analyze the computation time of the four different methods, we use the same group of images to test the four methods, and the result is shown in Table 1. Table 1 Computation time Method Time(ms) Average time(ms) Method 1 [8] Method 2 [13] Method 3 This paper The range of computing time and average time shown in Table 1 is counted from reading of images to getting the results of lane line detection. We can clearly see that the proposed method in this paper uses the shortest computing time and average time, and gets a great improvement compared with the method of 2 and 3. According to the experiment results above, the improved lane line detection method proposed by this paper not only has obvious increase in accuracy, but also has the very big enhancement on the calculation time. 4.2 The lane line identification of physical properties Through the algorithm described in table 1, this paper can accurately identify the color of the lane line and whether the lane line is dotted line or full one. The experiment results on the identification of lane line color and type are shown as Fig.9-12: Left yellow solid lane line Right white dotted lane line Fig. 9 Yellow solid lines and white dotted line. Left white dotted lane lines Right white dotted lane line Fig. 10 White dotted line and white dotted line. From the pictures above, we identify the different types of lane lines, such as white solid lines, yellow solid lines, white dotted lines, yellow dotted lines. From the experiment results, the proposed algorithm in this paper not only can accurately detect its specific location, but also can identify the type of lane line accurately.

8 Xiao Xiao et al., The recognition algorithm for lane line of urban road based on feature analysis 25 Left white solid lane line Right white solid lane line Fig. 11 White solid line and white solid line. Left yellow dotted lane line Right white dotted lane line Fig. 12 Yellow dotted line and white dotted line. 5 Conclusion Through the experiment results in section 4,the algorithm in this paper can improve the accuracy and has a high efficiency by improving the extraction of feature area of lane line. Simultaneously by identifying the physical feature of the lane line, we can identify the type of the lane line effectively, which means a lot to the follow-up work, such as pre-warning in the driving process. We hope we can get a more efficient algorithm in the subsequent work, making the intelligent transportation system more perfect. References [1] Ma C, Mao L, Xie M. Lane detection using heuristic search methods based on color clustering [C]// International Conference on Communications, Circuits and Systems Proceeding (ICCCAS). New York: IEEE Press, 2010: [2] Chang C Y, Lin C H. An efficient method for lane-mark extraction in complex conditions [C]//IEEE International Conference on Ubiquitous Intelligence and Computing. Los Alamitos: IEEE Computer Society, 2012: [3] Aly M. Real time detection of lane markers in urban streets[c]//ieee Intelligent Vehicles Symposium Eindhoven University of Technology Eindhoven. New York: IEEE Press, 2008: [4] Wang Y, Li B, Fairhurs M. Robust road modeling and tracking using condensation [J]. Intelligent Transportation Systems IEEE Transations on, 2008, 9(4): [5] Wang Y, Teoh E K. Dynamic b-snake model for complex objects segmentation [J]. Image and Vision Computing. 2005, 23(12): [6] Sun T Y, Huang W C. Embedded vehicle lane-marking tracking system [C]//IEEE International Symposium on Consumer Electronics. New York: IEEE Press, 2009: [7] Canny J. A computational approach to edge detection [J]. IEEE Transactions on Pattern Analysis and Machine Intelligence, 1986, 8(6):

9 26 Computer Aided Drafting, Design and Manufacturing (CADDM), Vol.26, No.2, Jun [8] Liu N, Cao J M, Wang X L. Vision-based lane detection algorithm [J]. Electronic Test, 2013(4): [9] Li M, Shi D, Cheng D, et al. Vision-based robot navigation using parallel Hough transform [C]// International Conference on Machine Learning and Cybernetics (ICMLC). New York: IEEE Press, 2013: [10] Wang J, Zhang Y, Shi X Y, et al. A quick scan and lane recognition algorithm based on positional distribution and edges features [C]//2010 International Conference on Image Processing and Pattern Recognition in Industrial Engineering. Xi an, China: International Society for Optics and Photonics (SPIE), 2010: 78202F-78202F-8. [11] Gu X L, Yang M, Wang B, et al. Lane detection and recognition based on around-view system [J]. Huazhong University of Science and Technology(Natural Science Edition), 2013, 41(Sup.l): [12] Zhang G Q, Li Z M, Li X W, et al. The color image segmentation research in the HSV space [J]. Computer Engineering and Applications, 2010, 46(26): [13] Liu G R, Li S T, Liu W R. Lane detection algorithm based on local feature extraction [C]//2013 Chinese Automation Congress(CAC). New York: IEEE Press, 2013, Xiao Xiao is studying in College of Computer science and Technology, Jilin university, Changchun, China. Her research interests include the wavelet transform, imaging processing, and especially focus on the detection of lane line. She born in 1993, master candidate. Che Xiangjiu is currently a professor in the College of Computer Science and Technology, Jilin University. He was promoted to a professor in September 2006, then in June 2012 to a doctoral supervisor. He is currently a member of CAD/CG professional committee, China Computer Federation; a member of Geometric Design and Computing professional committee, China Society for Industrial and Applied Mathematics. He is currently a council member of the China Computer Federation. His current research interests include visualization computing and analysis, surface modeling and 3D reconstruction, network media technology, etc. He received the PhD degree from Jilin University in 2003.

EDGE EXTRACTION ALGORITHM BASED ON LINEAR PERCEPTION ENHANCEMENT

EDGE EXTRACTION ALGORITHM BASED ON LINEAR PERCEPTION ENHANCEMENT EDGE EXTRACTION ALGORITHM BASED ON LINEAR PERCEPTION ENHANCEMENT Fan ZHANG*, Xianfeng HUANG, Xiaoguang CHENG, Deren LI State Key Laboratory of Information Engineering in Surveying, Mapping and Remote Sensing,

More information

Research on QR Code Image Pre-processing Algorithm under Complex Background

Research on QR Code Image Pre-processing Algorithm under Complex Background Scientific Journal of Information Engineering May 207, Volume 7, Issue, PP.-7 Research on QR Code Image Pre-processing Algorithm under Complex Background Lei Liu, Lin-li Zhou, Huifang Bao. Institute of

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

Rectangle Positioning Algorithm Simulation Based on Edge Detection and Hough Transform

Rectangle Positioning Algorithm Simulation Based on Edge Detection and Hough Transform Send Orders for Reprints to reprints@benthamscience.net 58 The Open Mechanical Engineering Journal, 2014, 8, 58-62 Open Access Rectangle Positioning Algorithm Simulation Based on Edge Detection and Hough

More information

Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection

Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection 1 Chongqing University of Technology Electronic Information and Automation College Chongqing, 400054, China E-mail: zh_lian@cqut.edu.cn

More information

Robust color segmentation algorithms in illumination variation conditions

Robust color segmentation algorithms in illumination variation conditions 286 CHINESE OPTICS LETTERS / Vol. 8, No. / March 10, 2010 Robust color segmentation algorithms in illumination variation conditions Jinhui Lan ( ) and Kai Shen ( Department of Measurement and Control Technologies,

More information

Algorithm Optimization for the Edge Extraction of Thangka Images

Algorithm Optimization for the Edge Extraction of Thangka Images 017 nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 017) ISBN: 978-1-60595-51-6 Algorithm Optimization for the Edge Extraction of Thangka Images Xiao-jing LIU 1,*, Jian-bang

More information

A Fast Method of Vehicle Logo Location Honglin Li

A Fast Method of Vehicle Logo Location Honglin Li 6th International Conference on Sensor Network and Computer Engineering (ICSNCE 2016) A Fast Method of Vehicle Logo Location Honglin Li School of Information Engineering, Qujing Normal University, Qujing

More information

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI *

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI * 2017 2nd International onference on Artificial Intelligence: Techniques and Applications (AITA 2017) ISBN: 978-1-60595-491-2 Research of Traffic Flow Based on SVM Method Deng-hong YIN, Jian WANG and Bo

More information

An Application of Canny Edge Detection Algorithm to Rail Thermal Image Fault Detection

An Application of Canny Edge Detection Algorithm to Rail Thermal Image Fault Detection Journal of Computer and Communications, 2015, *, ** Published Online **** 2015 in SciRes. http://www.scirp.org/journal/jcc http://dx.doi.org/10.4236/jcc.2015.***** An Application of Canny Edge Detection

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

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

Object Tracking Algorithm based on Combination of Edge and Color Information

Object Tracking Algorithm based on Combination of Edge and Color Information Object Tracking Algorithm based on Combination of Edge and Color Information 1 Hsiao-Chi Ho ( 賀孝淇 ), 2 Chiou-Shann Fuh ( 傅楸善 ), 3 Feng-Li Lian ( 連豊力 ) 1 Dept. of Electronic Engineering National Taiwan

More information

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2 International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 015) An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng

More information

Stripe Noise Removal from Remote Sensing Images Based on Stationary Wavelet Transform

Stripe Noise Removal from Remote Sensing Images Based on Stationary Wavelet Transform Sensors & Transducers, Vol. 78, Issue 9, September 204, pp. 76-8 Sensors & Transducers 204 by IFSA Publishing, S. L. http://www.sensorsportal.com Stripe Noise Removal from Remote Sensing Images Based on

More information

Extracting Road Signs using the Color Information

Extracting Road Signs using the Color Information Extracting Road Signs using the Color Information Wen-Yen Wu, Tsung-Cheng Hsieh, and Ching-Sung Lai Abstract In this paper, we propose a method to extract the road signs. Firstly, the grabbed image is

More information

Multi-Step Segmentation Method Based on Adaptive Thresholds for Chinese Calligraphy Characters

Multi-Step Segmentation Method Based on Adaptive Thresholds for Chinese Calligraphy Characters Journal of Information Hiding and Multimedia Signal Processing c 2018 ISSN 2073-4212 Ubiquitous International Volume 9, Number 2, March 2018 Multi-Step Segmentation Method Based on Adaptive Thresholds

More information

This paper puts forward three evaluation functions: image difference method, gradient area method and color ratio method. We propose that estimating t

This paper puts forward three evaluation functions: image difference method, gradient area method and color ratio method. We propose that estimating t The 01 nd International Conference on Circuits, System and Simulation (ICCSS 01) IPCSIT vol. 6 (01) (01) IACSIT Press, Singapore Study on Auto-focus Methods of Optical Microscope Hongwei Shi, Yaowu Shi,

More information

Research on-board LIDAR point cloud data pretreatment

Research on-board LIDAR point cloud data pretreatment Acta Technica 62, No. 3B/2017, 1 16 c 2017 Institute of Thermomechanics CAS, v.v.i. Research on-board LIDAR point cloud data pretreatment Peng Cang 1, Zhenglin Yu 1, Bo Yu 2, 3 Abstract. In view of the

More information

Lane Detection using Fuzzy C-Means Clustering

Lane Detection using Fuzzy C-Means Clustering Lane Detection using Fuzzy C-Means Clustering Kwang-Baek Kim, Doo Heon Song 2, Jae-Hyun Cho 3 Dept. of Computer Engineering, Silla University, Busan, Korea 2 Dept. of Computer Games, Yong-in SongDam University,

More information

An Adaptive Threshold LBP Algorithm for Face Recognition

An Adaptive Threshold LBP Algorithm for Face Recognition An Adaptive Threshold LBP Algorithm for Face Recognition Xiaoping Jiang 1, Chuyu Guo 1,*, Hua Zhang 1, and Chenghua Li 1 1 College of Electronics and Information Engineering, Hubei Key Laboratory of Intelligent

More information

A A A. Fig.1 image patch. Then the edge gradient magnitude is . (1)

A A A. Fig.1 image patch. Then the edge gradient magnitude is . (1) International Conference on Information Science and Computer Applications (ISCA 013) Two-Dimensional Barcode Image Super-Resolution Reconstruction Via Sparse Representation Gaosheng Yang 1,Ningzhong Liu

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

COLOR IMAGE SEGMENTATION IN RGB USING VECTOR ANGLE AND ABSOLUTE DIFFERENCE MEASURES

COLOR IMAGE SEGMENTATION IN RGB USING VECTOR ANGLE AND ABSOLUTE DIFFERENCE MEASURES COLOR IMAGE SEGMENTATION IN RGB USING VECTOR ANGLE AND ABSOLUTE DIFFERENCE MEASURES Sanmati S. Kamath and Joel R. Jackson Georgia Institute of Technology 85, 5th Street NW, Technology Square Research Building,

More information

Research on online inspection system of emulsion explosive packaging defect based on machine vision

Research on online inspection system of emulsion explosive packaging defect based on machine vision Research on online inspection system of emulsion explosive packaging defect based on machine vision Yuesheng Wang *, and Zhipeng Liu School of Hangzhou Dianzi University, Hangzhou, China. Abstract. Roll

More information

Research on Recognition and Classification of Moving Objects in Mixed Traffic Based on Video Detection

Research on Recognition and Classification of Moving Objects in Mixed Traffic Based on Video Detection Hu, Qu, Li and Wang 1 Research on Recognition and Classification of Moving Objects in Mixed Traffic Based on Video Detection Hongyu Hu (corresponding author) College of Transportation, Jilin University,

More information

Based on correlation coefficient in image matching

Based on correlation coefficient in image matching International Journal of Research in Engineering and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Print): 2320-9356 Volume 3 Issue 10 ǁ October. 2015 ǁ PP.01-05 Based on correlation coefficient in image

More information

Filtering Images. Contents

Filtering Images. Contents Image Processing and Data Visualization with MATLAB Filtering Images Hansrudi Noser June 8-9, 010 UZH, Multimedia and Robotics Summer School Noise Smoothing Filters Sigmoid Filters Gradient Filters Contents

More information

A Method of Face Detection Based On Improved YCBCR Skin Color Model Fan Jihui1, a, Wang Hongxing2, b

A Method of Face Detection Based On Improved YCBCR Skin Color Model Fan Jihui1, a, Wang Hongxing2, b 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) A Method of Face Detection Based On Improved YCBCR Sin Color Model Fan Jihui1, a, Wang Hongxing2, b 1 School

More information

Iterative Removing Salt and Pepper Noise based on Neighbourhood Information

Iterative Removing Salt and Pepper Noise based on Neighbourhood Information Iterative Removing Salt and Pepper Noise based on Neighbourhood Information Liu Chun College of Computer Science and Information Technology Daqing Normal University Daqing, China Sun Bishen Twenty-seventh

More information

Journal of Chemical and Pharmaceutical Research, 2015, 7(3): Research Article

Journal of Chemical and Pharmaceutical Research, 2015, 7(3): Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical esearch, 015, 7(3):175-179 esearch Article ISSN : 0975-7384 CODEN(USA) : JCPC5 Thread image processing technology research based on

More information

Automatic Shadow Removal by Illuminance in HSV Color Space

Automatic Shadow Removal by Illuminance in HSV Color Space Computer Science and Information Technology 3(3): 70-75, 2015 DOI: 10.13189/csit.2015.030303 http://www.hrpub.org Automatic Shadow Removal by Illuminance in HSV Color Space Wenbo Huang 1, KyoungYeon Kim

More information

An Angle Estimation to Landmarks for Autonomous Satellite Navigation

An Angle Estimation to Landmarks for Autonomous Satellite Navigation 5th International Conference on Environment, Materials, Chemistry and Power Electronics (EMCPE 2016) An Angle Estimation to Landmarks for Autonomous Satellite Navigation Qing XUE a, Hongwen YANG, Jian

More information

Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian

Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian Hebei Engineering and

More information

Application of Geometry Rectification to Deformed Characters Recognition Liqun Wang1, a * and Honghui Fan2

Application of Geometry Rectification to Deformed Characters Recognition Liqun Wang1, a * and Honghui Fan2 6th International Conference on Electronic, Mechanical, Information and Management (EMIM 2016) Application of Geometry Rectification to Deformed Characters Liqun Wang1, a * and Honghui Fan2 1 School of

More information

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation , pp.162-167 http://dx.doi.org/10.14257/astl.2016.138.33 A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation Liqiang Hu, Chaofeng He Shijiazhuang Tiedao University,

More information

Research on Multi-sensor Image Matching Algorithm Based on Improved Line Segments Feature

Research on Multi-sensor Image Matching Algorithm Based on Improved Line Segments Feature ITM Web of Conferences, 0500 (07) DOI: 0.05/ itmconf/070500 IST07 Research on Multi-sensor Image Matching Algorithm Based on Improved Line Segments Feature Hui YUAN,a, Ying-Guang HAO and Jun-Min LIU Dalian

More information

Study on the Signboard Region Detection in Natural Image

Study on the Signboard Region Detection in Natural Image , pp.179-184 http://dx.doi.org/10.14257/astl.2016.140.34 Study on the Signboard Region Detection in Natural Image Daeyeong Lim 1, Youngbaik Kim 2, Incheol Park 1, Jihoon seung 1, Kilto Chong 1,* 1 1567

More information

Iris Recognition for Eyelash Detection Using Gabor Filter

Iris Recognition for Eyelash Detection Using Gabor Filter Iris Recognition for Eyelash Detection Using Gabor Filter Rupesh Mude 1, Meenakshi R Patel 2 Computer Science and Engineering Rungta College of Engineering and Technology, Bhilai Abstract :- Iris recognition

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

A Kind of Fast Image Edge Detection Algorithm Based on Dynamic Threshold Value

A Kind of Fast Image Edge Detection Algorithm Based on Dynamic Threshold Value Sensors & Transducers 13 by IFSA http://www.sensorsportal.com A Kind of Fast Image Edge Detection Algorithm Based on Dynamic Threshold Value Jiaiao He, Liya Hou, Weiyi Zhang School of Mechanical Engineering,

More information

A Moving Target Detection Algorithm Based on the Dynamic Background

A Moving Target Detection Algorithm Based on the Dynamic Background A Moving Target Detection Algorithm Based on the Dynamic Bacground Yangquan Yu, Chunguang Zhou, Lan Huang *, Zhezhou Yu College of Computer Science and Technology Jilin University Changchun, China e-mail:

More information

OBJECT detection in general has many applications

OBJECT detection in general has many applications 1 Implementing Rectangle Detection using Windowed Hough Transform Akhil Singh, Music Engineering, University of Miami Abstract This paper implements Jung and Schramm s method to use Hough Transform for

More information

Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai He 1,c

Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai He 1,c 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 215) Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai

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

A Robust Two Feature Points Based Depth Estimation Method 1)

A Robust Two Feature Points Based Depth Estimation Method 1) Vol.31, No.5 ACTA AUTOMATICA SINICA September, 2005 A Robust Two Feature Points Based Depth Estimation Method 1) ZHONG Zhi-Guang YI Jian-Qiang ZHAO Dong-Bin (Laboratory of Complex Systems and Intelligence

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 8. Face recognition attendance system based on PCA approach

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 8. Face recognition attendance system based on PCA approach Computer Aided Drafting, Design and Manufacturing Volume 6, Number, June 016, Page 8 CADDM Face recognition attendance system based on PCA approach Li Yanling 1,, Chen Yisong, Wang Guoping 1. Department

More information

Available online at AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics

Available online at   AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics Available online at www.sciencedirect.com AASRI Procedia 1 (2012 ) 74 81 AASRI Procedia www.elsevier.com/locate/procedia 2012 AASRI Conference on Computational Intelligence and Bioinformatics The Research

More information

The Vehicle Logo Location System based on saliency model

The Vehicle Logo Location System based on saliency model ISSN 746-7659, England, UK Journal of Information and Computing Science Vol. 0, No. 3, 205, pp. 73-77 The Vehicle Logo Location System based on saliency model Shangbing Gao,2, Liangliang Wang, Hongyang

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

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

Modeling Body Motion Posture Recognition Using 2D-Skeleton Angle Feature

Modeling Body Motion Posture Recognition Using 2D-Skeleton Angle Feature 2012 International Conference on Image, Vision and Computing (ICIVC 2012) IPCSIT vol. 50 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V50.1 Modeling Body Motion Posture Recognition Using

More information

An Improved Method of Vehicle Driving Cycle Construction: A Case Study of Beijing

An Improved Method of Vehicle Driving Cycle Construction: A Case Study of Beijing International Forum on Energy, Environment and Sustainable Development (IFEESD 206) An Improved Method of Vehicle Driving Cycle Construction: A Case Study of Beijing Zhenpo Wang,a, Yang Li,b, Hao Luo,

More information

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION Panca Mudjirahardjo, Rahmadwati, Nanang Sulistiyanto and R. Arief Setyawan Department of Electrical Engineering, Faculty of

More information

3 The standard grid. N ode(0.0001,0.0004) Longitude

3 The standard grid. N ode(0.0001,0.0004) Longitude International Conference on Information Science and Computer Applications (ISCA 2013 Research on Map Matching Algorithm Based on Nine-rectangle Grid Li Cai1,a, Bingyu Zhu2,b 1 2 School of Software, Yunnan

More information

Analysis of TFT-LCD Point Defect Detection System Based on Machine Vision

Analysis of TFT-LCD Point Defect Detection System Based on Machine Vision 09 nd International Conference on Computer Science and Advanced Materials (CSAM 09) Analysis of TFT-LCD Point Defect Detection System Based on Machine Vision Zhang Wenqian, Zhang Jinhong Department of

More information

Dynamic Obstacle Detection Based on Background Compensation in Robot s Movement Space

Dynamic Obstacle Detection Based on Background Compensation in Robot s Movement Space MATEC Web of Conferences 95 83 (7) DOI:.5/ matecconf/79583 ICMME 6 Dynamic Obstacle Detection Based on Background Compensation in Robot s Movement Space Tao Ni Qidong Li Le Sun and Lingtao Huang School

More information

Building Detection. Guillem Pratx LIAMA. 18 August BACKGROUND 2 2. IDEA 2

Building Detection. Guillem Pratx LIAMA. 18 August BACKGROUND 2 2. IDEA 2 Building Detection Guillem Pratx LIAMA 18 August 2004 1. BACKGROUND 2 2. IDEA 2 2.1 STARTING POINT 2 2.2 IMPROVEMENTS 2 2.2.1 IMAGE PREPROCESSING 2 2.2.2 CONTOURS CHARACTERIZATION 2 3. IMPLEMENTATION 3

More information

A Novel Image Semantic Understanding and Feature Extraction Algorithm. and Wenzhun Huang

A Novel Image Semantic Understanding and Feature Extraction Algorithm. and Wenzhun Huang A Novel Image Semantic Understanding and Feature Extraction Algorithm Xinxin Xie 1, a 1, b* and Wenzhun Huang 1 School of Information Engineering, Xijing University, Xi an 710123, China a 346148500@qq.com,

More information

Image Denoising Methods Based on Wavelet Transform and Threshold Functions

Image Denoising Methods Based on Wavelet Transform and Threshold Functions Image Denoising Methods Based on Wavelet Transform and Threshold Functions Liangang Feng, Lin Lin Weihai Vocational College China liangangfeng@163.com liangangfeng@163.com ABSTRACT: There are many unavoidable

More information

Detection, Classification, Evaluation and Compression of Pavement Information

Detection, Classification, Evaluation and Compression of Pavement Information Detection, Classification, Evaluation and Compression of Pavement Information S.Vishnu Kumar Maduguri Sudhir Md.Nazia Sultana Vishnu6soma@Gmail.Com Sudhir3801@Gmail.Com Mohammadnazia9@Gmail.Com ABSTRACT

More information

[2006] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image

[2006] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image [6] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image Matching Methods, Video and Signal Based Surveillance, 6. AVSS

More information

Image Processing

Image Processing Image Processing 159.731 Canny Edge Detection Report Syed Irfanullah, Azeezullah 00297844 Danh Anh Huynh 02136047 1 Canny Edge Detection INTRODUCTION Edges Edges characterize boundaries and are therefore

More information

A Growth Measuring Approach for Maize Based on Computer Vision

A Growth Measuring Approach for Maize Based on Computer Vision A Growth Measuring Approach for Maize Based on Computer Vision Chuanyu Wang 1,2, Boxiang Xiao 1,2,*, Xinyu Guo 1,2, and Sheng Wu 1,2 1 Beijing Research Center for Information Technology in Agriculture,

More information

The Elimination Eyelash Iris Recognition Based on Local Median Frequency Gabor Filters

The Elimination Eyelash Iris Recognition Based on Local Median Frequency Gabor Filters Journal of Information Hiding and Multimedia Signal Processing c 2015 ISSN 2073-4212 Ubiquitous International Volume 6, Number 3, May 2015 The Elimination Eyelash Iris Recognition Based on Local Median

More information

Lecture 7: Most Common Edge Detectors

Lecture 7: Most Common Edge Detectors #1 Lecture 7: Most Common Edge Detectors Saad Bedros sbedros@umn.edu Edge Detection Goal: Identify sudden changes (discontinuities) in an image Intuitively, most semantic and shape information from the

More information

Developing an intelligent sign inventory using image processing

Developing an intelligent sign inventory using image processing icccbe 2010 Nottingham University Press Proceedings of the International Conference on Computing in Civil and Building Engineering W Tizani (Editor) Developing an intelligent sign inventory using image

More information

Research on Clearance of Aerial Remote Sensing Images Based on Image Fusion

Research on Clearance of Aerial Remote Sensing Images Based on Image Fusion Research on Clearance of Aerial Remote Sensing Images Based on Image Fusion Institute of Oceanographic Instrumentation, Shandong Academy of Sciences Qingdao, 266061, China E-mail:gyygyy1234@163.com Zhigang

More information

Pedestrian Detection with Improved LBP and Hog Algorithm

Pedestrian Detection with Improved LBP and Hog Algorithm Open Access Library Journal 2018, Volume 5, e4573 ISSN Online: 2333-9721 ISSN Print: 2333-9705 Pedestrian Detection with Improved LBP and Hog Algorithm Wei Zhou, Suyun Luo Automotive Engineering College,

More information

An Effective Denoising Method for Images Contaminated with Mixed Noise Based on Adaptive Median Filtering and Wavelet Threshold Denoising

An Effective Denoising Method for Images Contaminated with Mixed Noise Based on Adaptive Median Filtering and Wavelet Threshold Denoising J Inf Process Syst, Vol.14, No.2, pp.539~551, April 2018 https://doi.org/10.3745/jips.02.0083 ISSN 1976-913X (Print) ISSN 2092-805X (Electronic) An Effective Denoising Method for Images Contaminated with

More information

Wavelength Estimation Method Based on Radon Transform and Image Texture

Wavelength Estimation Method Based on Radon Transform and Image Texture Journal of Shipping and Ocean Engineering 7 (2017) 186-191 doi 10.17265/2159-5879/2017.05.002 D DAVID PUBLISHING Wavelength Estimation Method Based on Radon Transform and Image Texture LU Ying, ZHUANG

More information

A Fast Caption Detection Method for Low Quality Video Images

A Fast Caption Detection Method for Low Quality Video Images 2012 10th IAPR International Workshop on Document Analysis Systems A Fast Caption Detection Method for Low Quality Video Images Tianyi Gui, Jun Sun, Satoshi Naoi Fujitsu Research & Development Center CO.,

More information

A Hand Gesture Recognition Method Based on Multi-Feature Fusion and Template Matching

A Hand Gesture Recognition Method Based on Multi-Feature Fusion and Template Matching Available online at www.sciencedirect.com Procedia Engineering 9 (01) 1678 1684 01 International Workshop on Information and Electronics Engineering (IWIEE) A Hand Gesture Recognition Method Based on Multi-Feature

More information

Introduction. Chapter Overview

Introduction. Chapter Overview Chapter 1 Introduction The Hough Transform is an algorithm presented by Paul Hough in 1962 for the detection of features of a particular shape like lines or circles in digitalized images. In its classical

More information

An Integrated Face Recognition Algorithm Based on Wavelet Subspace

An Integrated Face Recognition Algorithm Based on Wavelet Subspace , pp.20-25 http://dx.doi.org/0.4257/astl.204.48.20 An Integrated Face Recognition Algorithm Based on Wavelet Subspace Wenhui Li, Ning Ma, Zhiyan Wang College of computer science and technology, Jilin University,

More information

A Fast and Accurate Eyelids and Eyelashes Detection Approach for Iris Segmentation

A Fast and Accurate Eyelids and Eyelashes Detection Approach for Iris Segmentation A Fast and Accurate Eyelids and Eyelashes Detection Approach for Iris Segmentation Walid Aydi, Lotfi Kamoun, Nouri Masmoudi Department of Electrical National Engineering School of Sfax Sfax University

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

Study on Intelligent Transportation Moving Targets Detection Based on. background Image Difference Method

Study on Intelligent Transportation Moving Targets Detection Based on. background Image Difference Method International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 5, Issue 7 (July 2016), PP.01-05 Study on Intelligent Transportation Moving Targets Detection

More information

A Novel Image Classification Model Based on Contourlet Transform and Dynamic Fuzzy Graph Cuts

A Novel Image Classification Model Based on Contourlet Transform and Dynamic Fuzzy Graph Cuts Appl. Math. Inf. Sci. 6 No. 1S pp. 93S-97S (2012) Applied Mathematics & Information Sciences An International Journal @ 2012 NSP Natural Sciences Publishing Cor. A Novel Image Classification Model Based

More information

Subpixel Corner Detection Using Spatial Moment 1)

Subpixel Corner Detection Using Spatial Moment 1) Vol.31, No.5 ACTA AUTOMATICA SINICA September, 25 Subpixel Corner Detection Using Spatial Moment 1) WANG She-Yang SONG Shen-Min QIANG Wen-Yi CHEN Xing-Lin (Department of Control Engineering, Harbin Institute

More information

MORPH-II: Feature Vector Documentation

MORPH-II: Feature Vector Documentation MORPH-II: Feature Vector Documentation Troy P. Kling NSF-REU Site at UNC Wilmington, Summer 2017 1 MORPH-II Subsets Four different subsets of the MORPH-II database were selected for a wide range of purposes,

More information

Enhanced Image. Improved Dam point Labelling

Enhanced Image. Improved Dam point Labelling 3rd International Conference on Multimedia Technology(ICMT 2013) Video Text Extraction Based on Stroke Width and Color Xiaodong Huang, 1 Qin Wang, Kehua Liu, Lishang Zhu Abstract. Video text can be used

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

Study on Image Position Algorithm of the PCB Detection

Study on Image Position Algorithm of the PCB Detection odern Applied cience; Vol. 6, No. 8; 01 IN 1913-1844 E-IN 1913-185 Published by Canadian Center of cience and Education tudy on Image Position Algorithm of the PCB Detection Zhou Lv 1, Deng heng 1, Yan

More information

5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015)

5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) An Improved Watershed Segmentation Algorithm for Adhesive Particles in Sugar Cane Crystallization Yanmei

More information

Texture Sensitive Image Inpainting after Object Morphing

Texture Sensitive Image Inpainting after Object Morphing Texture Sensitive Image Inpainting after Object Morphing Yin Chieh Liu and Yi-Leh Wu Department of Computer Science and Information Engineering National Taiwan University of Science and Technology, Taiwan

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

A New Technique of Extraction of Edge Detection Using Digital Image Processing

A New Technique of Extraction of Edge Detection Using Digital Image Processing International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) A New Technique of Extraction of Edge Detection Using Digital Image Processing Balaji S.C.K 1 1, Asst Professor S.V.I.T Abstract:

More information

CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM

CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM 1 PHYO THET KHIN, 2 LAI LAI WIN KYI 1,2 Department of Information Technology, Mandalay Technological University The Republic of the Union of Myanmar

More information

Scene Text Detection Using Machine Learning Classifiers

Scene Text Detection Using Machine Learning Classifiers 601 Scene Text Detection Using Machine Learning Classifiers Nafla C.N. 1, Sneha K. 2, Divya K.P. 3 1 (Department of CSE, RCET, Akkikkvu, Thrissur) 2 (Department of CSE, RCET, Akkikkvu, Thrissur) 3 (Department

More information

Edge detection. Gradient-based edge operators

Edge detection. Gradient-based edge operators Edge detection Gradient-based edge operators Prewitt Sobel Roberts Laplacian zero-crossings Canny edge detector Hough transform for detection of straight lines Circle Hough Transform Digital Image Processing:

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 CADDM Aircraft wing box rapid modeling based on skeleton model Zhang Chao, Xi Ping School of Mechanical Engineering

More information

Blood vessel tracking in retinal images

Blood vessel tracking in retinal images Y. Jiang, A. Bainbridge-Smith, A. B. Morris, Blood Vessel Tracking in Retinal Images, Proceedings of Image and Vision Computing New Zealand 2007, pp. 126 131, Hamilton, New Zealand, December 2007. Blood

More information

Study on Gear Chamfering Method based on Vision Measurement

Study on Gear Chamfering Method based on Vision Measurement International Conference on Informatization in Education, Management and Business (IEMB 2015) Study on Gear Chamfering Method based on Vision Measurement Jun Sun College of Civil Engineering and Architecture,

More information

High Points Recognition Method of Scraped Surface Based on Background Subtraction

High Points Recognition Method of Scraped Surface Based on Background Subtraction High Points Recognition Method of Scraped Surface Based on Background Subtraction Xiaopeng Li, Leilei Sun, Yonghong Liu College of Mechanical Engineering China University of Petroleum Qingdao, Shandong

More information

Bridge Surface Crack Detection Method

Bridge Surface Crack Detection Method , pp.337-343 http://dx.doi.org/10.14257/astl.2016. Bridge Surface Crack Detection Method Tingping Zhang 1,2, Jianxi Yang 1, Xinyu Liang 3 1 School of Information Science & Engineering, Chongqing Jiaotong

More information

Application of Log-polar Coordinate Transform in Image Processing

Application of Log-polar Coordinate Transform in Image Processing International Industrial Informatics and Computer Engineering Conference (IIICEC 2015) Application of Log-polar Coordinate Transform in Image Processing Yuping Feng1, a, Shuang Chen1, b, Xuefeng Liu1,

More information

International Journal Of Global Innovations -Vol.6, Issue.I Paper Id: SP-V6-I1-P01 ISSN Online:

International Journal Of Global Innovations -Vol.6, Issue.I Paper Id: SP-V6-I1-P01 ISSN Online: IMPLEMENTATION OF OBJECT RECOGNITION USING SIFT ALGORITHM ON BEAGLE BOARD XM USING EMBEDDED LINUX #1 T.KRISHNA KUMAR -M. Tech Student, #2 G.SUDHAKAR - Assistant Professor, #3 R. MURALI, HOD - Assistant

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

Study on Digitized Measuring Technique of Thrust Line for Rocket Nozzle

Study on Digitized Measuring Technique of Thrust Line for Rocket Nozzle Study on Digitized Measuring Technique of Thrust Line for Rocket Nozzle Lijuan Li *, Jiaojiao Ren, Xin Yang, Yundong Zhu College of Opto-Electronic Engineering, Changchun University of Science and Technology,

More information