License Plate Recognition

License Plate Recognition.
Emerging Trends in Computer Science and Information Technology -2012(ETCSIT2012) Proceedings published in International Journal of Computer Applications® (IJCA) Automatic Vehicle Identification Using License Plate Recognition for Indian Vehicles Sandra Sivanandan Department of Computer Engineering K. K. Wagh Institute Of Engineering Education & Research, Hirabai Haridas Vidyanagari Amrut-Dham, Panchavati, Nashik-422003 University of Pune, Maharashtra Ashwini Dhanait Department of Computer Engineering K. K.
Wagh Institute Of Engineering Education & Research, Hirabai Haridas Vidyanagari Amrut-Dham, Panchavati, Nashik-422003 University of Pune, Maharashtra Yogita Dhepale Department of Computer Engineering K. K. Wagh Institute Of Engineering Education & Research, Hirabai Haridas Vidyanagari Amrut-Dham, Panchavati, Nashik-422003. Yasmin Saiyyad Department of Computer Engineering K. K. Wagh Institute Of Engineering Education & Research, Hirabai Haridas Vidyanagari Amrut-Dham, Panchavati, Nashik-422003. ABSTRACT In this study, a smart and simple algorithm is presented for vehicle’s license plate recognition system.
The proposed algorithm consists of three major parts: Extraction of plate region, segmentation of characters and recognition of plate characters. For extracting the plate region edge detection and morphological operations are used. In segmentation part scan line algorithm is used. Character Segmentation for Devanagari Number Plates is also presented. Optical character recognition technique is used for the character recognition. The objective is to design an efficient automatic authorized vehicle identification system by using the vehicle number plate.

