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

Size: px
Start display at page:

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

Transcription

1 ISSN IJESR/May 2015/ Vol-5/Issue-5/ Rajasekhar Junjunuri et. al./ International Journal of Engineering & Science Research CHARACTERS RECONGNIZATION OF AUTOMOBILE LICENSE PLATES ON THE DIGITAL IMAGE Rajasekhar Junjunuri* 1, Sandeep Kotta 1 1 Asst. Prof, Dept. of CSE, Dhanekula College of Engg. & Technology, Ganguru, Vijayawada (A.P), India. ABSTRACT Automatic vehicle license plate detection is a key technique in most of traffic related applications and is an active research topic in the image processing domain. Different methods, techniques and algorithms have been developed for license plate detection and recognitions, Approach: Due to the varying characteristics of the license plate like numbering system, colors, language of characters, style (font) and sizes of license plate, further research is still needed in this area. We proposed Development an affective license plate detection and number segmentation system Computer vision algorithms. Get the digital image as a input 1. Plate localization Finding and isolating the plate on the picture 2. Plate orientation and sizing Compensates for the skew of the plate and adjusts the dimensions to the required size 3. Normalization Adjusts the brightness and contrast of the image 4. Character segmentation Finds the individual characters on the plates 5. Optical character recognition (OCR) Translation of images of text into an electronically readable format 6. Syntactical/Geometrical analysis Check characters and positions against state-specific rules to identify the state of issuance for the license plate. Become part of our everyday life. Often they care about safety and control of law and order. Now it sufficiently important task in countries and cities. 1. INTRODUCTION Though the applications of automatic license plate detection have emerged in the last decade or so, the technology has been present for nearly 30 years. In the late 1970s, researchers for the United Kingdom police department manufactured the first working license plate recognition system and began deploying it by the beginning of the 1980s. The first US patent for an automatic license plate reader was issued in In a rare break for computer science, some issuing states/countries around the world adapted their license plates to assist automatic license plate recognition systems. In 2003, the Netherlands modified their license plate by introducing a new typeset font. During the same year, Texas passed a bill banning novelty frames (later overturned in 2007) because they impeded the view of the license plate to recognition systems [4]. Automatic Vehicle number plate recognition system used for identifying number and obtaining owner information from a large database of registration details. Recognition process includes, submitting a query, and extracting characters of the image that best matches with template if matched, obtain the owner details. In which visual contents, normally called as features are used to recognize alphabets and numeral characters to obtain registration details from large databases. Vehicle number plate recognition systems are used as core modules for intelligent infrastructure systems like electronic payment systems (toll payment and parking fee payment) and freeway and arterial management systems for traffic surveillance [5]. Automatic license/number plate recognition is a specific application of optical character recognition. Typically employed by law enforcement agencies, the uses for automatic license plate recognition have grown tremendously since its inception. Automatic license plate recognition may be used to cite individuals who violate traffic signals or drive in excess of the speed limit, as a method of electronic toll collection, to place a suspect at a scene, or identify uninsured motorist (when combined with a database search). License plate recognition may be complicated by frames that obscure parts of the plate, debris, complex backgrounds, and a wide variety of fonts. Furthermore, license plates are not configured in a standard format; license plates typically vary across issuing states and countries. Recognition systems must also account for rotation in the plane if a license plate is improperly mounted (this is more likely to occur after an accident). Difficulties also occur in the acquisition phase. Many systems acquire license plate images in the near-infrared spectrum and providing proper illumination is challenging. Also, cameras must be equipped with *Corresponding Author 302

