SlideShare a Scribd company logo
1 of 4
Download to read offline
Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108
www.ijera.com 105 | P a g e
Research on License Plate Recognition and Extraction from
complicated Images
Velamuri.Rohini.Mitravinda *, Damodara V V S Phani Kumar **
*(Department of Computer Science, RISE Prakasam Group of Institutions,Vallur, Ongole., India)
** (Department of Computer Science, RISE Prakasam Group of Institutions,Vallur, Ongole., India)
ABSTRACT
Vehicle number plate recognition has attracted many researchers for intelligent transportation systems such as
the payment of parking fee, controlling the traffic volume, traffic data collection, etc. We are presenting an
enhanced license plate extraction methodology which includes edge statistics and the morphology. The
proposed methodology includes vertical edge extraction, background curve and noise removing, edge statistical
analysis and morphology-based license plate extraction.
Keywords- intelligent transportation systems; license plate extraction; edge detection; morphology
I. INTRODUCTION
Invariably Intelligent Transportation System
(ITS) technology is a vital research model that has
attracted so much attention to itself. Automatic
number Plate Recognition (ANPR) systems have
many applications in ITSs, such as the payment of
parking fee, controlling the traffic volume, traffic data
collection, etc. Usually an LPR system consists of
three components that are the license plate detection,
character segmentation and character recognition. The
first part is the most important and basic part which
directly effects system's overall accuracy.
This part is primarily concerned in this paper. To
detect the region of car license plate, many techniques
have been used. In [1] and [2] combination of edge
statistics and mathematical morphology showed very
good results, but it is time consuming and because of
this problem, [3] uses block-base algorithm. In [4] a
novel method called "N row distance" is implemented.
This method scans an image with N row distance and
counts the existent edges. If the number of the edges is
greater than a threshold then the license plate is
recognized, if not threshold have to be reduced and
algorithm will be repeated. This method is fast and
has good results for simple images. Disadvantage of
this paper is that the edge based algorithms are
sensitive to unwanted edges such as noise edges, and
they fail when they are applied to complex images.
Due to this problem, we use the algorithm which is
mentioned in [2] to remove background and noise
edges. In [5] first of all, edges are detected and then
Hough transform is applied to detect the location of
license plate.
This method requires too much computation and
has difficulty in extracting license plate region when
the boundary of the license plate is not clear or
distorted or the images contain lots of vertical and
horizontal edges. A wavelet transform-based
algorithm is used in [6] for extraction of the important
features to be used for license plate location. This
method can locate more than one license plate in an
image. Methods which are symmetry based are
mentioned in [7]. Kim & Chien used symmetric
regions to locate the license plate. This method is a
little time consuming and does not work for rotated or
distorted plates. Park et al. proposed neural networks
to locate license plate [8]. Neural networks can be
used as filters to analyze small windows of an image
and to decide whether each window contains a license
plate or not. Their inputs are HSI values and colors are
changed under different illuminations and it makes
some troubles. Fuzzy logic has been applied to the
problem of locating license plate by Zimic et al. [9].
The authors made some intuitive rules to describe the
license plate, and gave some membership functions
for the fuzzy sets „„bright‟‟, „„dark‟‟ and „„bright and
dark sequence‟‟ to get the horizontal and vertical plate
positions. From authors' point of view, by extending
or changing the rules, the system can easily be
adapted to locate other patterns.
In this paper first, we find the total vertical edges
in the image, second we use the proposed algorithm in
[2]. By using this algorithm we remove the noise and
car edges. Then we use a new method to find a strip as
a candidate. Afterwards, morphological operations are
applied to detect the license plate. Finally, size of the
plate is compared with the aspect ratio and if it is
unacceptable the candidate strip will be deleted and
the algorithm will be repeated. Fig. 1 shows the
overview of the proposed system, which consists of
four sections. In the next section, we describe the
algorithm in detail. The experiment results are shown
in section 3. Section 4 gives the conclusion.
RESEARCH ARTICLE OPEN ACCESS
Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108
www.ijera.com 106 | P a g e
Figure 1. The system
 Vertical edge extraction
 Background curve and noise removing
 Edge statistical analysis
 Morphology-based license plate extraction
