license plate recognition (lpr)

47
License Plate Recognition (LPR) By: Mani Baghaei Fard

Upload: teo

Post on 23-Feb-2016

112 views

Category:

Documents


1 download

DESCRIPTION

License Plate Recognition (LPR). By: Mani Baghaei Fard. Preface. During recent years number of moving vehicles in roads and highways has been considerably increased. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: License Plate Recognition (LPR)

License Plate Recognition

(LPR)By: Mani Baghaei Fard

Page 2: License Plate Recognition (LPR)

Preface

Page 3: License Plate Recognition (LPR)

During recent years number of moving vehicles in roads and highways has been considerably increased

Page 4: License Plate Recognition (LPR)

Hence, Intelligent transportation systems (ITSs) have been developed as a major tool for analyzing and also handling the moving vehicles in cities and roads

Page 5: License Plate Recognition (LPR)

These systems attempt to facilitate the problem of identification of cars, via various techniques which mainly rely on automated (rather than manual) algorithms.

Image processing is one of these techniques

Unique property for identifying all vehicles is their license plate number.

Page 6: License Plate Recognition (LPR)

Security control of restricted areas

parking management systems

traffic law enforcements

surveillance systems

Electronic toll collection

Some applications:

Page 7: License Plate Recognition (LPR)

Difficulties: Poor image resolution usually because the plate is too far away but sometimes

resulting from the use of a low-quality camera.

Weather condition

complex background

plate deficiencies (damaged or dirty)

Supporting specific range of distances

Viewpoints

Blurry images, particularly motion blur

Poor lighting and low contrast due to overexposure, reflection or shadows

response time is another restriction in real time applications such as license plate tracking

Lack of coordination between countries or states which results in different design of the plates.

Page 8: License Plate Recognition (LPR)

A license plate recognition (LPR) system mainly consists of three major parts

license plate detection (LPD) character segmentation and Optical Character Recognition(OCR)

Page 9: License Plate Recognition (LPR)

The task of recognizing specific object (i.e. Car license plate here) in an image is one of the most difficult topics in the field of computer vision

There are many methods

license plate detection (LPD)

Page 10: License Plate Recognition (LPR)

Edge-based techniques:

methods based on edge analysis combined with morphology operations achieved promising results . Presence of dark characters on the light background at license plate provides strong edges which can be used as a cue to detect the license plate.

Unfortunately, solely using edge information, fails the algorithm in complex scenes. Hence, combining edge information with other cues improves the detection rate.

Page 11: License Plate Recognition (LPR)

Hough transform: attempts to find the rectangular shapes.

Advantages: useful in finding the boundary box of a license plate regardless of characters.

Disadvantages:

Not suitable for distorted or dirty plate

Computational complexity

is only suited for closed shut

Page 12: License Plate Recognition (LPR)
Page 13: License Plate Recognition (LPR)

Texture analysis: This approach takes the advantage of existing homogenous and frequent texture-like edges in

the plate region. Gabor filters have been one of the major tools for texture

analysis Using these filters, the process is independent of rotation

and scaling. It has the ability of studying images in an unlimited number of directions. But it is a time consuming

and complex method specially when applied to large images.

Page 14: License Plate Recognition (LPR)

Fuzzy Logic-based Texture – based Neural networks Train and test techniques such as Adaboost And many others….

Definitely ,I am not going to details about all of them …!!!

Other methods:

Page 15: License Plate Recognition (LPR)

An optimized Edge-based method

Page 16: License Plate Recognition (LPR)

By observing license plates in images, two main features are noticed:

1) horizontal edges around a car plate are relatively strong and dominant.

2) density of vertical edges across a car plate are significant.

Methodology

Page 17: License Plate Recognition (LPR)
Page 18: License Plate Recognition (LPR)

These two important features and also low complexity for edge-based analysis motivate us to use edge information for the car plate detection.

So let`s do it step by step!

Page 19: License Plate Recognition (LPR)

Step 1: RGB2GRAY

Page 20: License Plate Recognition (LPR)

RGB

Gray

Page 21: License Plate Recognition (LPR)

Step 2: Edging

Page 22: License Plate Recognition (LPR)

Edging wrt to what axes is more efficient?

Page 23: License Plate Recognition (LPR)

Horizontal Edges

Vertical Edges

Vertical & Horizontal Edges

Page 24: License Plate Recognition (LPR)

Wise Idea

Estimating the location of plate with significant density of vertical edges

Page 25: License Plate Recognition (LPR)

Roberts

Log

Zero cross

Canny

Prewitt

Sobel

Recall: Edging Methods

Can find Vertical and Horizontal edges seprately

By experience Sobel Preferred Cause of better response

Sobel Operator is a [1 2 1] filter

Page 26: License Plate Recognition (LPR)

Result of Step 2

Page 27: License Plate Recognition (LPR)

Step 3 :Enhancing Plate-like regions in order to have better

response in these areas

Page 28: License Plate Recognition (LPR)

a major cause of failure for a plate detectionsystem is low quality of car image. In order to improve the quality of plate image I used a pre-processing algorithm which increases the image contrast at locations where might be a license plate.

Page 29: License Plate Recognition (LPR)

variance of local intensity for constituting pixels of the license plate has a limited range and does not change dynamically. This function increases image

Zheng et al. method

Page 30: License Plate Recognition (LPR)

Based on some experiments the local intensity variance for a plate region can be out of considered range 0–60.

method does not work well under severe illumination change.

Drawbacks:

Page 31: License Plate Recognition (LPR)

He replaced the variance of image intensity with the density of vertical edges in Zheng`s method

Vahid Abolghasemi`s method

Page 32: License Plate Recognition (LPR)
Page 33: License Plate Recognition (LPR)
Page 34: License Plate Recognition (LPR)

What logic has robust response in plate like

region?

Page 35: License Plate Recognition (LPR)

Histogram Analyzing method

Page 36: License Plate Recognition (LPR)
Page 37: License Plate Recognition (LPR)
Page 38: License Plate Recognition (LPR)
Page 39: License Plate Recognition (LPR)
Page 40: License Plate Recognition (LPR)
Page 41: License Plate Recognition (LPR)
Page 42: License Plate Recognition (LPR)

How about this example?

Page 43: License Plate Recognition (LPR)
Page 44: License Plate Recognition (LPR)
Page 45: License Plate Recognition (LPR)
Page 46: License Plate Recognition (LPR)

Mission failed again !!!

Page 47: License Plate Recognition (LPR)

1-Reading image 2-RGB2gray 3-find out vertical edges using Sobel operator 4-Dilation along X axes 5-smoothing 6-using morphological tools to extract plate 7-enhancement and plate preparation for

OCR algorithm

I tried to find out another way