2 extremely shutter speeds to capture objects moving at very fast speeds. Motion blur and noise make character recognition (and most other areas of computer vision) difficult. Acquisition devices may only have one chance to capture the target, so it is imperative that images are of good quality. The problem of automatic number plate recognition is been done from so many years and many methods have been proposed to address this problem. Developed a mobile LPR system for Android Operating System (OS). LPR involves three main components: license plate detection, character segmentation and Optical Character Recognition (OCR). For License Plate Detection and character segmentation, we used JavaCV and OpenCV libraries. And for OCR, we used tesseractocr [1].Automatic Number Plate Recognition System (ANPR) using Morphological operations, Histogram manipulation and Edge detection Techniques for plate localization and characters segmentation. Artificial Neural Networks are used for character classification and recognition [2]. Neural Network techniques are used for character recognition, one is Back Propagation Neural Network and other one is Learning Vector Quantization Neural Network [3]. Here they have used the technique of binarizing image and edge detection of a license plate image. Line detection is done by using Hough transformation. In next step detected the position of arbitrary shape. Points and regions of different intensity are found using blob analysis, regions are labeled and morphological operations like dilation, erosion are applied on the images. Characters are segmented and based on template matching characters are recognized [4]. Issues such as processing time, computational power, and recognition rate are also addressed in [5]. For character identification preclassification with Euler number, Parallel classification with skeleton features classifier, template matching classifier and neural network classifiers are used [6]. Adaptive thresholding is used because it produced solid characters instead of the contours with edge detection [7]. OCR is used to recognize an optically processed printed character number plate which is based on template matching [8]. Objective is to design an efficient automatic authorized vehicle identification system by using the vehicle number plate. The system is implemented on the entrance for security control of a highly restricted area like military zones or area around top government offices e.g. Parliament, Supreme Court etc [9].Mathematical principles and algorithms, which ensure a process of number plate detection, processes of proper characters segmentation, normalization and recognition. Work comparatively deals with methods achieving invariance of systems towards image skew, translations and various light conditions during the capture [10]. A work on recognizing license plate using segmentation presents a new approach for identifying using localization technique. Algorithm is based on combination of morphological operations based on area. Region properties are used for segmentation of characters. Characters are identified by the technique of template matching [11]. The proposed work is to develop a system to recognize the vehicle number plate and retrieve the owner information from the database. It is based on inputting a vehicle number plate image to the system, which recognizes the characters of vehicle number plate and using that characters the details of particular license plate image are fetched from the database as described in the next section. 2. PROPOSED METHODOLOGY Copyright 2015 Published by IJESR. All rights reserved 303

3 In this section, the proposed methodology is described as per the block diagram shown in Fig 1 Proposed Algorithm [1] Load image. [2] Pre-processing of the image. [3] Licence plate detection. (3.1) Edges identification using Canny detector. (3.2) Identifying only horizantol & vertical edges using Hough transfromation. (3.3) Extracting vehicle licence plate. [4] Recogination of characters. (4.1) Cutting the upper & lower part of the identified plate. (4.2) Dilation operation to seprate the characters. (4.3) Making blocks of size 38 x 20 for template matching. (4.4) Matching two alphabets by cross-correlation. (4.5) Matching three numbers by cross-correlation. (4.6) Getting the ASCII values through OCR of 2 alphabets & 3 numbers. [5] Number Identifyied. [6] Compare with database stored. [7] Message displayed. 3. PROPOSED STUDY AND IMPLEMENTATION The General Proposed system for the detection of number plates is Introduction to images An image is a matrix with X rows and Y columns. It is represented as function say f(x, y) of intensity values for each color over a 2D plane. 2D points, pixel coordinates in an image, can be denoted using a pair of values. Copyright 2015 Published by IJESR. All rights reserved 304

4 In digital image, pixels contain color value and each pixel uses 8 bits (0 to 7 bits). Most commonly, image has three types of representation gray scale image, Binary image and colored image as shown in figure 8 (b), (c), (d) respectively. Gray scale image, figure (b), calculates the intensity of light and it contains 8 bits (or one Byte or 256 values i.e. 28 = 256). Each pixel in the gray scale image represents one of the 256 values, in particular the value 0 represents black, 255 represents the white and the remaining values represents intermediate shades between black and white. The images with only two colors (black and white) are different to these gray scale images. Those two colored images are called binary images (c). So binary representation of the images does not contains shades between black and white. Color images, (d) are often built of several stacked color channels, each of them representing value levels of the given channel. For example, RGB images are composed of three independent channels for red, green and blue as primary color components. The color image contains 24 bits or 3 bytes and each byte has 256 values from 0 to Process of acquisition Image acquisition is the process of obtaining an image from the camera. This is the first step of any vision based systems. In our current research we acquire the images using a digital camera placed by the road side facing towards the incoming vehicles.here our aim is to get the frontal image of vehicles which contains license plate. The remaining stages of the system works in offline mode. Grayscale image: After acquiring the image, the very next step is to derive the gray scale image. Pseudo code to convert an image to a grayscale: STEP1 : Load the image STEP2 : Retrieve the properties of image like width, height and nchannels STEP3: Get the pointer to access image data STEP4: For each height and for each width of the image, convert image to grayscale by calculating average of r,g,b channels of the imageconvert to grayscale manually STEP5 : Display the image after converting to grayscale The flowchart shown in the following figure describes the algorithm to convert an image to gray scale image. Copyright 2015 Published by IJESR. All rights reserved 305