II. LICENSE PLATE EXTRACTION
As shown in Fig. 1, the technique for the license
plate detection consists of four sections. In the first
section, we find the vertical edges. In the second
section, we use an algorithm for Background curves
and noise removing. Then we apply a new method to
find the first strip as a candidate. Finally by
morphological operations, the license plate will be
detected. These steps will be described in detail in this
section according to the processing order.
2.1. Vertical Edge Extraction
In an image, ROIs are rectangular regions with
white background and dark characters. The most
important characteristic of these rectangles is the
existence of lots of edges. In Fig. 2 we show the
horizontal edge and vertical edge images. Based on
this image, vertical edge images are better for next
processing. There are many edge detectors such as
Sobel, Canny and Prewitt. We use Sobel as an edge
detector. This operator is shown in Fig. 3.
B. Background curve and noise removing
In this section we remove short and long edges by
the proposed algorithm mentioned in [2]. Short edges
are due to the noise, and long edges are due to the car
and background. This algorithm only requires us to
scan the edge image for three times. The first scan will
record the edge lengths away from the top (or left)
start points. And the second scan will record the edge
lengths away from the bottom (or right) end points.
And the last scan will add up the two kinds of lengths
to denote the actual edge lengths.
(a)
(b) (c)
Figure 2. (a) Original image (b) Vertical edges image
(c) Horizontal edges image
Figure 3. The vertical Sobel operator
Figure 4. The image after applying the algorithm
mentioned in [2]
In this algorithm we have two parameters as
thresholds, Tlong and Tshort. Tlong is related to the
estimated height of the license plate, and Tshort is
shorter than most of the lengths of the plate edges. For
our database Tlong=30 and Tshort=5. Fig. 4 shows the
result of the algorithm. As it can be seen, lots of
inutile edges are removed.
2.3. Edge Statistical Analysis
In this step, we are trying to find a strip that contains
the license plate. First we divide the image into strips
with height of 'L' pixels. 'L' is the maximum height of
the license plate in the database. Then we count the
edges in the strips. The result of these computations
has been shown in Fig. 5. Now we find the strip with
maximum edges and add the upper and lower strip to
it. The result is shown in Fig. 6. After finding these 3
strips, we find the row 'r' which contains maximum
edges. Then let lower_pointer=r+1 and
upper_pointer=r-1. Now in a loop we will change
pointers to the value which the license plate exists
between two pointers. The algorithm for this loop
mentioned in TABLE I.
Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108
www.ijera.com 107 | P a g e
Figure 5. Number of the edges per each strip
Figure 6. Three strips with maximum number of
edges
TABLE I. STRIP FINDING PSEUDOCODE
Input= Vector ROW
_____________________________________
____
while (lower_pointer-upper_pointer != L)
{
T1= sum( ROW( upper_pointer-Tshort:upper_pointer
) );
T2= sum( ROW( lower_pointer:lower_pointer+Tshort
) );
if T1>=T2
upper_pointer= upper_pointer-1;
else
lower_pointer= lower_pointer+1;
}
Where 'ROW' is a vector which contains the number
of the edges in each row of the strips. Length of the
vector
'ROW' is equal to 3×L. This loop continues till:
lower_pointer - upper_pointer = L;
By this algorithm we find the strip which contains the
license plate. The result is shown in Fig. 7.
Figure 7. The candidate strip
2.4. Morphology-Based License Plate Extraction
In this step we connect edges together by morphological
operators and then we compare the candidate with the
aspect ratio. We use dilation operator for three times.
First a horizontal dilation, after that a vertical dilation
and at last, again a horizontal dilation. By these
operations we connect edges of existent license plate
together. Result of these operations is shown in Fig.
8.Now we search for the biggest white strip in the region
and set it as first candidate then, we compare it to the
aspect ratio. If its dimensions are not close to aspect
ratio, we delete this region from vertical edges image and
repeat the above algorithm, if not, the first candidate is
acceptable and the algorithm is finished. Final result is
shown in Fig. 9.
(a)
(b)
(c)
Figure 8. (a) First horizontal dilation, (b) First vertical
dilation, (c) Second horizontal dilation
Figure 9. The final result
III. EXPERIMENTAL RESULTS
Our algorithm was tested with 310 natural color
images of size 640×480 and 1792×1312 on Greek
license plates. The images contain different complex
background and ambient illumination. Also the
distance between camera and license plate, and the
angle of the license plate were different. The database
is available on:
http://www.medialab.ntua.gr/research/LPRdatabase.ht
ml
By our proposed algorithm, in 262 images of total 312
images, the license plate extraction leads to correct
results. It means that the proposed algorithm can
detect the license plate with about 84% accuracy. We
implant our code on MATLAB software. Most of the
mistakes happened because of the blur images and
dirty cars. This method is a little time consuming. In
Fig. 10 some experimental results are shown. Also, we
note that the proposed method in this paper is used in
[10] for license plate character recognition.
Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108
www.ijera.com 108 | P a g e
Figure 10. Some experimental results
IV. CONCLUSION
In this paper, Adaptive Automatic Number Plate
Recognition (ANPR) and Extraction from complex
Images is explored via vertical edge extraction,
background curve and noise removing, edge statistical
analysis and morphology- based license plate
extraction. Though Edge base detection is noise
sensitive, we demonstrated an new methodology for
reduction of noise scale in complex images a, future
more experiments are needed to be done with
consideration of database comparisons.
REFERENCES
[1] B. Hongliang and L. Changping, “A hybrid
license plate extraction method based on edge
statistics and morphology,” in Proc. ICPR, pp.
831-834, 2004.
[2] D. Zheng, Y. Zhao, and J. Wang, “An
efficient method of license plate location,”
Pattern Recognition. Lett., vol. 26, no.15, pp.
2431-2438, Nov. 2005.
[3] H.J. Lee, S.Y. Chen, and S.Z. Wang,
“Extraction and recognition of license plates
of motorcycles and vehicles on highways,” in
Proc. ICPR, pp. 356-359, 2004.
[4] A. Broumandnia and M. Fathy, “Application
of pattern recognition for Farsi license plate
recognition,” presented at the ICGST Int.
Conf. Graphics, Vision and Image Processing
(GVIP), Dec. 2005. [Online]. Available:
http://www.icgst.com/gvip/v2/P1150439001.p
df
[5] T. D. Duan, T. L. Hong Du, T. V. Phuoc and
N. V. Hoang, “Building an automatic vehicle
license plate recognition system,” in Proc. Int.
Conf. Comput. Sci. RIVF, pp. 59-63, 2005.
[6] C.T. Hsieh, Y.S Juan, and K.M. Hung,
“Multiple license plate detection for complex
background,” in Proc. Int. Conf. AINA, vol. 2,
pp. 389-392, 2005.
[7] D.S. Kim and S.I. Chien, “Automatic car
license plate extraction using modified
generalized symmetry transform and image
warping,” in Proc. ISIE, pp. 2022-2027, 2001.
[8] S.H. Park, K.I. Kim, and H.J. Kim, “Locating
car license plate using neural networks,”
Electron. Lett., vol. 35, no.17, pp. 1475- 1477,
2005.
[9] N. Zimic, J. Ficzko, M. Mraz and J. Virant,
“The fuzzy logic approach to car number plate
locating problem,” in Proc. Intelligent
Information Systems, pp. 227-230, 1997.
[10] A. Ebrahimi and A. Raie, “License Plate
Character Recognition Using Multiclass
SVM,” J Am Sci, vol. 8, no. 1s, pp. 38-43,
2012.

