An Approach to Korean License Plate Recognition Based on Vertical Edge Matching

Size: px
Start display at page:

Download "An Approach to Korean License Plate Recognition Based on Vertical Edge Matching"

Transcription

1 An Approach to Korean License Plate Recognition Based on Vertical Edge Matching Mei Yu and Yong Deak Kim Ajou University Suwon, , Korea Abstract License plate recognition (LPR) has many applications in traffic monitoring systems. In this paper, a vertical edge matching based algorithm to recognize Korean license plate from input gray-scale image is proposed. The algorithm is able to recognize license plates in normal shape, as well as plates that are out of shape due to the angle of view. The proposed algorithm is fast enough, the recognition unit of a LPR system can be implemented only in software so that the cost of the system is reduced. 1 Introduction Vehicle license plate recognition (LPR) is one form of automatic vehicle identification (AVI), which not only recognizes and counts vehicles, but also distinguishes them as a unique. LPR has many applications in traffic monitoring fields. It can save time and alleviate congestion by allowing motorists to pass toll plazas or weigh stations without stopping. It can save money by collecting and processing vehicle data without human intervention. It can also improve safety and security by helping control access to secured areas or assisting in law enforcement. License plate extraction is the key step within a license plate recognition system, which influences the accuracy of the system significantly. Some approaches to license plate extraction in color image are presented because license plates have appointed colors in their backgrounds and characters [ 1,2]. However, colors of license plates in images vary greatly due to different light conditions under which the images are taken, and vehicles may have similar color to the background of license plate. Thus, it is not easy to segment license plate directly by using information on plate s colors. Additionally, color image processing usually takes longer time than gray-scale image processing. Histogram based approaches are widely used gray-scale image processing methods in many LPR systems [3]. It is based on the fact that characters on license plate usually make strong gray level variations. However, other characters or reflection on vehicle surface will disturb license plate extraction. Moreover, it is difficult to extract license plate exactly if the plate is out of shape due to the angle of view, especially for Korean license plates that consist of two rows. Hough transform is another used approach to license plate extraction, but it requires huge memory and computational effort [4]. By contrast, license plates usually have relatively clear outline, which can be used to separate license plates from vehicle bodies. Therefore, a vertical edge matching based algorithm is proposed to extract Korean license plate from gray-scale image in this paper, and then license plate segmentation and character recognition are also discussed. 2 Korean License Plate Extraction 2.1 Edge Detection For a given gray-scale image { Gi, ; 1 I is K, 15 j< L}, its corresponding edge image can be obtained by using Prewitt or other masks. Fig. l(a) shows three input images, in which the second license plate is out of shape due to the angle of view. Fig. 1 (b) gives the edge images obtained from Fig. 1 (a), where there are many edges, both horizontal and vertical edges, which make the edge image complex. It is noticed that most of vehicles usually have more horizontal lines than vertical lines. If the two vertical edges of a license plate can be detected correctly, four comers of the plate can then be located, so that the license plate can be extracted exactly from the input image even if it is out of shape. Thus, as an alternative, only the vertical edges of input image are used to extract license plate, which are represented by where D, is vertical edge intensity function of the input image at pixel (i, j), while {Ei, j; 1< is, 15 jll } denotes the corresponding binary vertical edge image. Tin Eq.(2) is a threshold, and defined by T={? if otherwise TD = Dm + Do, (3) where D, and D, denote the mean and standard deviation of {Q, j; 15 ilk, 12 jll}, respectively. To (empirically, T0=26) is the lower limit of the threshold. The vertical edge images of Fig.l(a) are shown in Fig.l(c), which are simpler than Fig. l(b), and easier for post-processing /00/$ IEEE 2975

2 (a) Input gray-scale images (b) Edge images (c) Vertical edge images ~~ ~ (d) Results of size-and-shape filtering (e) Extracted license plates Fig. 1 Examples of license plate extraction. 2.2 Size-and-Shape Filtering Binary size-and-shape filter is very useful in pattern recognition, because it is usually needed to recognize objects with special shapes in images. As a pre-processing, the filter removes objects that do not satisfy some specific features, so makes it easy to recognize objects in postprocessing. Seed filling algorithm presented by Smith [5] is faster than the simple recursive algorithm by decreasing the recursion depth. The algorithm proceeds as follows: the contiguous horizontal run of pixels containing the starting seed is filled in. Then the row above the just-filled run is examined from right to left to find the rightmost pixel of each run, and these pixel addresses are stacked. The same is done for the row below the just-filled run. When a run has been processed in this manner, the pixel address at the top of the stack is used as a new starting seed. When the stack is empty, the algorithm terminates. In a binary image, a region is defined as a set of white pixels that are eight connected with each other. To filter the image, each region is browsed by using the seed filling algorithm, during which the information about the region is collected according to the specified features, such as width, height, coordinates of significant points, slope, etc, with respect to the interested object If the region does not satisfy the specified features, it is removed as noise by filling it with black. Otherwise, the region is kept and its information is also recorded for post-processing. For the binary image {E,,,}, the size-and-shape filter based on seed filling algorithm is described as follows: 1) Search the entire image row by row, for each white pixel E,,, in image, if it has not been checked, then run over the eight connected white region by using seed filling algorithm in which E,,, is adopted as the first starting seed of the region. 2) Check whether the region have specified features. If it does not satisfy some predefined restricted conditions, then fill the region with black, that is, remove the region as noise, since it is impossible to be the region of interest (ROI); Otherwise left it in the image as a possible interested object and record its information for pos t-processing. After that, mark whole pixels of this region as checked pixels. 3) Continue to scan the image row by row to find another unchecked white pixel as the first starting seed of a new region, until all white pixels in the image have been checked. On other point of view, the size-and-shape filter is in fact a region identification method that labels region of interest. It is able to process binary imag,e as well as multi-level image, where background is represented by zero pixels, and objects by non-zero values. Compared with some two-pass labeling algorithms, in which the eniire image is scanned for two times, the proposed algorithm accomplishes filtering and labeling in one pass since label collision is avoided due to different scan order. In Korean license plate extraction, after the vertical edge image has been obtained, it is filtered so as to remove the edges that are impossible to be the vertical edge of a license plate. Before filtering, morphological operation dilation is applied as a pre-processing. In the vertical edge image, an edge area is defined as a se1 of white pixels that are eight connected neighbors with each other. For each edge area, we check its size and shape by the seed filling based filter. If the edge area is smaller than a predefined size, or does not form a beeline whose slope is within a predefined interval, then it is removed, since it is impossible to be the vertical edge of a license pliite. Otherwise, the coordinates of the top and bottom pixels of the edge area are recorded for edge matching in post-processing. Since the vertical edges of a license plate may be cut off in the vertical edge image, edge areas are also recorded as one edge area if they have similar slope and one s top is quite close to another s bottom. The results of the size-and-shape filtering of Fig.l(c) are shown in Fig.l(d). It is clear that the filter has removed much noise in Fig. l(c). 2976