5 Where brightness changes sharply. This change is measured by derivative in1d.for biggest change derivative has max value (or) second derivative is zero. The detection of edge is most important as the success of higher level processing relies heavily on good edges Image Processing Pre- Processing: The pre-processing is the first step in number plate recognition. It consists the following major stages: 1.Binarization, 2.Noise Removal Binarization: The input image is initially processed to improve its quality and prepare it to next stages of the system. First, the system will convert RGB images to gray-level images. Noise Removal: In this noise removal stage we are going to remove the noise of the image i.e., while preserving the sharpness of the image. After the successful Localization of the Number Plate, we go on with Optical Character Recognition which involves the Segmentation, Feature extraction and Number plate Recognition. 3.3 Character Segmentation Segmentation is one of the most important processes in the automatic number plate recognition, because all further steps rely on it. If the segmentation fails, a character can be improperly divided into two pieces, or two characters can be improperly merged together. We can use a horizontal projection of a number plate for the segmentation, or one of the more sophisticated methods, such as segmentation using the neural networks. In this segmentation we use two types of segmentation: 1. Horizontal segmentation 2. Vertical segmentation. First we have performed vertical segmentation on the number plate then the characters are vertically segmented. After performing vertical segmentation we have to perform horizontal segmentation by doing this we get character from the plate. 3.4 Character Recognition We have to recognize the characters we should perform feature extraction which is the basic concept to recognize the character. The feature extraction is a process of transformation of data from a bitmap representation into a form of descriptors, which are more suitable for computers. The recognition of character should be invariant towards the user font type, or deformations caused by a skew. In addition, all instances of the same character should have a similar description. A description of the character is a vector of numeral values, so called descriptors or patterns. 4. PROPOSED ALGORITHM AND IMPLEMENTATION 4.1 Character segmentation This is the second major part of the License Plate detection algorithm. There are many factors that cause the character segmentation task difficult, such as image noise, plate frame, rivet, space mark, and plate rotation and illumination variance. We here propose the algorithm that is quite robust and gives significantly good results on images having the above mentioned problems. The Steps involved in character Segmentation are: Preprocessing: Preprocessing is very important for the good performance of character segmentation. Our preprocessing consists of conversion to grayscale and binarization using a object enhancement technique. The steps involved are: Conversion to Grayscale, Binarization. Compared with the usual methods of image Copyright 2015 Published by IJESR. All rights reserved 306