More Related Content

What's hot

A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...journal ijrtem
 
Polygon filling
Polygon fillingPolygon filling
Polygon fillingAnkit Garg
 
Lecture filling algorithms
Lecture  filling algorithmsLecture  filling algorithms
Lecture filling algorithmsavelraj
 
Path Finding Solutions For Grid Based Graph
Path Finding Solutions For Grid Based GraphPath Finding Solutions For Grid Based Graph
Path Finding Solutions For Grid Based Graphacijjournal
 
License plate recognition
License plate recognitionLicense plate recognition
License plate recognitionrahul bhambri
 
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeA Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeIOSR Journals
 
The Framework of Image Recognition based on Modified Freeman Chain Code
The Framework of Image Recognition based on Modified Freeman Chain CodeThe Framework of Image Recognition based on Modified Freeman Chain Code
The Framework of Image Recognition based on Modified Freeman Chain CodeCSCJournals
 
Fill area algorithms
Fill area algorithmsFill area algorithms
Fill area algorithmsKumar
 
SHARP - A parallel algorithm for shape recognition
SHARP - A parallel algorithm for shape recognitionSHARP - A parallel algorithm for shape recognition
SHARP - A parallel algorithm for shape recognitionLeonardo Arcari
 
Automatic Vehicle Detection Using Pixelwise Classification Approach
Automatic Vehicle Detection Using Pixelwise Classification ApproachAutomatic Vehicle Detection Using Pixelwise Classification Approach
Automatic Vehicle Detection Using Pixelwise Classification ApproachIOSR Journals
 
Bangla Optical Digits Recognition using Edge Detection Method
Bangla Optical Digits Recognition using Edge Detection MethodBangla Optical Digits Recognition using Edge Detection Method
Bangla Optical Digits Recognition using Edge Detection MethodIOSR Journals
 
Automatic vehicle license plate detection using VEDA
Automatic vehicle license plate detection using VEDAAutomatic vehicle license plate detection using VEDA
Automatic vehicle license plate detection using VEDARojith Thomas
 
Hidden line removal algorithm
Hidden line removal algorithmHidden line removal algorithm
Hidden line removal algorithmKKARUNKARTHIK
 

What's hot (19)

A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
 
CAD/CAM/CAE - Notes
CAD/CAM/CAE - NotesCAD/CAM/CAE - Notes
CAD/CAM/CAE - Notes
 
Ay36304310
Ay36304310Ay36304310
Ay36304310
 
Polygon filling
Polygon fillingPolygon filling
Polygon filling
 
Lecture filling algorithms
Lecture  filling algorithmsLecture  filling algorithms
Lecture filling algorithms
 
Path Finding Solutions For Grid Based Graph
Path Finding Solutions For Grid Based GraphPath Finding Solutions For Grid Based Graph
Path Finding Solutions For Grid Based Graph
 
License plate recognition
License plate recognitionLicense plate recognition
License plate recognition
 
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeA Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
 
The Framework of Image Recognition based on Modified Freeman Chain Code
The Framework of Image Recognition based on Modified Freeman Chain CodeThe Framework of Image Recognition based on Modified Freeman Chain Code
The Framework of Image Recognition based on Modified Freeman Chain Code
 
Polygon filling
Polygon fillingPolygon filling
Polygon filling
 
Ep34870876
Ep34870876Ep34870876
Ep34870876
 
Fill area algorithms
Fill area algorithmsFill area algorithms
Fill area algorithms
 
SHARP - A parallel algorithm for shape recognition
SHARP - A parallel algorithm for shape recognitionSHARP - A parallel algorithm for shape recognition
SHARP - A parallel algorithm for shape recognition
 