3 2.3 Edge Matching and License Plate Extraction The ratio of width to height of Korean license plate is about 2: 1, it can be used to judge whether two edge areas are the pair of vertical edges of a license plate. Consider that the real ratio in the image may deviate from the standard value due to the angle of view, the possible range of the ratio is adopted from 1.4: 1 to 3.3: 1. It is assumed that license plate does not lean quite a lot in input image, therefore, the vertical coordinates of the two vertical edges of a license plate should have small difference. It is restricted that the difference should be within half of the plate s height. Additionally, the two vertical edges of a license plate will have similar height within the vertical edge image, which is also a restricted condition of the edge matching. Here, the height ratio of plate s two vertical edges is from 0.8 to 1.2. Let L be an edge area, X and Y be its corresponding horizontal and vertical coordinates, Top, Bottom and Middle represent its top, bottom and middle respectively and the top has lower vertical coordinate than the bottom. N be the total number of edge areas in a vertical edge image. Then the edge matching is described as follows. for i=l to N-1 do 1 forj=i+l to N do I1 Do edge areas Liand Li have similar height? Height(Li ) if Height(Li) and then Height (L ) Height(Lj) I1 Do Li and Lj have similar vertical coordinates? if Middle (Li) > Top (Lj) and yhfidd,e (Li) < Bot,om (Lj) then { ratio = IxTop (Li ) - xt0p (Lj )[ + IxBottom (Li ) - XBottom (Lj 1. Height(Li) + Height(Lj) I1 Is ratio of width to height satisfies the condition? if ratio>l.4 and ratio<3.3 then { Extract the region according to the pair of Li and Lj, and check whether it is license plate region during plate segmentation and recognition; if the extracted region is plate region then exit; I 1 Here, edge areas in vertical edge image are matched with each other according to the above restricted conditions. If a pair of edge areas satisfies the conditions, it is regarded as the possible vertical edges of license plate, otherwise, another pair is checked. After the possible vertical edges of license plate have been found, the region is extracted and continuously checked whether it is real license plate region during plate segmentation and recognition. For example, after license plate is segmented, the percentage of character regions (white pixels) on a license plate is about from 10% to 40%. That is, if the percentage of character regions in the 9 possible plate region is lower than 10% or higher than 40%, it can not be the real license plate region. Thus, another pair of edge areas that satisfy the restricted conditions of edge matching is searched. When license plate has been extracted, it is normalized and sharpened into a 200x 100 gray-scale image {Pi, j}, as shown in Fig. l(e). 3 License Plate Segmentation After license plate extraction, the normalized plate {Pi.j} is segmented into a binary image {B, j}. In Korea, the most common vehicle license plates are private plate and business plate. Their backgrounds are green and yellow, while the characters are white and dark blue, respectively. Thus, the segmentation for them is a little bit different. For private plates, consider that the characters have higher luminance than the background, the segmentation is represented by B.. = 1, if P.. > T 1, ~ - P, l<i<w, l<jih, (4) where the threshold Tp is defined by T~ = P, + p0, in which the two terms are For business plates, the threshold Tp is defined by T = P, - p0, and the pixels whose gray levels are larger P than the threshold are set to be 0, while the others are 1, because in this case the dark blue characters have lower luminance than the yellow background. Different from license plates of many other countries, Korean license plate has two rows with the size of 335mmx170mm. The upper row consists of two small Korean characters of region name followed by one or two numbers of class code. The lower row is one Korean character and four big numbers to indicate the usage and serial number, respectively. Since luminance of different part of license plate may be not uniform because of the light condition, a license plate is separated into three or four parts when it is segmented. These parts are the part of region name and class code, the part of usage code, and the parts of serial number. Fig.2 gives histograms of three extracted license plates, in which the luminance of the last two plates is not uniform. The three histograms labeled by zero are that of the entire license plates. The others labeled by nonzero numbers are with respect to the labeled parts in license plate images. The license plates in Figs.2(a)-(b) are divided into three parts, while the one in Fig.2(c) is broken into four parts. For each part, the threshold Tp is calculated separately (5) 2977

4 according to Eq.(5) and Eq.(6), where W and H denote the width and height of each part. The first binary plates in the third row of Figs.2(a)-(c) are obtained by using Tp of entire plate as the threshold. It is seen from Figs.2(b)-(c) that some information on characters is lost in the two binary plates. By contrast, the second binary plates are obtained by using local thresholds of three or four labeled parts, where the lost information in the first binary plates is still kept. After license plate has been segmented into binary image, size-and-shape filter is used to remove noise on the plate, and the third binary plates give the results. Then character segmentation can be done by using the horizontal and vertical histogram of the binary license plate image, combined with the knowledge of standard characters' position on a license plate. Korean characters are normalized into 20x20 binary image, while numbers are 8x16. By global Tp; By three local Tp; Filtered plate; (a) License plate with uniform luminance 4 Character Recognition Template matching for character recognition is straightforward and can be reliable. Since characters on license plates have the same font, ternplate matching is employed for character recognition because of its relatively lower computational efforts compared with neural networks. Template matching is also more tolerant to noise than structural analysis method. In Korea, old license plates use 15 region names and 70 usage codes, while in new license plates, the corresponding numbers are 16 and 25. The total 16 region names are M Q, F&t, uta, UT-, 2+, YF!, 39, 3s, 27, 52, g?, 6%, 321, 354, S&t, and MI?. Korean characters of region name is divided into two sets, one for the first characters, denoted as set SI, the other for the second characters, denotes as S,. Similarly, we can also define the other two sets S, fix usage code and S, for "0"- "9" ten numbers. Since there are only 60 usage codes appearing in our 710 test images, the set S, just includes 60 characters. In the experiments, we use two templates associated with number "3" clue to its different font in old and new license plates. Teimplates of the four sets of characters are shown in Fig.3. Each unknown character is compared with the templates in the corresponding set, and the character is regarded as the one whose template has thc smallest distance from the unknown character. When recognizing region name, some rules are also used to raise the recognition accuracy. s,:- Fig.3 Templates of characters on Korean license plates. By global T,; By three local T,; Filtered plate; (b) License plate with non-uniform luminance I IO (c) License plate-with non-uni'form luminance Fig.2 License plate segmentation. I 5 Experiments and Analysis Experiments have been implemented to test the efficiency of the above vertical edge matching based algorithm to recognize Korean license plate in input gray-scale image, the size of which is 493x373. The test images are taken under various light conditions, such as sunshiny, raining, snowing, and cloudy days. The license plates include both old and new ones. To test the performance of the proposed algorithm under different situations, the experiments are implemented in the following six aspects: (1) license plates in normal shapes, (2) license plates that are out of shape or leaned due to the angle of view, (3) license plates which have similar color to vehicle bodies, (4) damaged or bent license plates, (5) dirty license plates, (6) degraded images (including under or over exposed images, and blurred images). 2978

5 More examples of Korean license plate extraction are given in Figs.4-8, in which the four rows correspond to the input gray-scale images, vertical edge images, results of size-andshape filtering, and the extracted license plates, respectively. It is seen that the proposed algorithm can extract license plates in normal shape as well as skewed license plates, as shown in Fig.1 and Figs.4-5. The proposed algorithm is able to extract license plates that have similar color to vehicle bodies. The algorithm also shows its efficiency in recognizing damaged or dirty license plates, as shown in Figs.6-7. Finally, Fig.8 gives some degraded test images, in which the first two images are under and over exposed, while the last one is blurred. The proposed algorithm succeeds in extracting license plates from these degraded images. Table 1 gives the rate of license plate extraction and characters recognition of the proposed approach to Korean license plate recognition. Here, license plate recognition is thought as a failure so long as one character of license plate is incorrectly interpreted. The second row in the table shows the number of correctly recognized license plates (or characters) and the total number of license plates (or characters). It is shown that the proposed approach has correctly extracted 699 license plates from total 710 test images. The 3-6 columns in the table give the character recognition rates of the 699 extracted license plates. For the total 710 input images, the number of correctly interpreted license plates is 670, and the recognition rate is about 94.37%, as shown in the last column in Table 1. The average processing time of these 710 images is about 0.28 second per image, which include license plate extraction and character recognition, when implemented on PC 586(300MHz) in Borland C language. The experimental results show that the shortcoming of the proposed license plate extraction mainly comes from unclear edges of license plates. Incorrect license plate segmentation also causes license plate to be missed even though its edges are clear in the image. When edges of other objects intersect the vertical edge of license plate in image, the size-and-shape filter becomes another factor of unsuccessful extraction since it may remove the plate s edge as noise. In character recognition, it is seen that compared with old license plate, new Korean license plate is easier to be recognized because of the new font. The Korean characters of usage code are another big problem since some of them are quite similar with each other, and no rules can be used to determine an unknown usage code, as what we do in region name recognition. Thus, the reduction of usage code in new license plate design is advisable for LPR system. vertical edge matching based algorithm to recognize Korean license plate from input gray-scale image is proposed. The algorithm is able to recognize license plates in normal shape, as well as plates that are out of shape due to the angle of view. The proposed algorithm is fast enough, the recognition unit of a LPR system can be implemented only in software so that the cost of the system can be reduced. References [I] Eun Ryung Lee, Pyeoung Kee Kim, and Hang Joon Kim, Automatic recognition of a car license plate using color image processing, IEEE International Conference on Image Processing 1994, vol. 2, pp ,1994 [2] Sang Kyoon Kim, Dae Wook Kim, and Hang Joon Kim, A recognition of vehicle license plate using a genetic algorithm based segmentation, IEEE International Conference on Image Processing 1996, pp , 1996 [3] Dong Uk Cho, and Yong Hwan Cho, Implementation of pre-processing independent of environment and recognition of car number plate using histogram and template matching, The Journal of The Korean Institute of Communication Sciences, vol. 23, no. 1, pp , 1998 [4] G. M. Kim, The automatic recognition of the plate of vehicle using the correlation coeficient and Hough transform, Journal of Control, Automation and System Engineering, vol. 3, no. 5, pp , 1997 [SI Smith A. R., Tint fill, Computer Graphic, vo1.13, no.2, pp , Conclusion In this paper, a size-and-shape filter based on seed-filling algorithm is presented so as to remove some noisy areas that do not satisfy some restricted conditions. Then a Fig.4 License plates in normal shape. 2979

6 ~~~ Fig.5 License plates that are leaned or out of shape. Fig.6 Damaged or bent license plates. Fig.7 Dirty license plates. Fig.8 Degraded images. License Plate Character Recognition for Extracted License Plates Extraction Region Name Class Code Usage Code Serial Number Correct Recognition Recognition Rate 98.45% 99.86% 98.84% 98.86% 99.61% 2980

Volume 7, Issue 5, May 2017

Volume 7, Issue 5, May 2017 Volume 7, Issue 5, May 2017 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Localization Techniques

More information

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

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

More information

An Improved Bernsen Algorithm Approaches For License Plate Recognition

An Improved Bernsen Algorithm Approaches For License Plate Recognition IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) ISSN: 78-834, ISBN: 78-8735. Volume 3, Issue 4 (Sep-Oct. 01), PP 01-05 An Improved Bernsen Algorithm Approaches For License Plate Recognition

More information

Number Plate Recognition System using OCR for Automatic Toll Collection

Number Plate Recognition System using OCR for Automatic Toll Collection IJSTE - International Journal of Science Technology & Engineering Volume 2 Issue 10 April 2016 ISSN (online): 2349-784X Number Plate Recognition System using OCR for Automatic Toll Collection Mohini S.Karande

More information

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

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

More information

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION

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

More information

A NOVEL APPROACH FOR CHARACTER RECOGNITION OF VEHICLE NUMBER PLATES USING CLASSIFICATION

A NOVEL APPROACH FOR CHARACTER RECOGNITION OF VEHICLE NUMBER PLATES USING CLASSIFICATION A NOVEL APPROACH FOR CHARACTER RECOGNITION OF VEHICLE NUMBER PLATES USING CLASSIFICATION Nora Naik Assistant Professor, Dept. of Computer Engineering, Agnel Institute of Technology & Design, Goa, India

More information

Automatic Licenses Plate Recognition System

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

More information

Number Plate Recognition Using Segmentation

Number Plate Recognition Using Segmentation Number Plate Recognition Using Segmentation Rupali Kate M.Tech. Electronics(VLSI) BVCOE. Pune 411043, Maharashtra, India. Dr. Chitode. J. S BVCOE. Pune 411043 Abstract Automatic Number Plate Recognition

More information

中国科技论文在线. An Efficient Method of License Plate Location in Natural-scene Image. Haiqi Huang 1, Ming Gu 2,Hongyang Chao 2

中国科技论文在线. An Efficient Method of License Plate Location in Natural-scene Image.   Haiqi Huang 1, Ming Gu 2,Hongyang Chao 2 Fifth International Conference on Fuzzy Systems and Knowledge Discovery n Efficient ethod of License Plate Location in Natural-scene Image Haiqi Huang 1, ing Gu 2,Hongyang Chao 2 1 Department of Computer

More information

A Study on Single Camera Based ANPR System for Improvement of Vehicle Number Plate Recognition on Multi-lane Roads

A Study on Single Camera Based ANPR System for Improvement of Vehicle Number Plate Recognition on Multi-lane Roads Invention Journal of Research Technology in Engineering & Management (IJRTEM) ISSN: 2455-3689 www.ijrtem.com Volume 2 Issue 1 ǁ January. 2018 ǁ PP 11-16 A Study on Single Camera Based ANPR System for Improvement

More information

Automatic License Plate Recognition System using Histogram Graph Algorithm

Automatic License Plate Recognition System using Histogram Graph Algorithm Automatic License Plate Recognition System using Histogram Graph Algorithm Divyang Goswami 1, M.Tech Electronics & Communication Engineering Department Marudhar Engineering College, Raisar Bikaner, Rajasthan,

More information

Vehicle Number Plate Recognition with Bilinear Interpolation and Plotting Horizontal and Vertical Edge Processing Histogram with Sound Signals

Vehicle Number Plate Recognition with Bilinear Interpolation and Plotting Horizontal and Vertical Edge Processing Histogram with Sound Signals Vehicle Number Plate Recognition with Bilinear Interpolation and Plotting Horizontal and Vertical Edge Processing Histogram with Sound Signals Aarti 1, Dr. Neetu Sharma 2 1 DEPArtment Of Computer Science

More information

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

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

More information

World Journal of Engineering Research and Technology WJERT

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

More information

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

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

More information

License Plate Localisation based on Morphological Operations

License Plate Localisation based on Morphological Operations License Plate Localisation based on Morphological Operations Xiaojun Zhai, Faycal Benssali and Soodamani Ramalingam School of Engineering & Technology University of Hertfordshire, UH Hatfield, UK Abstract

More information

Segmentation Plate and Number Vehicle using Integral Projection

Segmentation Plate and Number Vehicle using Integral Projection Segmentation Plate and Number Vehicle using Integral Projection Mochamad Mobed Bachtiar 1, Sigit Wasista 2, Mukhammad Syarifudin Hidayatulloh 3 1,2,3 Program Studi D4 Teknik Komputer Departemen Informatika

More information

Traffic Sign Recognition Senior Project Final Report

Traffic Sign Recognition Senior Project Final Report Traffic Sign Recognition Senior Project Final Report Jacob Carlson and Sean St. Onge Advisor: Dr. Thomas L. Stewart Bradley University May 12th, 2008 Abstract - Image processing has a wide range of real-world

More information

Efficient Car License Plate Detection and Recognition by Using Vertical Edge Based Method

Efficient Car License Plate Detection and Recognition by Using Vertical Edge Based Method Efficient Car License Plate Detection and Recognition by Using Vertical Edge Based Method M. Veerraju *1, S. Saidarao *2 1 Student, (M.Tech), Department of ECE, NIE, Macherla, Andrapradesh, India. E-Mail:

More information

AN EXPANDED-HAAR WAVELET TRANSFORM AND MORPHOLOGICAL DEAL BASED APPROACH FOR VEHICLE LICENSE PLATE LOCALIZATION IN INDIAN CONDITIONS

AN EXPANDED-HAAR WAVELET TRANSFORM AND MORPHOLOGICAL DEAL BASED APPROACH FOR VEHICLE LICENSE PLATE LOCALIZATION IN INDIAN CONDITIONS AN EXPANDED-HAAR WAVELET TRANSFORM AND MORPHOLOGICAL DEAL BASED APPROACH FOR VEHICLE LICENSE PLATE LOCALIZATION IN INDIAN CONDITIONS Mo. Avesh H. Chamadiya 1, Manoj D. Chaudhary 2, T. Venkata Ramana 3

More information

Extraction of Newspaper Headlines from Microfilm for Automatic Indexing

Extraction of Newspaper Headlines from Microfilm for Automatic Indexing Extraction of Newspaper Headlines from Microfilm for Automatic Indexing Chew Lim Tan 1, Qing Hong Liu 2 1 School of Computing, National University of Singapore, 3 Science Drive 2, Singapore 117543 Email:

More information

International Journal of Scientific & Engineering Research, Volume 5, Issue 5, May ISSN

International Journal of Scientific & Engineering Research, Volume 5, Issue 5, May ISSN International Journal of Scientific & Engineering Research, Volume 5, Issue 5, May-2014 601 Automatic license plate recognition using Image Enhancement technique With Hidden Markov Model G. Angel, J. Rethna

More information

LPR Camera Installation and Configuration Manual

LPR Camera Installation and Configuration Manual LPR Camera Installation and Configuration Manual 1.Installation Instruction 1.1 Installation location The camera should be installed behind the barrier and facing the vehicle direction as illustrated in

More information

Iraqi Car License Plate Recognition Using OCR

Iraqi Car License Plate Recognition Using OCR Iraqi Car License Plate Recognition Using OCR Safaa S. Omran Computer Engineering Techniques College of Electrical and Electronic Techniques Baghdad, Iraq omran_safaa@ymail.com Jumana A. Jarallah Computer

More information

Automated License Plate Recognition for Toll Booth Application

Automated License Plate Recognition for Toll Booth Application RESEARCH ARTICLE OPEN ACCESS Automated License Plate Recognition for Toll Booth Application Ketan S. Shevale (Department of Electronics and Telecommunication, SAOE, Pune University, Pune) ABSTRACT This

More information

A Chinese License Plate Recognition System

A Chinese License Plate Recognition System A Chinese License Plate Recognition System Bai Yanping, Hu Hongping, Li Fei Key Laboratory of Instrument Science and Dynamic Measurement North University of China, No xueyuan road, TaiYuan, ShanXi 00051,

More information

Libyan Licenses Plate Recognition Using Template Matching Method

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

More information

Implementation of License Plate Recognition System in ARM Cortex A8 Board

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

More information

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

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

More information

An Efficient Method for Vehicle License Plate Detection in Complex Scenes

An Efficient Method for Vehicle License Plate Detection in Complex Scenes Circuits and Systems, 011,, 30-35 doi:10.436/cs.011.4044 Published Online October 011 (http://.scirp.org/journal/cs) An Efficient Method for Vehicle License Plate Detection in Complex Scenes Abstract Mahmood

More information

CHARACTERS RECONGNIZATION OF AUTOMOBILE LICENSE PLATES ON THE DIGITAL IMAGE Rajasekhar Junjunuri* 1, Sandeep Kotta 1

CHARACTERS RECONGNIZATION OF AUTOMOBILE LICENSE PLATES ON THE DIGITAL IMAGE Rajasekhar Junjunuri* 1, Sandeep Kotta 1 ISSN 2277-2685 IJESR/May 2015/ Vol-5/Issue-5/302-309 Rajasekhar Junjunuri et. al./ International Journal of Engineering & Science Research CHARACTERS RECONGNIZATION OF AUTOMOBILE LICENSE PLATES ON THE

More information

ISSN No: International Journal & Magazine of Engineering, Technology, Management and Research

ISSN No: International Journal & Magazine of Engineering, Technology, Management and Research Design of Automatic Number Plate Recognition System Using OCR for Vehicle Identification M.Kesab Chandrasen Abstract: Automatic Number Plate Recognition (ANPR) is an image processing technology which uses

More information

FPGA based Real-time Automatic Number Plate Recognition System for Modern License Plates in Sri Lanka

FPGA based Real-time Automatic Number Plate Recognition System for Modern License Plates in Sri Lanka RESEARCH ARTICLE OPEN ACCESS FPGA based Real-time Automatic Number Plate Recognition System for Modern License Plates in Sri Lanka Swapna Premasiri 1, Lahiru Wijesinghe 1, Randika Perera 1 1. Department

More information

Open Access An Improved Character Recognition Algorithm for License Plate Based on BP Neural Network

Open Access An Improved Character Recognition Algorithm for License Plate Based on BP Neural Network Send Orders for Reprints to reprints@benthamscience.ae 202 The Open Electrical & Electronic Engineering Journal, 2014, 8, 202-207 Open Access An Improved Character Recognition Algorithm for License Plate

More information

A Review of Optical Character Recognition System for Recognition of Printed Text

A Review of Optical Character Recognition System for Recognition of Printed Text IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. II (May Jun. 2015), PP 28-33 www.iosrjournals.org A Review of Optical Character Recognition

More information

STRATEGIES FOR FAST LICENSE PLATE NUMBER LOCALIZATION

STRATEGIES FOR FAST LICENSE PLATE NUMBER LOCALIZATION 46th International Symposium Electronics in Marine, ELMAR-2004. 16-18 June 2004, Zadar. Croatia STRATEGIES FOR FAST LICENSE PLATE NUMBER LOCALIZATION Balazs Enyedi, Lajos Konyha, Csaba Szombathy, Kalmin

More information

International Journal of Advance Engineering and Research Development

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

More information

Machine Vision for the Life Sciences

Machine Vision for the Life Sciences Machine Vision for the Life Sciences Presented by: Niels Wartenberg June 12, 2012 Track, Trace & Control Solutions Niels Wartenberg Microscan Sr. Applications Engineer, Clinical Senior Applications Engineer

More information

AN ADAPTIVE MORPHOLOGICAL FILTER FOR DEFECT DETECTION IN EDDY

AN ADAPTIVE MORPHOLOGICAL FILTER FOR DEFECT DETECTION IN EDDY AN ADAPTIVE MORPHOLOGICAL FILTER FOR DEFECT DETECTION IN EDDY CURRENT AIRCRAFT WHEEL INSPECTION Shu Gao, Lalita Udpa Department of Electrical Engineering and Computer Engineering Iowa State University

More information

EE 5359 MULTIMEDIA PROCESSING. Vehicle License Plate Detection Algorithm Based on Statistical Characteristics in HSI Color Model

EE 5359 MULTIMEDIA PROCESSING. Vehicle License Plate Detection Algorithm Based on Statistical Characteristics in HSI Color Model EE 5359 MULTIMEDIA PROCESSING Vehicle License Plate Detection Algorithm Based on Statistical Characteristics in HSI Color Model Under the guidance of Dr. K. R. Rao Submitted by: Prasanna Venkatesh Palani

More information

AUTOMATIC LICENSE PLATE RECOGNITION USING IMAGE PROCESSING AND NEURAL NETWORK

AUTOMATIC LICENSE PLATE RECOGNITION USING IMAGE PROCESSING AND NEURAL NETWORK DOI: 10.21917/ijivp.2018.0251 AUTOMATIC LICENSE PLATE RECOGNITION USING IMAGE PROCESSING AND NEURAL NETWORK P. Surekha, Pavan Gurudath, R. Prithvi and V.G. Ritesh Ananth Department of Electrical and Electronics

More information

Smart License Plate Recognition Using Optical Character Recognition Based on the Multicopter

Smart License Plate Recognition Using Optical Character Recognition Based on the Multicopter Smart License Plate Recognition Using Optical Character Recognition Based on the Multicopter Sanjaa Bold Department of Computer Hardware and Networking. University of the humanities Ulaanbaatar, Mongolia

More information

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

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

More information

Automatics Vehicle License Plate Recognition using MATLAB

Automatics Vehicle License Plate Recognition using MATLAB Automatics Vehicle License Plate Recognition using MATLAB Alhamzawi Hussein Ali mezher Faculty of Informatics/University of Debrecen Kassai ut 26, 4028 Debrecen, Hungary. Abstract - The objective of this

More information

Line Segmentation and Orientation Algorithm for Automatic Bengali License Plate Localization and Recognition

Line Segmentation and Orientation Algorithm for Automatic Bengali License Plate Localization and Recognition Line Segmentation and Orientation Algorithm for Automatic Bengali License Plate Localization and Recognition Md. Rokibul Haque B.Sc. Student Sylhet Engineering College Saddam Hossain B.Sc. Student Sylhet

More information

Automatic Electricity Meter Reading Based on Image Processing

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

More information

Image Processing and Particle Analysis for Road Traffic Detection

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

More information

A Method of Measuring Distances between Cars. Using Vehicle Black Box Images

A Method of Measuring Distances between Cars. Using Vehicle Black Box Images Contemporary Engineering Sciences, Vol. 7, 2014, no. 23, 1295-1302 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.49160 A Method of Measuring Distances between Cars Using Vehicle Black

More information

Image Processing - License Plate Localization and Letters Extraction *

Image Processing - License Plate Localization and Letters Extraction * OpenStax-CNX module: m33156 1 Image Processing - License Plate Localization and Letters Extraction * Cynthia Sung Chinwei Hu Kyle Li Lei Cao This work is produced by OpenStax-CNX and licensed under the

More information

A Method of Multi-License Plate Location in Road Bayonet Image

A Method of Multi-License Plate Location in Road Bayonet Image A Method of Multi-License Plate Location in Road Bayonet Image Ying Qian The lab of Graphics and Multimedia Chongqing University of Posts and Telecommunications Chongqing, China Zhi Li The lab of Graphics

More information

Modelling, Simulation and Computing Laboratory (msclab) School of Engineering and Information Technology, Universiti Malaysia Sabah, Malaysia

Modelling, Simulation and Computing Laboratory (msclab) School of Engineering and Information Technology, Universiti Malaysia Sabah, Malaysia 1.0 Introduction During the recent years, image processing based vehicle license plate localisation and recognition has been widely used in numerous areas:- a) Entrance admission b) Speed control Modelling,

More information

IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online): IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online): 2321-0613 Automatic Number Plate Recognition System for Vehicle Identification Using Improved Segmentation

More information

Number Plate recognition System

Number Plate recognition System Number Plate recognition System Khomotso Jeffrey Tsiri Thesis presented in fulfilment of the requirements for the degree of Bsc(Hons) Computer Science at the University of the Western Cape Supervisor:

More information

Nigerian Vehicle License Plate Recognition System using Artificial Neural Network

Nigerian Vehicle License Plate Recognition System using Artificial Neural Network Nigerian Vehicle License Plate Recognition System using Artificial Neural Network Amusan D.G 1, Arulogun O.T 2 and Falohun A.S 3 Open and Distance Learning Centre, Ladoke Akintola University of Technology,

More information

Study and Analysis of various preprocessing approaches to enhance Offline Handwritten Gujarati Numerals for feature extraction

Study and Analysis of various preprocessing approaches to enhance Offline Handwritten Gujarati Numerals for feature extraction International Journal of Scientific and Research Publications, Volume 4, Issue 7, July 2014 1 Study and Analysis of various preprocessing approaches to enhance Offline Handwritten Gujarati Numerals for

More information

Real-Time License Plate Localisation on FPGA

Real-Time License Plate Localisation on FPGA Real-Time License Plate Localisation on FPGA X. Zhai, F. Bensaali and S. Ramalingam School of Engineering & Technology University of Hertfordshire Hatfield, UK {x.zhai, f.bensaali, s.ramalingam}@herts.ac.uk

More information

Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information

Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information Mohd Firdaus Zakaria, Shahrel A. Suandi Intelligent Biometric Group, School of Electrical and Electronics Engineering,

More information

Real Time ALPR for Vehicle Identification Using Neural Network

Real Time ALPR for Vehicle Identification Using Neural Network _ Real Time ALPR for Vehicle Identification Using Neural Network Anushree Deshmukh M.E Student Terna Engineering College,Navi Mumbai Email: anushree_deshmukh@yahoo.co.in Abstract With the rapid growth

More information

Detection and Verification of Missing Components in SMD using AOI Techniques

Detection and Verification of Missing Components in SMD using AOI Techniques , pp.13-22 http://dx.doi.org/10.14257/ijcg.2016.7.2.02 Detection and Verification of Missing Components in SMD using AOI Techniques Sharat Chandra Bhardwaj Graphic Era University, India bhardwaj.sharat@gmail.com

More information

Automatic Locating the Centromere on Human Chromosome Pictures

Automatic Locating the Centromere on Human Chromosome Pictures Automatic Locating the Centromere on Human Chromosome Pictures M. Moradi Electrical and Computer Engineering Department, Faculty of Engineering, University of Tehran, Tehran, Iran moradi@iranbme.net S.

More information

A new seal verification for Chinese color seal

A new seal verification for Chinese color seal Edith Cowan University Research Online ECU Publications 2011 2011 A new seal verification for Chinese color seal Zhihu Huang Jinsong Leng Edith Cowan University 10.4028/www.scientific.net/AMM.58-60.2558

More information

A Simple Skew Correction Method of Sudanese License Plate

A Simple Skew Correction Method of Sudanese License Plate A Simple Skew Correction Method of Sudanese License Plate Musab Bagabir 1 and Mohamed Elhafiz 2 1 Faculty of Computer Studies, The National Ribat University, Khartoum, Sudan 2 College of Computer Science

More information

Detection of License Plates of Vehicles

Detection of License Plates of Vehicles 13 W. K. I. L Wanniarachchi 1, D. U. J. Sonnadara 2 and M. K. Jayananda 2 1 Faculty of Science and Technology, Uva Wellassa University, Sri Lanka 2 Department of Physics, University of Colombo, Sri Lanka

More information

VEHICLE IDENTIFICATION AND AUTHENTICATION SYSTEM

VEHICLE IDENTIFICATION AND AUTHENTICATION SYSTEM VEHICLE IDENTIFICATION AND AUTHENTICATION SYSTEM T.Anusha 1, T.Sivakumar 2 1 Assistant Professor, Dept. of Computer Science & Engineering, PSG College of Technology, Tamilnadu, India, anu@cse.psgtech.ac.in

More information

Automatic Number Plate Extraction: A Review

Automatic Number Plate Extraction: A Review Automatic Number Plate Extraction: A Review Harkamaljeet Kaur Department of Computer Engineering Punjabi University Patiala, India Dr. Lakhwinder Kaur Head of Department Department of Computer Engineering

More information

Scrabble Board Automatic Detector for Third Party Applications

Scrabble Board Automatic Detector for Third Party Applications Scrabble Board Automatic Detector for Third Party Applications David Hirschberg Computer Science Department University of California, Irvine hirschbd@uci.edu Abstract Abstract Scrabble is a well-known

More information

An Efficient Method for Vertical-Edge-Based Car-License- Plate Detection Method

An Efficient Method for Vertical-Edge-Based Car-License- Plate Detection Method An Efficient Method for Vertical-Edge-Based Car-License- Plate Detection Method ABSTRACT: The car-license-plate (CLP) recognition system is an image processing technology issued to identify vehicles by

More information

THE PROPOSED IRAQI VEHICLE LICENSE PLATE RECOGNITION SYSTEM BY USING PREWITT EDGE DETECTION ALGORITHM

THE PROPOSED IRAQI VEHICLE LICENSE PLATE RECOGNITION SYSTEM BY USING PREWITT EDGE DETECTION ALGORITHM THE PROPOSED IRAQI VEHICLE LICENSE PLATE RECOGNITION SYSTEM BY USING PREWITT EDGE DETECTION ALGORITHM ELAF J. AL TAEE Computer Science, Kufa University, College of Education Kufa, Najaf, IRAQ E-mail: elafj.altaee@uokufa.edu.iq

More information

Recognition System for Pakistani Paper Currency

Recognition System for Pakistani Paper Currency World Applied Sciences Journal 28 (12): 2069-2075, 2013 ISSN 1818-4952 IDOSI Publications, 2013 DOI: 10.5829/idosi.wasj.2013.28.12.300 Recognition System for Pakistani Paper Currency 1 2 Ahmed Ali and

More information

International Conference on Computer, Communication, Control and Information Technology (C 3 IT 2009) Paper Code: DSIP-024

International Conference on Computer, Communication, Control and Information Technology (C 3 IT 2009) Paper Code: DSIP-024 Paper Code: DSIP-024 Oral 270 A NOVEL SCHEME FOR BINARIZATION OF VEHICLE IMAGES USING HIERARCHICAL HISTOGRAM EQUALIZATION TECHNIQUE Satadal Saha 1, Subhadip Basu 2 *, Mita Nasipuri 2, Dipak Kumar Basu

More information

Real Time Word to Picture Translation for Chinese Restaurant Menus

Real Time Word to Picture Translation for Chinese Restaurant Menus Real Time Word to Picture Translation for Chinese Restaurant Menus Michelle Jin, Ling Xiao Wang, Boyang Zhang Email: mzjin12, lx2wang, boyangz @stanford.edu EE268 Project Report, Spring 2014 Abstract--We

More information

Highly Adaptive Indian High Security Vehicle Number Plate Recognition

Highly Adaptive Indian High Security Vehicle Number Plate Recognition Highly Adaptive Indian High Security Vehicle Number Plate Recognition Neha Arora M-Tech Scholar NRI Institute of Information Science and Technology, Bhopal, M.P. Lalit Jain Research Guide NRI Institute

More information

Extraction and Recognition of Text From Digital English Comic Image Using Median Filter

Extraction and Recognition of Text From Digital English Comic Image Using Median Filter Extraction and Recognition of Text From Digital English Comic Image Using Median Filter S.Ranjini 1 Research Scholar,Department of Information technology Bharathiar University Coimbatore,India ranjinisengottaiyan@gmail.com

More information

The Real Time Vechicle License Plate Identification System

The Real Time Vechicle License Plate Identification System International Journal of Engineering Research and Development eissn : 2278-067X, pissn : 2278-800X, www.ijerd.com Volume 2, Issue 4 (July 2012), PP. 35-39 The Real Time Vechicle License Plate Identification

More information

MAV-ID card processing using camera images

MAV-ID card processing using camera images EE 5359 MULTIMEDIA PROCESSING SPRING 2013 PROJECT PROPOSAL MAV-ID card processing using camera images Under guidance of DR K R RAO DEPARTMENT OF ELECTRICAL ENGINEERING UNIVERSITY OF TEXAS AT ARLINGTON

More information

Automatic Vehicle Number Plate Recognition for Vehicle Parking Management System

Automatic Vehicle Number Plate Recognition for Vehicle Parking Management System Automatic Vehicle Number Plate Recognition for Vehicle Parking Management System Ganesh R. Jadhav, Electronics and Telecommunication Engineering Department, SKN Sinhgad college of engineering, Pandharpur,

More information

Chapter 17. Shape-Based Operations

Chapter 17. Shape-Based Operations Chapter 17 Shape-Based Operations An shape-based operation identifies or acts on groups of pixels that belong to the same object or image component. We have already seen how components may be identified

More information

Vehicle License Plate Number Recognition and Segmentation System

Vehicle License Plate Number Recognition and Segmentation System e t International Journal on Emerging Technologies 2(2): 75-79(2011) ISSN No. (Print) : 0975-8364 ISSN No. (Online) : 2249-3255 Vehicle License Plate Number Recognition and Segmentation System Aamir Khan,

More information

SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS

SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS RADT 3463 - COMPUTERIZED IMAGING Section I: Chapter 2 RADT 3463 Computerized Imaging 1 SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS RADT 3463 COMPUTERIZED IMAGING Section I: Chapter 2 RADT

More information

A Solution for Identification of Bird s Nests on Transmission Lines with UAV Patrol. Qinghua Wang

A Solution for Identification of Bird s Nests on Transmission Lines with UAV Patrol. Qinghua Wang International Conference on Artificial Intelligence and Engineering Applications (AIEA 2016) A Solution for Identification of Bird s Nests on Transmission Lines with UAV Patrol Qinghua Wang Fuzhou Power

More information

][ R G [ Q] Y =[ a b c. d e f. g h I

][ R G [ Q] Y =[ a b c. d e f. g h I Abstract Unsupervised Thresholding and Morphological Processing for Automatic Fin-outline Extraction in DARWIN (Digital Analysis and Recognition of Whale Images on a Network) Scott Hale Eckerd College

More information

IMAGE TYPE WATER METER CHARACTER RECOGNITION BASED ON EMBEDDED DSP

IMAGE TYPE WATER METER CHARACTER RECOGNITION BASED ON EMBEDDED DSP IMAGE TYPE WATER METER CHARACTER RECOGNITION BASED ON EMBEDDED DSP LIU Ying 1,HAN Yan-bin 2 and ZHANG Yu-lin 3 1 School of Information Science and Engineering, University of Jinan, Jinan 250022, PR China

More information

The Classification of Gun s Type Using Image Recognition Theory

The Classification of Gun s Type Using Image Recognition Theory International Journal of Information and Electronics Engineering, Vol. 4, No. 1, January 214 The Classification of s Type Using Image Recognition Theory M. L. Kulthon Kasemsan Abstract The research aims

More information

Finger print Recognization. By M R Rahul Raj K Muralidhar A Papi Reddy

Finger print Recognization. By M R Rahul Raj K Muralidhar A Papi Reddy Finger print Recognization By M R Rahul Raj K Muralidhar A Papi Reddy Introduction Finger print recognization system is under biometric application used to increase the user security. Generally the biometric

More information

AUTOMATIC IRAQI CARS NUMBER PLATES EXTRACTION

AUTOMATIC IRAQI CARS NUMBER PLATES EXTRACTION AUTOMATIC IRAQI CARS NUMBER PLATES EXTRACTION Safaa S. Omran 1 Jumana A. Jarallah 2 1 Electrical Engineering Technical College / Middle Technical University 2 Electrical Engineering Technical College /

More information

Examples of image processing

Examples of image processing Examples of image processing Example 1: We would like to automatically detect and count rings in the image 3 Detection by correlation Correlation = degree of similarity Correlation between f(x, y) and

More information

License Plate Recognition

License Plate Recognition Code: Faculty of Engineering and Sustainable Development License Plate Recognition Songke Li & Yixian Chen June 2011 Bachelor Thesis, 15 credits, C Computer Science Computer Science program Examiner: Douglas

More information

A Training Based Approach for Vehicle Plate Recognition (VPR)

A Training Based Approach for Vehicle Plate Recognition (VPR) A Training Based Approach for Vehicle Plate Recognition (VPR) Laveena Agarwal 1, Vinish Kumar 2, Dwaipayan Dey 3 1 Department of Computer Science & Engineering, Sanskar College of Engineering &Technology,

More information

Image Enhancement in spatial domain. Digital Image Processing GW Chapter 3 from Section (pag 110) Part 2: Filtering in spatial domain

Image Enhancement in spatial domain. Digital Image Processing GW Chapter 3 from Section (pag 110) Part 2: Filtering in spatial domain Image Enhancement in spatial domain Digital Image Processing GW Chapter 3 from Section 3.4.1 (pag 110) Part 2: Filtering in spatial domain Mask mode radiography Image subtraction in medical imaging 2 Range

More information

Matlab Based Vehicle Number Plate Recognition

Matlab Based Vehicle Number Plate Recognition International Journal of Computational Intelligence Research ISSN 0973-1873 Volume 13, Number 9 (2017), pp. 2283-2288 Research India Publications http://www.ripublication.com Matlab Based Vehicle Number

More information

Exercise questions for Machine vision

Exercise questions for Machine vision Exercise questions for Machine vision This is a collection of exercise questions. These questions are all examination alike which means that similar questions may appear at the written exam. I ve divided

More information

Computer Graphics (CS/ECE 545) Lecture 7: Morphology (Part 2) & Regions in Binary Images (Part 1)

Computer Graphics (CS/ECE 545) Lecture 7: Morphology (Part 2) & Regions in Binary Images (Part 1) Computer Graphics (CS/ECE 545) Lecture 7: Morphology (Part 2) & Regions in Binary Images (Part 1) Prof Emmanuel Agu Computer Science Dept. Worcester Polytechnic Institute (WPI) Recall: Dilation Example

More information

Research on Application of Conjoint Neural Networks in Vehicle License Plate Recognition

Research on Application of Conjoint Neural Networks in Vehicle License Plate Recognition International Journal of Engineering Research and Technology. ISSN 0974-3154 Volume 11, Number 10 (2018), pp. 1499-1510 International Research Publication House http://www.irphouse.com Research on Application

More information

UM-Based Image Enhancement in Low-Light Situations

UM-Based Image Enhancement in Low-Light Situations UM-Based Image Enhancement in Low-Light Situations SHWU-HUEY YEN * CHUN-HSIEN LIN HWEI-JEN LIN JUI-CHEN CHIEN Department of Computer Science and Information Engineering Tamkang University, 151 Ying-chuan

More information

Universiteit Leiden Opleiding Informatica

Universiteit Leiden Opleiding Informatica Universiteit Leiden Opleiding Informatica Finish Photo Analysis for Athletics Track Events using Computer Vision Techniques Name: Roy van Hal Date: 21/07/2017 1st supervisor: Dirk Meijer 2nd supervisor:

More information

Automated Parking Management System Using License Plate Recognition

Automated Parking Management System Using License Plate Recognition Automated Parking Management System Using License Plate Recognition Deepak Harjani #, Mohita Jethwani *, Nikita Keswaney *, Sheba Jacob * # Department of Electronics and Telecommunication, Thadomal Shahani

More information

Lane Detection in Automotive

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

More information

Automated Number Plate Recognition System Using Machine learning algorithms (Kstar)

Automated Number Plate Recognition System Using Machine learning algorithms (Kstar) Automated Number Plate Recognition System Using Machine learning algorithms (Kstar) Er. Dinesh Bhardwaj 1, Er. Shruti Gujral 2 1, 2 Computer Science and Engineering Department, Chandigarh University, Mohali,

More information

A Vehicle Speed Measurement System for Nighttime with Camera

A Vehicle Speed Measurement System for Nighttime with Camera Proceedings of the 2nd International Conference on Industrial Application Engineering 2014 A Vehicle Speed Measurement System for Nighttime with Camera Yuji Goda a,*, Lifeng Zhang a,#, Seiichi Serikawa

More information