6 binarization, this algorithm uses the information of intensity and avoids the abruption and conglutination of characters that are the drawbacks of usual image binarization techniques. Object enhancement algorithm: The quality of plate images varies much in different capture conditions. Illumination variance and noise make it difficult for character segmentation. Then some image enhancement should be adopted to improve the quality of images. As we all know, the image enhancement methods of histogram equalization and gray level scaling have some side effects. They may have the noise enhanced as well. For character segmentation, only the character pixels need to be enhanced and the background pixels should be weakened at the same time. In fact, a license plate image contains about 20% character pixels. So these 20% character pixels need to be enhanced and the rest pixels need to be weakened. It is called object enhancement. The object enhancement algorithm consists of two steps: Firstly, gray level of all pixels is scaled into the range of 0 to 100 and compared with the original range 0 to 255, the character pixels and the background pixels are both weakened. Secondly, sorting all pixels by gray level in descending order and multiply the gray level of the top 20% pixels by Then most characters pixels are enhanced while background pixels keep weakened. The following figure shows the result of object enhancement. It can be seen from the figure that after object enhancement the contrast of peaks and valleys of the projection is more significant than the original. 4.2 Horizontal Segmentation For this we calculate the horizontal and vertical projections of intensity. Then we find the local minima for horizontal projection. Based on the threshold calculated from the above local minima s, we find x locations of the segmented regions. In order to locate the right and left edges of license plate from candidate region, the vertical projection after mathematical morphology deal is changed into binary image. The arithmetic for doing this is: F = Image between i & l Where, ft (1, i) is the vertical projection after mathematical morphology, T is the threshold. Then scan the function of ft (1, i) and register the potions where values change from 0 to 1 and from 1 to 0 in stack1 and stack2 respectively. So the candidate position of the left and right edge of the license plate are in stack1 (1,i) and stack2(1,i) respectively, and the candidate s width of the license plate is calculated by: Copyright 2015 Published by IJESR. All rights reserved 307

7 These give the coordinates of the potentially candidates regions. Merging and removing the Horizontal segments: Based on thresholds found by experiments we merge two segments if they happen to be very close and the segments having width less than a specified threshold are dropped. 4.3 Finding Vertical bounds For each of the horizontal segments we follow the same procedure as discussed above to get the vertical bounds. Result - The following is the image obtained on performing character segmentation on the extracted license plate from im1.jpg 5. OPTICAL CHARACTER RECOGNITION OCR is the mechanical or electronic translation of images of handwritten or typewritten text (usually captured by a scanner) into machine-editable text. The procedure consists of two important steps, training and recognition. Training: The program is first trained with a set of sample images for each of the characters to extract the important features based on which the recognition operation would be performed. Our program is trained on a set of 10 characters with 10 samples of each. Extract License Plate: From the above steps, we can get the row and column position of the license plate. Implemented algorithm at times gives more than 1 license plate on detection. 6. CONCLUSION This paper presents a recognition method in which the vehicle plate image is obtained by the digital cameras and the image is processed to get the number plate information. A rear image of a vehicle is captured and processed using various algorithms. Further we are planning to study about the characteristics involved with the automatic number plate system for better performance. Copyright 2015 Published by IJESR. All rights reserved 308

8 REFERENCES [1] Yang F, Ma Z. Vehicle License Plate location Based on Histogramming and Mathematical Morphology, [2] Duan TD, Duc DA, Hong Du TL. Combining Hough Transform and Contour Algorithm for detecting Vehicles. License-Plates, October [3] Duan TD, Hong Du TL, Phuoc TV, Hoang NV. Building an Automatic Vehicle License-Plate Recognition System, Febraury [4] CheokMan, Kengchung. A High Accurate Macau License Plate Recognition System, [5] Thuy R, Nguyen T, Pham XD JeonJW. Rectangular Object Tracking Based on Standard Hough Transform, February [6] Zhang Y, Zhang C. A New Algorithm for Character Segmentation of License Plate, June [7] Jia W, Zhang H, He X. Mean Shift for Accurate Number Plate Detection, July Copyright 2015 Published by IJESR. All rights reserved 309

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Libyan Licenses Plate Recognition Using Template Matching Method

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

More information

Recognition Of Vehicle Number Plate Using MATLAB

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

More information

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

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 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

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

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

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

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

Vehicle Number Plate Recognition Using Hybrid Mathematical Morphological Techniques

Vehicle Number Plate Recognition Using Hybrid Mathematical Morphological Techniques Vehicle Number Plate Recognition Using Hybrid Mathematical Morphological Techniques Humayun Karim Sulehria, Ye Zhang, Danish Irfan, Atif Karim Sulehria School of Electronics and Information Engineering

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

AUTOMATIC NUMBER PLATE DETECTION USING IMAGE PROCESSING AND PAYMENT AT TOLL PLAZA