Automatic Vehicle Detection Using Pixelwise Classification Approach
Automatic Vehicle Detection Using Pixelwise Classification ApproachAutomatic Vehicle Detection Using Pixelwise Classification Approach
Automatic Vehicle Detection Using Pixelwise Classification Approach
 
Bangla Optical Digits Recognition using Edge Detection Method
Bangla Optical Digits Recognition using Edge Detection MethodBangla Optical Digits Recognition using Edge Detection Method
Bangla Optical Digits Recognition using Edge Detection Method
 
Thesis summary
Thesis summaryThesis summary
Thesis summary
 
Automatic vehicle license plate detection using VEDA
Automatic vehicle license plate detection using VEDAAutomatic vehicle license plate detection using VEDA
Automatic vehicle license plate detection using VEDA
 
Fb4301931934
Fb4301931934Fb4301931934
Fb4301931934
 
Hidden line removal algorithm
Hidden line removal algorithmHidden line removal algorithm
Hidden line removal algorithm
 

Viewers also liked

Reprogramación actividades instructivo_2013_ii_
Reprogramación actividades instructivo_2013_ii_Reprogramación actividades instructivo_2013_ii_
Reprogramación actividades instructivo_2013_ii_Facultad de Educación
 
Trabajo nº3 Taller de Herramientas Informáticas
Trabajo nº3 Taller de Herramientas InformáticasTrabajo nº3 Taller de Herramientas Informáticas
Trabajo nº3 Taller de Herramientas InformáticasConstanza
 
Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...
Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...
Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...B & M Co., Ltd.
 
Confesiunea unei mame de psihopat problema americii nu sunt armele
Confesiunea unei mame de psihopat problema americii nu sunt armeleConfesiunea unei mame de psihopat problema americii nu sunt armele
Confesiunea unei mame de psihopat problema americii nu sunt armeleBiro Bela
 
Segovirra noviembre
Segovirra noviembreSegovirra noviembre
Segovirra noviembrempe21
 
Dynamic behaviour of hydraulic pressure relief valve
Dynamic behaviour of hydraulic pressure relief valveDynamic behaviour of hydraulic pressure relief valve
Dynamic behaviour of hydraulic pressure relief valveIAEME Publication
 
1 Tsu 津市, Tsu-shi MIE by ©Francisco Barberá in Japan
1 Tsu  津市, Tsu-shi  MIE   by ©Francisco Barberá in Japan  1 Tsu  津市, Tsu-shi  MIE   by ©Francisco Barberá in Japan
1 Tsu 津市, Tsu-shi MIE by ©Francisco Barberá in Japan B & M Co., Ltd.
 
Tugas presentasi biologi x 2
Tugas presentasi biologi x 2Tugas presentasi biologi x 2
Tugas presentasi biologi x 2Aseng Budiman
 
خمسون نصيحة لكل ولي امر
خمسون نصيحة لكل ولي امرخمسون نصيحة لكل ولي امر
خمسون نصيحة لكل ولي امرMoemen Arafa
 
Музыкальный кроссворд
Музыкальный кроссвордМузыкальный кроссворд
Музыкальный кроссвордnota35
 
Horaiji temple y horaisan Houraiji templo Houraiji Aiche-ken by Paco Barberá
Horaiji temple  y horaisan Houraiji templo  Houraiji Aiche-ken by Paco BarberáHoraiji temple  y horaisan Houraiji templo  Houraiji Aiche-ken by Paco Barberá
Horaiji temple y horaisan Houraiji templo Houraiji Aiche-ken by Paco BarberáB & M Co., Ltd.
 
Δύο μικρές παραβολές
Δύο μικρές παραβολέςΔύο μικρές παραβολές
Δύο μικρές παραβολέςIrene Dim
 
A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...
A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...
A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...IJERA Editor
 

Viewers also liked (20)

Trabajo 2
Trabajo 2Trabajo 2
Trabajo 2
 
Reprogramación actividades instructivo_2013_ii_
Reprogramación actividades instructivo_2013_ii_Reprogramación actividades instructivo_2013_ii_
Reprogramación actividades instructivo_2013_ii_
 
Division
DivisionDivision
Division
 
Potenciacion
PotenciacionPotenciacion
Potenciacion
 
Personal Statement
Personal StatementPersonal Statement
Personal Statement
 
Trabajo nº3 Taller de Herramientas Informáticas
Trabajo nº3 Taller de Herramientas InformáticasTrabajo nº3 Taller de Herramientas Informáticas
Trabajo nº3 Taller de Herramientas Informáticas
 
Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...
Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...
Felicitaciones Navidad amigos/as Facebook Christmas greetings friends as Face...
 
Confesiunea unei mame de psihopat problema americii nu sunt armele
Confesiunea unei mame de psihopat problema americii nu sunt armeleConfesiunea unei mame de psihopat problema americii nu sunt armele
Confesiunea unei mame de psihopat problema americii nu sunt armele
 
Yang baru
Yang baruYang baru
Yang baru
 