Here we are presenting a smart and simple algorithm for vehicle’s license plate recognition system for Indian Vehicles. In this study, the proposed algorithm is based on extraction of plate region, segmentation of plate characters and recognition of characters. In India we find plates having Devanagari fonts as well (though according to rules it is not allowed). Character extraction for Devanagari font is slightly different as compared to English font because of the header line (shirorekha). We propose algorithm for character extraction for Devanagari font. The recognized plate an be then compared with police hotlist database to identify stolen vehicles. The paper is organized as follows: Section II provides an overview of the overall system. Extracting the plate region is explained in Section III. Section IV gives the segmentation of individual plate characters. Section V deals with recognition of characters using optical character recognition based on statistical based template matching algorithm which uses correlation and section VI deals with verification of plate according to Indian rules. The paper concludes with Section VII. Keywords
Devanagari, Edge detection, License plate recognition, Optical character recognition, segmentation. 1. INTRODUCTION License plate recognition (LPR) is a form of Automatic Vehicle Identification. It is an image processing technology used to identify vehicles by only their license plates. Real time LPR plays a major role in automatic monitoring of traffic rules and maintaining law enforcement on public roads. The LPR system’s significant advantage is that the system can keep an image record of the vehicle which is useful in order to fight crime and fraud (“an image is worth a thousand words”).
Early LPR systems suffered from a low recognition rate, lower than required by practical systems. The external effects (sun and headlights, bad plates, wide number of plate types) and the limited level of the recognition software and vision hardware yielded low quality systems. However, recent improvements in the software and hardware have made the LPR systems much more reliable and wide spread. 23 Emerging Trends in Computer Science and Information Technology -2012(ETCSIT2012) Proceedings published in International Journal of Computer Applications® (IJCA) in night condition, contrast enhancement is important before further processing [1]. . STRUCTURE OF LPR SYSTEM Fig. 1) Original Image Fig. 2) Gray Scale Image Flowchart of Proposed System The algorithm proposed in this paper is designed to recognize license plates of vehicles automatically. Input of the system is the image of a vehicle captured by a camera. The captured image taken from 3-5 meters away is first converted to gray scale. We apply vertical edge detection algorithm and morphological operation i. e. open and close for plate extraction. After applying morphological operations image is filtered out to get exact plate region. Plate region is cropped.
Row segmentation separates row in plate and column separation separates characters from row. Finally recognition part OCR recognizes the characters giving the result as the plate number in ASCII format. The result in ASCII format is can be verified on the basis of rules followed in India. Fig. 3) Gray image after contrast enhancement 3. 2 Vertical Edge Detection Before applying edge detection median filter is to be applied to image for removing noise. The main idea of median filter is to run through the signal, entry by entry, replacing each entry with the median of neighboring entries.
Such noise reduction is a typical preprocessing step to improve the results of later processing (edge detection) [2]. 3. EXTRACTION OF PLATE REGION Plate Extraction is done in following steps 3. 1 Convert image to Gray Scale 3. 2 Apply Vertical Edge detection 3. 3 Candidate Plate Area Detection ? Morphologically Close image ? Fill holes in image ? Morphologically Open image 3. 3 Filtration of non Plate region 3. 1 Conversion To Gray Scale This is pre-processing step for plate extraction. We apply Formula: I( i, j) = 0. 114*A( i, j,1) + 0. 587*A(i, j, 2) + 0. 99* A(i, j,3) where, I(i,j) is the array of gray image, A(i,j,1), A(i,j,2), A(i,j,3) are the R,G,B value of original image respectively. Sometimes the image may be too dark, contain blur, thereby making the task of extracting the license plate difficult. In order to recognize the license plate even In ascending order of values: 0, 2, 3, 3, 4, 6, 10, 15, 97. Center value (previously 97) is replaced by the median of all nine values (4). Edge detection is performed on the given image, which aims at identifying points in digital image at which image brightness changes sharply or, more formally, has discontinuities.
There mainly exists several edge detection methods (Sobel, Prewitt, Roberts, Canny). We use here Sobel operator for vertical edge detection. If we define A as the source image, and Gx and Gy are two images which at each point contain the horizontal and vertical derivative approximations, the computations are as follows: 24 Emerging Trends in Computer Science and Information Technology -2012(ETCSIT2012) Proceedings published in International Journal of Computer Applications® (IJCA) Where * is 2D convolution operation. Fig. 5) Closed Image Fig. 4) Sobel Vertical Edge detection Fig. 6) Filled Image 3. Candidate Plate Area Detection A morphological operator is applied to the image for specifying the plate location. We build a morphological operator that is sensitive to a specific shape in the input image. In our system rectangular box is employed as a structural element to detect the car plates. In mathematical morphology structuring element are represented as matrices. Structuring element is a characteristic of certain structure and features to measure the shape of an image and is used to carry out other image processing operations [4]. Typical rectangular structuring element is shown in figure. Fig. ) Opened Image 3. 4 Filtration Of Non Plate Region After identify the ROI, image is then filtered using following filtering techniques. First find the connected components in image. The first technique involves removing of all white patches which has more or less area than the threshold. For instance components having area < 2000 or >20000 are eliminated. Using Bounding Box method, draw Bounding Box around components and fill the image. According to the height values, for instance, only the objects with a height greater than Tmin_h and less than Tmax_h are retained, and eliminate the other objects.
After that, if the width values of the retained objects are greater than Tmin_w and less than Tmax_w, the objects are retained; otherwise, the objects are removed, and so on. Where: Tmin_h : Minimum height of the object. Tmax_h : Maximum height of the object. Tmin_w : Minimum width of the object. Tmax_w : Maximum width of the object [6]. After filtering plate region is cropped by searching for the first and last white pixels starting from top left corner of an image. Plate is cropped from original image after getting coordinates. Using two basic operation of morphology (erosion and dilation), opening and closing of image is done.
The opening of A by B is obtained by the erosion of A by B, followed by dilation of the resulting image by B. The closing of A by B is obtained by the dilation of A by B, followed by erosion of the resulting structure by B. For closing image 10*20 rectangular structuring element is used. After closing image we have to fill the holes in this image. A hole is a set of background pixels that cannot be reached by filling in the background from the edge of the image [3]. Then image is opened using 5*10 rectangular structural element. Values are determined according to the size of the image.
Here we have used 1280X980 resolution images. 25 Emerging Trends in Computer Science and Information Technology -2012(ETCSIT2012) Proceedings published in International Journal of Computer Applications® (IJCA) 4. SEGMENTATION OF PLATE CHARACTERS Before applying the OCR, the individual lines in the text are separated using line separation process and individual characters from separated lines. Steps for Character Segmentation: 4. 1 Binarization of Plate image 4. 2 Scan Line Algorithm for row segmentation 4. 3 Vertical Projection for column segmentation
Fig 6) Filtered Image on basis of area Fig. 7) Bounding Box and filled image 4. 1 Binarization Of Plate Image Binarize the plate image. Threshold for binarization must be such that characters are displayed well. For that we take average of all pixel values in plate image and calculate threshold. Fig. 10) Binarized image Fig. 8) Image after filtration on basis of height &width of objects 4. 2 Scan Line Algorithm The scan line algorithm is based on the feature that there is transition from 1 to 0 and 0 to 1 transition in character region in a binary image.
Thus the total number of transition in character region is more than the total number of transition in other region. There are at least seven characters in license plate region and every character has more than two Jumps[7]. We can choose twelve as the threshold value. If the total number of transitions in a certain line is greater than twelve, this line may be in character region. Otherwise, it is not in character region. Algorithm: 1) Let H be height and W be Width of Plate image. 2) for(i=H/2 to 0) { Count no of transitions ie 0 to 1 and 1 to 0 in cnt; if cnt

Haven’t Found The Relevant Content? Hire a Subject Expert to Help You With
License Plate Recognition
Post Your Own Question And Get A Custom Answer
Hire Writer

License Plate Recognition

Calculate the price of your order

Select your paper details and see how much our professional writing services will cost.

We`ll send you the first draft for approval by at
Price: $36
  • Freebies
  • Format
  • Formatting (MLA, APA, Chicago, custom, etc.)
  • Title page & bibliography
  • 24/7 customer support
  • Amendments to your paper when they are needed
  • Chat with your writer
  • 275 word/double-spaced page
  • 12 point Arial/Times New Roman
  • Double, single, and custom spacing
  • We care about originality

    Our custom human-written papers from top essay writers are always free from plagiarism.

  • We protect your privacy

    Your data and payment info stay secured every time you get our help from an essay writer.

  • You control your money

    Your money is safe with us. If your plans change, you can get it sent back to your card.

How it works

  1. 1
    You give us the details
    Complete a brief order form to tell us what kind of paper you need.
  2. 2
    We find you a top writer
    One of the best experts in your discipline starts working on your essay.
  3. 3
    You get the paper done
    Enjoy writing that meets your demands and high academic standards!

Samples from our advanced writers

Check out some essay pieces from our best essay writers before your place an order. They will help you better understand what our service can do for you.

Get your own paper from top experts

Order now

Perks of our essay writing service

We offer more than just hand-crafted papers customized for you. Here are more of our greatest perks.

  • Swift delivery
    Our writing service can deliver your short and urgent papers in just 4 hours!
  • Professional touch
    We find you a pro writer who knows all the ins and outs of your subject.
  • Easy order placing/tracking
    Create a new order and check on its progress at any time in your dashboard.
  • Help with any kind of paper
    Need a PhD thesis, research project, or a two-page essay? For you, we can do it all.
  • Experts in 80+ subjects
    Our pro writers can help you with anything, from nursing to business studies.
  • Calculations and code
    We also do math, write code, and solve problems in 30+ STEM disciplines.

Frequently asked questions

Get instant answers to the questions that students ask most often.

See full FAQ
  • What if I’m dissatisfied with the paper I get?

    The average quality score at our professional custom essay writing service is 8.5 out of 10. The high satisfaction rate is set by our Quality Control Department, which checks all papers before submission. The final check includes:
    • Compliance with initial order details.
    • Plagiarism.
    • Proper referencing.
    If for some reason we happen to leave a mistake unnoticed, you are invited to request unlimited revisions of your custom-written paper. For more information, check our Revision Policy. We will do our best to make your experience with Familiar Essays enjoyable.
  • I need an essay on the same day. Is it something you can do?

    Sure. Our writing company offers a fast service with an 8-hour deadline for orders up to master’s level. Make sure to specify the deadline in the order form and our writers will write a paper within the indicated timeslot. Just proceed to submit your requirements here Once you order a custom-written essay, our managers will assign your order to the well-suited writer, who has the best skills and experience for preparing your specific assignment. You can also request one of these extra features:
    • Choose the Writer’s Samples option – study 3 randomly-provided pages from orders that have been written by the assigned writer.
    • Request a specific writer – choose an academic writer from the dropdown list in the order’s form (optional for returning customers).
    You can be sure that your custom writing order will be accomplished by one of our 400+ professional academic writers. They all pass a series of tests to prove their writing prowess and hold the reputation of being the most professional in the industry. Want to make sure writer’s skills match your needs? Get more details on how to choose the appropriate author.
  • How can I be sure your writing service is not a scam?

    We understand that a shade of mistrust has covered the paper writing industry, and we want to convince you of our loyalty. Apart from high-quality writing services, we offer:
    • The chances of students to boost writing skills in a quick and effective way.
    • The opportunity to manage studies and free time in an enjoyable manner.
    • The possibilities to improve overall academic performance.
    Our custom writing company has been working for more than 12 years and always puts quality and clients’ needs first. Our operations are legally documented, we are easily accessible online and offline,
  • Is it legal to use your professional writing service?

    Yes. Custom writing help is not prohibited by any university or college. It’s a 100% legal way of getting professional assistance with paper writing. Hiring writers from an essay writing company is in many ways similar to consulting a tutor – we help you solve the writing issues at hand.
  • How does your service work?

    Our custom writing service is a reliable solution on your academic journey that will always help you if your deadline is too tight. You fill in the order form with your basic requirements for a paper: your academic level, paper type and format, the number of pages and sources, discipline, and deadline. Then, you describe the specific details of the paper you need: add the topic, write or paste the instructions, and attach files to be used, if you have them. After that, an online customer support representative chooses the best writer that specializes in your discipline and assigns him or her to complete the paper according to your requirements. When the paper is ready, we check it for plagiarism and send it to you. If you want to change something, you can request a free revision.
See full FAQ

Take your studies to the next level with our experienced specialists

Live ChatWhatsApp