AUTOMATIC NUMBER PLATE DETECTION USING IMAGE PROCESSING AND PAYMENT AT TOLL PLAZA Reg. No.:20151213 DOI:V4I3P13 AUTOMATIC NUMBER PLATE DETECTION USING IMAGE PROCESSING AND PAYMENT AT TOLL PLAZA Meet Shah, meet.rs@somaiya.edu Information Technology, KJSCE Mumbai, India. Akshaykumar Timbadia,

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

A Smart Technique for Accurate Identification of Vehicle Number Plate Using MATLAB and Raspberry Pi 2

A Smart Technique for Accurate Identification of Vehicle Number Plate Using MATLAB and Raspberry Pi 2 A Smart Technique for Accurate Identification of Vehicle Number Plate Using MATLAB and Raspberry Pi 2 Khushboo Chhikara, M.tech student Mechanical and Automation Department Indira Gandhi Delhi Technical

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

Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition

Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition Hetal R. Thaker Atmiya Institute of Technology & science, Kalawad Road, Rajkot Gujarat, India C. K. Kumbharana,

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

Automated Car Number Plate Detection System to detect far number plates Jatinder Singh 1 Vinay Bhardwaj 2

Automated Car Number Plate Detection System to detect far number plates Jatinder Singh 1 Vinay Bhardwaj 2 Automated Car Number Plate Detection System to detect far number plates Jatinder Singh 1 Vinay Bhardwaj 2 Mtech Research Scholar 1 Assistant Professor 2 Department Of Computer Science &Enginerring SGGSWU,FatehgarhSahib,Punjab,India

More information

Method for Real Time Text Extraction of Digital Manga Comic

Method for Real Time Text Extraction of Digital Manga Comic Method for Real Time Text Extraction of Digital Manga Comic Kohei Arai Information Science Department Saga University Saga, 840-0027, Japan Herman Tolle Software Engineering Department Brawijaya University

More information

Addis Ababa University School of Graduate Studies Addis Ababa Institute of Technology

Addis Ababa University School of Graduate Studies Addis Ababa Institute of Technology 1 Addis Ababa University School of Graduate Studies Addis Ababa Institute of Technology Design and Implementation of Car Plate Recognition System for Ethiopian Car Plates By: Huda Zuber Ahmed Addis Ababa

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

License Plate Recognition Using Convolutional Neural Network

License Plate Recognition Using Convolutional Neural Network IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727 PP 28-33 www.iosrjournals.org License Plate Recognition Using Convolutional Neural Network Shrutika Saunshi 1, Vishal

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

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

An Artificial Intelligence System for Monitoring and Security for Vehicular Plate Number in Lyceum of the Philippines University Laguna

An Artificial Intelligence System for Monitoring and Security for Vehicular Plate Number in Lyceum of the Philippines University Laguna An Artificial Intelligence System for Monitoring and Security for Vehicular Plate Number in Lyceum of the Philippines University Laguna Joseph T. Seranilla 1*, Angelino P. Flores 1, Veryll John Sumague

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

AUTOMATIC LICENSE PLATE RECOGNITION USING PYTHON

AUTOMATIC LICENSE PLATE RECOGNITION USING PYTHON AUTOMATIC LICENSE PLATE RECOGNITION USING PYTHON Gopalkrishna Hegde Department of of MCA Gogte Institute of Technology Belagavi Abstract Automatic License Plate Recognition system is a real time embedded

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

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

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

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

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and 8.1 INTRODUCTION In this chapter, we will study and discuss some fundamental techniques for image processing and image analysis, with a few examples of routines developed for certain purposes. 8.2 IMAGE

More information

COMPARATIVE PERFORMANCE ANALYSIS OF HAND GESTURE RECOGNITION TECHNIQUES

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

More information

Localization of License Plates from Surveillance Camera Images: A Color Feature Based ANN Approach

Localization of License Plates from Surveillance Camera Images: A Color Feature Based ANN Approach Localization of License Plates from Surveillance Camera Images: A Color Feature Based ANN Approach Satadal Saha Sr. Lecturer MCKV Institute of Engg. Liluah Subhadip Basu Sr. Lecturer Jadavpur University

More information