Segovirra noviembre
Segovirra noviembreSegovirra noviembre
Segovirra noviembre
 
Dynamic behaviour of hydraulic pressure relief valve
Dynamic behaviour of hydraulic pressure relief valveDynamic behaviour of hydraulic pressure relief valve
Dynamic behaviour of hydraulic pressure relief valve
 
1 Tsu 津市, Tsu-shi MIE by ©Francisco Barberá in Japan
1 Tsu  津市, Tsu-shi  MIE   by ©Francisco Barberá in Japan  1 Tsu  津市, Tsu-shi  MIE   by ©Francisco Barberá in Japan
1 Tsu 津市, Tsu-shi MIE by ©Francisco Barberá in Japan
 
Investmen in stock jobsheet
Investmen in stock jobsheetInvestmen in stock jobsheet
Investmen in stock jobsheet
 
Tugas presentasi biologi x 2
Tugas presentasi biologi x 2Tugas presentasi biologi x 2
Tugas presentasi biologi x 2
 
خمسون نصيحة لكل ولي امر
خمسون نصيحة لكل ولي امرخمسون نصيحة لكل ولي امر
خمسون نصيحة لكل ولي امر
 
Музыкальный кроссворд
Музыкальный кроссвордМузыкальный кроссворд
Музыкальный кроссворд
 
Horaiji temple y horaisan Houraiji templo Houraiji Aiche-ken by Paco Barberá
Horaiji temple  y horaisan Houraiji templo  Houraiji Aiche-ken by Paco BarberáHoraiji temple  y horaisan Houraiji templo  Houraiji Aiche-ken by Paco Barberá
Horaiji temple y horaisan Houraiji templo Houraiji Aiche-ken by Paco Barberá
 
dani
danidani
dani
 
Δύο μικρές παραβολές
Δύο μικρές παραβολέςΔύο μικρές παραβολές
Δύο μικρές παραβολές
 
A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...
A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...
A Modified C-Dump Converter for BLDC Machine Used in a Flywheel Energy Storag...
 

Similar to Research on License Plate Recognition and Extraction from complicated Images

Tracking number plate from vehicle using
Tracking number plate from vehicle usingTracking number plate from vehicle using
Tracking number plate from vehicle usingijfcstjournal
 
Number Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking SystemNumber Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking SystemIRJET Journal
 
Smart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image ProcessingSmart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image Processingijsrd.com
 
License Plate Recognition using Morphological Operation.
License Plate Recognition using Morphological Operation. License Plate Recognition using Morphological Operation.
License Plate Recognition using Morphological Operation. Amitava Choudhury
 
Iaetsd heuristics to detect and extract license plates
Iaetsd heuristics to detect and extract license platesIaetsd heuristics to detect and extract license plates
Iaetsd heuristics to detect and extract license platesIaetsd Iaetsd
 
Automatic Number Plate Recognition System (ANPR) A Survey.pdf
Automatic Number Plate Recognition System (ANPR)  A Survey.pdfAutomatic Number Plate Recognition System (ANPR)  A Survey.pdf
Automatic Number Plate Recognition System (ANPR) A Survey.pdfTina Gabel
 
Automatic Number Plate Recognition System A Histogram Based Approach
Automatic Number Plate Recognition System  A Histogram Based ApproachAutomatic Number Plate Recognition System  A Histogram Based Approach
Automatic Number Plate Recognition System A Histogram Based ApproachJoe Osborn
 
Automatic License Plate Recognition Using Optical Character Recognition Based...
Automatic License Plate Recognition Using Optical Character Recognition Based...Automatic License Plate Recognition Using Optical Character Recognition Based...
Automatic License Plate Recognition Using Optical Character Recognition Based...IJARIIE JOURNAL
 
A Novel Multiple License Plate Extraction Technique for Complex Background in...
A Novel Multiple License Plate Extraction Technique for Complex Background in...A Novel Multiple License Plate Extraction Technique for Complex Background in...
A Novel Multiple License Plate Extraction Technique for Complex Background in...CSCJournals
 
A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...
A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...
A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...cscpconf
 
Automatic license plate recognition system for indian vehicle identification ...
Automatic license plate recognition system for indian vehicle identification ...Automatic license plate recognition system for indian vehicle identification ...
Automatic license plate recognition system for indian vehicle identification ...Kuntal Bhowmick
 
An Approach for Benin Automatic Licence Plate Recognition
An Approach for Benin Automatic Licence Plate RecognitionAn Approach for Benin Automatic Licence Plate Recognition
An Approach for Benin Automatic Licence Plate RecognitionCSCJournals
 
Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...
Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...
Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...AneeshD5
 
A Survey on License Plate Recognition System
A Survey on License Plate Recognition SystemA Survey on License Plate Recognition System
A Survey on License Plate Recognition SystemIJARIIE JOURNAL
 
21.Demir.pdf
21.Demir.pdf21.Demir.pdf
21.Demir.pdfFaSu6
 
Vertical-Edge-Based Car-License-Plate Detection Method
Vertical-Edge-Based Car-License-Plate Detection MethodVertical-Edge-Based Car-License-Plate Detection Method
Vertical-Edge-Based Car-License-Plate Detection MethodIOSRJEEE
 
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...IJRTEMJOURNAL
 