Face Detection System on Ada boost Algorithm Using Haar Classifiers

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

More information

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

RESEARCH PAPER FOR ARBITRARY ORIENTED TEAM TEXT DETECTION IN VIDEO IMAGES USING CONNECTED COMPONENT ANALYSIS

RESEARCH PAPER FOR ARBITRARY ORIENTED TEAM TEXT DETECTION IN VIDEO IMAGES USING CONNECTED COMPONENT ANALYSIS International Journal of Latest Trends in Engineering and Technology Vol.(7)Issue(4), pp.137-141 DOI: http://dx.doi.org/10.21172/1.74.018 e-issn:2278-621x RESEARCH PAPER FOR ARBITRARY ORIENTED TEAM TEXT

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

A Real Time Automatic License Plate Recognition Using Optical Character Recognition

A Real Time Automatic License Plate Recognition Using Optical Character Recognition www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue 1 January 2015, Page No. 9789-9796 A Real Time Automatic License Plate Recognition Using Optical Character

More information

Number Plate Detection with a Multi-Convolutional Neural Network Approach with Optical Character Recognition for Mobile Devices

Number Plate Detection with a Multi-Convolutional Neural Network Approach with Optical Character Recognition for Mobile Devices J Inf Process Syst, Vol.12, No.1, pp.100~108, March 2016 http://dx.doi.org/10.3745/jips.04.0022 ISSN 1976-913X (Print) ISSN 2092-805X (Electronic) Number Plate Detection with a Multi-Convolutional Neural

More information

Image Extraction using Image Mining Technique

Image Extraction using Image Mining Technique IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 9 (September. 2013), V2 PP 36-42 Image Extraction using Image Mining Technique Prof. Samir Kumar Bandyopadhyay,

More information

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

An Approach to Korean License Plate Recognition Based on Vertical Edge Matching An Approach to Korean License Plate Recognition Based on Vertical Edge Matching Mei Yu and Yong Deak Kim Ajou University Suwon, 442-749, Korea Abstract License plate recognition (LPR) has many applications

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

HEURISTICS FOR LICENSE PLATE DETECTION AND EXTRACTION

HEURISTICS FOR LICENSE PLATE DETECTION AND EXTRACTION World Journal of Science and Technology 2011, 1(12): 63-67 ISSN: 2231 2587 www.worldjournalofscience.com HEURISTICS FOR LICENSE PLATE DETECTION AND EXTRACTION Sandeep Singh Chhabada 1, Rahul Singh 1 and

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

Automatic Car License Plate Detection System for Odd and Even Series

Automatic Car License Plate Detection System for Odd and Even Series Automatic Car License Plate Detection System for Odd and Even Series Sapna Gaur Research Scholar Hindustan Institute of Technology Agra APJ Abdul Kalam Technical University, Lucknow Sweta Singh Asst. Professor

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

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

Mobile Based Application to Scan the Number Plate and To Verify the Owner Details

Mobile Based Application to Scan the Number Plate and To Verify the Owner Details International Journal of Engineering Science Invention ISSN (Online): 2319 6734, ISSN (Print): 2319 6726 Volume 5 Issue 10 October 2016 PP. 07-11 Mobile Based Application to Scan the Number Plate and To

More information

ME 6406 MACHINE VISION. Georgia Institute of Technology

ME 6406 MACHINE VISION. Georgia Institute of Technology ME 6406 MACHINE VISION Georgia Institute of Technology Class Information Instructor Professor Kok-Meng Lee MARC 474 Office hours: Tues/Thurs 1:00-2:00 pm kokmeng.lee@me.gatech.edu (404)-894-7402 Class

More information

Automated Number Plate Verification System based on Video Analytics

Automated Number Plate Verification System based on Video Analytics Automated Number Plate Verification System based on Video Analytics Kumar Abhishek Gaurav 1, Viveka 2, Dr. Rajesh T.M 3, Dr. Shaila S.G 4 1,2 M. Tech, Dept. of Computer Science and Engineering, 3 Assistant

More information

ROBOT VISION. Dr.M.Madhavi, MED, MVSREC

ROBOT VISION. Dr.M.Madhavi, MED, MVSREC ROBOT VISION Dr.M.Madhavi, MED, MVSREC Robotic vision may be defined as the process of acquiring and extracting information from images of 3-D world. Robotic vision is primarily targeted at manipulation

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

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

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

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

Systematic Toll Deduction Using Automatic Number Plate Recognition

Systematic Toll Deduction Using Automatic Number Plate Recognition IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 11, Issue 4, Ver. II (Jul.-Aug.2016), PP 01-09 www.iosrjournals.org Systematic Toll Deduction

More information

Abstract. Most OCR systems decompose the process into several stages:

Abstract. Most OCR systems decompose the process into several stages: Artificial Neural Network Based On Optical Character Recognition Sameeksha Barve Computer Science Department Jawaharlal Institute of Technology, Khargone (M.P) Abstract The recognition of optical characters

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

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

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

Robust Hand Gesture Recognition for Robotic Hand Control

Robust Hand Gesture Recognition for Robotic Hand Control Robust Hand Gesture Recognition for Robotic Hand Control Ankit Chaudhary Robust Hand Gesture Recognition for Robotic Hand Control 123 Ankit Chaudhary Department of Computer Science Northwest Missouri State

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

PRACTICAL IMAGE AND VIDEO PROCESSING USING MATLAB

PRACTICAL IMAGE AND VIDEO PROCESSING USING MATLAB PRACTICAL IMAGE AND VIDEO PROCESSING USING MATLAB OGE MARQUES Florida Atlantic University *IEEE IEEE PRESS WWILEY A JOHN WILEY & SONS, INC., PUBLICATION CONTENTS LIST OF FIGURES LIST OF TABLES FOREWORD

More information

Indian Coin Matching and Counting Using Edge Detection Technique

Indian Coin Matching and Counting Using Edge Detection Technique Indian Coin Matching and Counting Using Edge Detection Technique Malatesh M 1*, Prof B.N Veerappa 2, Anitha G 3 PG Scholar, Department of CS & E, UBDTCE, VTU, Davangere, Karnataka, India¹ * Associate Professor,

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

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

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

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

Displacement Measurement of Burr Arch-Truss Under Dynamic Loading Based on Image Processing Technology

Displacement Measurement of Burr Arch-Truss Under Dynamic Loading Based on Image Processing Technology 6 th International Conference on Advances in Experimental Structural Engineering 11 th International Workshop on Advanced Smart Materials and Smart Structures Technology August 1-2, 2015, University of

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

Cloud Based Real Time Anti Vehicle Theft By Using LP Recognition And OCR Recognition

Cloud Based Real Time Anti Vehicle Theft By Using LP Recognition And OCR Recognition www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue 3 March 2015, Page No. 10779-10786 Cloud Based Real Time Anti Vehicle Theft By Using LP Recognition

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

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

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

An Effective Method for Removing Scratches and Restoring Low -Quality QR Code Images

An Effective Method for Removing Scratches and Restoring Low -Quality QR Code Images An Effective Method for Removing Scratches and Restoring Low -Quality QR Code Images Ashna Thomas 1, Remya Paul 2 1 M.Tech Student (CSE), Mahatma Gandhi University Viswajyothi College of Engineering and

More information

Background. Computer Vision & Digital Image Processing. Improved Bartlane transmitted image. Example Bartlane transmitted image

Background. Computer Vision & Digital Image Processing. Improved Bartlane transmitted image. Example Bartlane transmitted image Background Computer Vision & Digital Image Processing Introduction to Digital Image Processing Interest comes from two primary backgrounds Improvement of pictorial information for human perception How

More information

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

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

License Plate Recognition Using Skew Detection and Morphological Operation Archita Patel 1 Mr. Krunal R. Patel 2

License Plate Recognition Using Skew Detection and Morphological Operation Archita Patel 1 Mr. Krunal R. Patel 2 IJSRD - International Journal for Scientific Research & Development Vol. 2, Issue 03, 2014 ISSN (online): 2321-0613 License Plate Recognition Using Skew Detection and Morphological Operation Archita Patel

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