The review on automatic license plate recognition (alpr)
The review on automatic license plate recognition (alpr)The review on automatic license plate recognition (alpr)
The review on automatic license plate recognition (alpr)eSAT Journals
 
The review on automatic license plate recognition
The review on automatic license plate recognitionThe review on automatic license plate recognition
The review on automatic license plate recognitioneSAT Publishing House
 

Similar to Research on License Plate Recognition and Extraction from complicated Images (20)

Tracking number plate from vehicle using
Tracking number plate from vehicle usingTracking number plate from vehicle using
Tracking number plate from vehicle using
 
Number Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking SystemNumber Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking System
 
Smart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image ProcessingSmart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image Processing
 
License Plate Recognition using Morphological Operation.
License Plate Recognition using Morphological Operation. License Plate Recognition using Morphological Operation.
License Plate Recognition using Morphological Operation.
 
Iaetsd heuristics to detect and extract license plates
Iaetsd heuristics to detect and extract license platesIaetsd heuristics to detect and extract license plates
Iaetsd heuristics to detect and extract license plates
 
Automatic Number Plate Recognition System (ANPR) A Survey.pdf
Automatic Number Plate Recognition System (ANPR)  A Survey.pdfAutomatic Number Plate Recognition System (ANPR)  A Survey.pdf
Automatic Number Plate Recognition System (ANPR) A Survey.pdf
 
Automatic Number Plate Recognition System A Histogram Based Approach
Automatic Number Plate Recognition System  A Histogram Based ApproachAutomatic Number Plate Recognition System  A Histogram Based Approach
Automatic Number Plate Recognition System A Histogram Based Approach
 
E011142632
E011142632E011142632
E011142632
 
Automatic License Plate Recognition Using Optical Character Recognition Based...
Automatic License Plate Recognition Using Optical Character Recognition Based...Automatic License Plate Recognition Using Optical Character Recognition Based...
Automatic License Plate Recognition Using Optical Character Recognition Based...
 
A Novel Multiple License Plate Extraction Technique for Complex Background in...
A Novel Multiple License Plate Extraction Technique for Complex Background in...A Novel Multiple License Plate Extraction Technique for Complex Background in...
A Novel Multiple License Plate Extraction Technique for Complex Background in...
 
A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...
A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...
A Much Advanced and Efficient Lane Detection Algorithm for Intelligent Highwa...
 
Automatic license plate recognition system for indian vehicle identification ...
Automatic license plate recognition system for indian vehicle identification ...Automatic license plate recognition system for indian vehicle identification ...
Automatic license plate recognition system for indian vehicle identification ...
 
An Approach for Benin Automatic Licence Plate Recognition
An Approach for Benin Automatic Licence Plate RecognitionAn Approach for Benin Automatic Licence Plate Recognition
An Approach for Benin Automatic Licence Plate Recognition
 
Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...
Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...
Big_data_oriented_novel_background_subtraction_algorithm_for_urban_surveillan...
 
A Survey on License Plate Recognition System
A Survey on License Plate Recognition SystemA Survey on License Plate Recognition System
A Survey on License Plate Recognition System
 
21.Demir.pdf
21.Demir.pdf21.Demir.pdf
21.Demir.pdf
 
Vertical-Edge-Based Car-License-Plate Detection Method
Vertical-Edge-Based Car-License-Plate Detection MethodVertical-Edge-Based Car-License-Plate Detection Method
Vertical-Edge-Based Car-License-Plate Detection Method
 
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
A Study on Single Camera Based ANPR System for Improvement of Vehicle Number ...
 
The review on automatic license plate recognition (alpr)
The review on automatic license plate recognition (alpr)The review on automatic license plate recognition (alpr)
The review on automatic license plate recognition (alpr)
 
The review on automatic license plate recognition
The review on automatic license plate recognitionThe review on automatic license plate recognition
The review on automatic license plate recognition
 

Recently uploaded

Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 

Recently uploaded (20)

Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 

Research on License Plate Recognition and Extraction from complicated Images

  • 1. Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108 www.ijera.com 105 | P a g e Research on License Plate Recognition and Extraction from complicated Images Velamuri.Rohini.Mitravinda *, Damodara V V S Phani Kumar ** *(Department of Computer Science, RISE Prakasam Group of Institutions,Vallur, Ongole., India) ** (Department of Computer Science, RISE Prakasam Group of Institutions,Vallur, Ongole., India) ABSTRACT Vehicle number plate recognition has attracted many researchers for intelligent transportation systems such as the payment of parking fee, controlling the traffic volume, traffic data collection, etc. We are presenting an enhanced license plate extraction methodology which includes edge statistics and the morphology. The proposed methodology includes vertical edge extraction, background curve and noise removing, edge statistical analysis and morphology-based license plate extraction. Keywords- intelligent transportation systems; license plate extraction; edge detection; morphology I. INTRODUCTION Invariably Intelligent Transportation System (ITS) technology is a vital research model that has attracted so much attention to itself. Automatic number Plate Recognition (ANPR) systems have many applications in ITSs, such as the payment of parking fee, controlling the traffic volume, traffic data collection, etc. Usually an LPR system consists of three components that are the license plate detection, character segmentation and character recognition. The first part is the most important and basic part which directly effects system's overall accuracy. This part is primarily concerned in this paper. To detect the region of car license plate, many techniques have been used. In [1] and [2] combination of edge statistics and mathematical morphology showed very good results, but it is time consuming and because of this problem, [3] uses block-base algorithm. In [4] a novel method called "N row distance" is implemented. This method scans an image with N row distance and counts the existent edges. If the number of the edges is greater than a threshold then the license plate is recognized, if not threshold have to be reduced and algorithm will be repeated. This method is fast and has good results for simple images. Disadvantage of this paper is that the edge based algorithms are sensitive to unwanted edges such as noise edges, and they fail when they are applied to complex images. Due to this problem, we use the algorithm which is mentioned in [2] to remove background and noise edges. In [5] first of all, edges are detected and then Hough transform is applied to detect the location of license plate. This method requires too much computation and has difficulty in extracting license plate region when the boundary of the license plate is not clear or distorted or the images contain lots of vertical and horizontal edges. A wavelet transform-based algorithm is used in [6] for extraction of the important features to be used for license plate location. This method can locate more than one license plate in an image. Methods which are symmetry based are mentioned in [7]. Kim & Chien used symmetric regions to locate the license plate. This method is a little time consuming and does not work for rotated or distorted plates. Park et al. proposed neural networks to locate license plate [8]. Neural networks can be used as filters to analyze small windows of an image and to decide whether each window contains a license plate or not. Their inputs are HSI values and colors are changed under different illuminations and it makes some troubles. Fuzzy logic has been applied to the problem of locating license plate by Zimic et al. [9]. The authors made some intuitive rules to describe the license plate, and gave some membership functions for the fuzzy sets „„bright‟‟, „„dark‟‟ and „„bright and dark sequence‟‟ to get the horizontal and vertical plate positions. From authors' point of view, by extending or changing the rules, the system can easily be adapted to locate other patterns. In this paper first, we find the total vertical edges in the image, second we use the proposed algorithm in [2]. By using this algorithm we remove the noise and car edges. Then we use a new method to find a strip as a candidate. Afterwards, morphological operations are applied to detect the license plate. Finally, size of the plate is compared with the aspect ratio and if it is unacceptable the candidate strip will be deleted and the algorithm will be repeated. Fig. 1 shows the overview of the proposed system, which consists of four sections. In the next section, we describe the algorithm in detail. The experiment results are shown in section 3. Section 4 gives the conclusion. RESEARCH ARTICLE OPEN ACCESS
  • 2. Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108 www.ijera.com 106 | P a g e Figure 1. The system  Vertical edge extraction  Background curve and noise removing  Edge statistical analysis  Morphology-based license plate extraction II. LICENSE PLATE EXTRACTION As shown in Fig. 1, the technique for the license plate detection consists of four sections. In the first section, we find the vertical edges. In the second section, we use an algorithm for Background curves and noise removing. Then we apply a new method to find the first strip as a candidate. Finally by morphological operations, the license plate will be detected. These steps will be described in detail in this section according to the processing order. 2.1. Vertical Edge Extraction In an image, ROIs are rectangular regions with white background and dark characters. The most important characteristic of these rectangles is the existence of lots of edges. In Fig. 2 we show the horizontal edge and vertical edge images. Based on this image, vertical edge images are better for next processing. There are many edge detectors such as Sobel, Canny and Prewitt. We use Sobel as an edge detector. This operator is shown in Fig. 3. B. Background curve and noise removing In this section we remove short and long edges by the proposed algorithm mentioned in [2]. Short edges are due to the noise, and long edges are due to the car and background. This algorithm only requires us to scan the edge image for three times. The first scan will record the edge lengths away from the top (or left) start points. And the second scan will record the edge lengths away from the bottom (or right) end points. And the last scan will add up the two kinds of lengths to denote the actual edge lengths. (a) (b) (c) Figure 2. (a) Original image (b) Vertical edges image (c) Horizontal edges image Figure 3. The vertical Sobel operator Figure 4. The image after applying the algorithm mentioned in [2] In this algorithm we have two parameters as thresholds, Tlong and Tshort. Tlong is related to the estimated height of the license plate, and Tshort is shorter than most of the lengths of the plate edges. For our database Tlong=30 and Tshort=5. Fig. 4 shows the result of the algorithm. As it can be seen, lots of inutile edges are removed. 2.3. Edge Statistical Analysis In this step, we are trying to find a strip that contains the license plate. First we divide the image into strips with height of 'L' pixels. 'L' is the maximum height of the license plate in the database. Then we count the edges in the strips. The result of these computations has been shown in Fig. 5. Now we find the strip with maximum edges and add the upper and lower strip to it. The result is shown in Fig. 6. After finding these 3 strips, we find the row 'r' which contains maximum edges. Then let lower_pointer=r+1 and upper_pointer=r-1. Now in a loop we will change pointers to the value which the license plate exists between two pointers. The algorithm for this loop mentioned in TABLE I.
  • 3. Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108 www.ijera.com 107 | P a g e Figure 5. Number of the edges per each strip Figure 6. Three strips with maximum number of edges TABLE I. STRIP FINDING PSEUDOCODE Input= Vector ROW _____________________________________ ____ while (lower_pointer-upper_pointer != L) { T1= sum( ROW( upper_pointer-Tshort:upper_pointer ) ); T2= sum( ROW( lower_pointer:lower_pointer+Tshort ) ); if T1>=T2 upper_pointer= upper_pointer-1; else lower_pointer= lower_pointer+1; } Where 'ROW' is a vector which contains the number of the edges in each row of the strips. Length of the vector 'ROW' is equal to 3×L. This loop continues till: lower_pointer - upper_pointer = L; By this algorithm we find the strip which contains the license plate. The result is shown in Fig. 7. Figure 7. The candidate strip 2.4. Morphology-Based License Plate Extraction In this step we connect edges together by morphological operators and then we compare the candidate with the aspect ratio. We use dilation operator for three times. First a horizontal dilation, after that a vertical dilation and at last, again a horizontal dilation. By these operations we connect edges of existent license plate together. Result of these operations is shown in Fig. 8.Now we search for the biggest white strip in the region and set it as first candidate then, we compare it to the aspect ratio. If its dimensions are not close to aspect ratio, we delete this region from vertical edges image and repeat the above algorithm, if not, the first candidate is acceptable and the algorithm is finished. Final result is shown in Fig. 9. (a) (b) (c) Figure 8. (a) First horizontal dilation, (b) First vertical dilation, (c) Second horizontal dilation Figure 9. The final result III. EXPERIMENTAL RESULTS Our algorithm was tested with 310 natural color images of size 640×480 and 1792×1312 on Greek license plates. The images contain different complex background and ambient illumination. Also the distance between camera and license plate, and the angle of the license plate were different. The database is available on: http://www.medialab.ntua.gr/research/LPRdatabase.ht ml By our proposed algorithm, in 262 images of total 312 images, the license plate extraction leads to correct results. It means that the proposed algorithm can detect the license plate with about 84% accuracy. We implant our code on MATLAB software. Most of the mistakes happened because of the blur images and dirty cars. This method is a little time consuming. In Fig. 10 some experimental results are shown. Also, we note that the proposed method in this paper is used in [10] for license plate character recognition.
  • 4. Velamuri.Rohini.Mitravinda Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 10( Part - 6), October 2014, pp.105-108 www.ijera.com 108 | P a g e Figure 10. Some experimental results IV. CONCLUSION In this paper, Adaptive Automatic Number Plate Recognition (ANPR) and Extraction from complex Images is explored via vertical edge extraction, background curve and noise removing, edge statistical analysis and morphology- based license plate extraction. Though Edge base detection is noise sensitive, we demonstrated an new methodology for reduction of noise scale in complex images a, future more experiments are needed to be done with consideration of database comparisons. REFERENCES [1] B. Hongliang and L. Changping, “A hybrid license plate extraction method based on edge statistics and morphology,” in Proc. ICPR, pp. 831-834, 2004. [2] D. Zheng, Y. Zhao, and J. Wang, “An efficient method of license plate location,” Pattern Recognition. Lett., vol. 26, no.15, pp. 2431-2438, Nov. 2005. [3] H.J. Lee, S.Y. Chen, and S.Z. Wang, “Extraction and recognition of license plates of motorcycles and vehicles on highways,” in Proc. ICPR, pp. 356-359, 2004. [4] A. Broumandnia and M. Fathy, “Application of pattern recognition for Farsi license plate recognition,” presented at the ICGST Int. Conf. Graphics, Vision and Image Processing (GVIP), Dec. 2005. [Online]. Available: http://www.icgst.com/gvip/v2/P1150439001.p df [5] T. D. Duan, T. L. Hong Du, T. V. Phuoc and N. V. Hoang, “Building an automatic vehicle license plate recognition system,” in Proc. Int. Conf. Comput. Sci. RIVF, pp. 59-63, 2005. [6] C.T. Hsieh, Y.S Juan, and K.M. Hung, “Multiple license plate detection for complex background,” in Proc. Int. Conf. AINA, vol. 2, pp. 389-392, 2005. [7] D.S. Kim and S.I. Chien, “Automatic car license plate extraction using modified generalized symmetry transform and image warping,” in Proc. ISIE, pp. 2022-2027, 2001. [8] S.H. Park, K.I. Kim, and H.J. Kim, “Locating car license plate using neural networks,” Electron. Lett., vol. 35, no.17, pp. 1475- 1477, 2005. [9] N. Zimic, J. Ficzko, M. Mraz and J. Virant, “The fuzzy logic approach to car number plate locating problem,” in Proc. Intelligent Information Systems, pp. 227-230, 1997. [10] A. Ebrahimi and A. Raie, “License Plate Character Recognition Using Multiclass SVM,” J Am Sci, vol. 8, no. 1s, pp. 38-43, 2012.