SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
International Journal of Engineering Research and Development
eISSN : 2278-067X, pISSN : 2278-800X, www.ijerd.com
Volume 2, Issue 4 (July 2012), PP. 35-39

      The Real Time Vechicle License Plate Identification System
                          P.Mohan Kumar1, P.Kumaresan , Dr.S.A.K.Jilani
           1
               School of Information Technology & Engineering (SITE), V.I.T University, Vellore, Tamil Nadu, India
                 Electronics and Communication Engineering Department, MITS, Madanapall, Andhra Pradesh.



Abstract–– In this paper “The Real time vehicle license plate identification system”(RTVLPIS) is developed. This
approach is based on region-props image processing technique available in MATLAB. The method developed in this
paper shows how the license number plate is extracted from the image and how characters are isolated for recognition.
Image processing and pattern recognition is suggested for this simplified RTVLPIS.

Keywords–– region-props, image, license plate, pattern recognition

                                             I.             INTRODUCTION
           Monitoring vehicles for law enforcement and security purposes is a different problem because of the number of
automobiles on the road today. An example of this lies in border patrol .Its time consuming and don‟t practically possible for
an officer to physically check the license plate of the car. Additionally it‟s not feasible to employ a number of police offi cers
to act as fulltime license palate inspectors. Police patrols cannot just drive in their cars starting at the palates of the other
cars. Thus as a solution to this problem there exists a way for detecting an identifying license palate without constant human
intervention This process or development of a method by which we can extract the license plate number of a vehicle from
the image taken is known as vehicle license plate recognition system.(VLDRS).VLDR is also called in different references
.Automatic vehicle car palate recognition, automatic number plate recognition, Optical character recognition for cars.

                                                  II.         OBJECTIVE
           The purpose of this paper is to build a real time application, which recognizes the license plate from cars at gate.
For example at the entrance of the parking area. The system based on regular PC with in camera. Takes pictures of license
plate of the car and process them. Once a license plate is detected and extracted its characters are then isolated. The focus is
on recognition characters of the license palate this process is called optical recognition. The recognized characters are the n
displayed on GUI and checked with the database. Thus the focus is on the design of algorithms used for extracting the
license plate from a single image isolating the characters of the plate and identifying the individual character. The process
flow representation is shown in Fig: 1.


                                                        IMAGE ACQUISITION


                                                           THRESHOLD



                                                        EDGE DECTECTION



                                                         SEGMENTATION



                                                        OPTICAL CHARACTER
                                                         RECOGNITION

                                                         DISPLAY RESULTS
                                                                                        .

                                               Fig 1. Process Flow representation

            III.            PROCESS FLOW REPRESENTATION AND DESCRIPTION.
The flow diagram for the vehicle license plate recognition system is as shown .It consists of the following steps.


                                                                35
The Real Time Vechicle License Plate Identification System

                                      IV.           IMAGE ACQUISITION
           Image acquisition [1] is the first process of the digital image processing for the image acquisition process we are
considering the image acquisition tool in MATLAB as details in .The image acquisition toolbox in matlab extends the mat
lab technical computing environment with functions for acquiring videos & images from PC compatible video devices. The
toolbox connects to and configures the hardware, previews images and videos directly onto MATLAB for analysis and
visualization. Some addition features of image acquisition toolbox include enabling single frame and continuous
acquisitions, simultaneous image acquisition and image processing, logging image data.(Data can be logged to disk memory
or both simultaneously .Its also possible to log each image frame or frames at specified intervals). Data can be logged into
disks as compressed or uncompressed AVI streams. It‟s also possible to extract single images from a video stream and store
them into disks in standard format such as BMP (Bitmap), JPEG (Joint Photographic Expert Group) and TIFF (Tag image
file format) as specified in [2]. This paper supports bitmap and jpeg file format.

A. THRESHOLDING. Image processing is a much more effective when a monochrome image is used. Thus thresholding
procedure is used, for this purpose consider a gray level histogram of an image. The image (i,m) composed of light object s
on dark background in such away that the object and background pixels have gray levels grouped into two dominant modes.
One obvious way to extract the object from background is to select a threshold ' 0' that separates these modes. Then any
point a(m,n) for
a(m,n) >θ is called an object point t, otherwise its called background point.
  Thresholding:
 If a [m, n] >=θ,a [m,n] = object=1
 Else      a [m, n] = background=0
  Thus thresholding is useful when one wants to separate bright objects of interest from a dark background or vice versa.

B.EDGE DETECTION. After the image is threshold the next step is to compute the edges of the license plate. This
operation in effect reduces the amount of information contained in the source image by removing everything but edges in
horizontal and vertical direction. This is highly desirable since its also reduces the number of points Hough transform has to
consider. The threshold image is passed through the parallel sequences in order to get or extract horizontal and vertical
segments respectively. The Hough transformations then produce a list of lines in the form of accumulator cells. These cells
are then analyzed and line segments are computed. Finally the vertical and horizontal cells are combined and any rectangular
regions are matching the dimensions of plate are kept as candidate regions.

C.HOUGH TRANSFORMS, The Hough transform is a method for detecting lines in binary images. This method was
developed as an alternative to the brute force approach of finding lines, which was computationally expensive. The Hough
transformation works by rewriting the general equation for line through (x i,yi)as

                                                   yi = axi+b ----------------- [1]
                                              b = - Xia+yi          ----------------- [2]
In practice above equation [2] is never used since the parameter an approaches infinite as lines becomes vertical. The
following form is used
                                              xcosθ +ysinθ =‟ ρ‟ [ρ – called rho]
Where θ angle between normal to the line and the x-axis and the „ρ „the parameter is the perpendicular distance between the
line and the origin. The range of θ is +/- 22/7 and for an image with resolution of w x h the range of ρ is 0 to √ ( w² + h² ).

D. NOISE ELEMINATION. Images acquired through the image acquisition process may be contaminated by a variety of
noise sources. In our case the image might be distorted due to some of the following reasons improved punching of
characters on metals. Degradation of metallic surface over a period of time presence of external on the license plate due to
which the characters of the license plate may not be easily recognized by optical character recognitions as in [3]. Thus for the
proper functioning and implementation noise elimination is essential as it helps in improving the quality of the image.

E.SEGMENTATION. In the analysis of the object in images its essential that we distinguish between the objects of the
interest ( The characters of the license plate)and the rest .The later group is also referred to the background. The techniques
that are used for finding the objects of interest are also referred as segmentation in [4]. Segmenting the for ground form of
background Image processing there are methods in which inputs are images but the outputs are the attributes extract from
those images. Segmentation is the major step-in that direction segmentation divides the images in to its consistent regions or
objects .The level of subdivision depends on the problem being solved. The segmentation should stop when the object of
interest in an application have been isolated. Segmentation accuracy determines the eventual success or failures of overall
computerized procedures Image segmentation algorithms generally based o two basic properties of intensity values.
Discontinuity and similarity. In the first category the approach is to partition an image based on abrupt changes in intensity
such as edges in an image .The Principle approaches in the second category are based on partitioning an image into regions
that are similar according to a set of predefined criteria.

F. OPTICAL CHARACTER RECOGINITION. The goal of optical character recognition is to classify optical patterns
(often contained in digital image) corresponding to alphabets or digits. The idea behind an implementation of a template
matching based identification scheme is simple. One template pool, comprising of all 26 alphabet letters and 10 numerical
digits is constructed .Once the license plate has been cut in to several characters each image contains a single character is
evaluated in turn in the following way. The normalized correlation coefficient between the image of the character and the
                                                              36
The Real Time Vechicle License Plate Identification System

template that yields the highest coefficient indicates what character is identified.

                                      V.           SOFTWARES INVOLVED
          The MAT Lab VERSION6.0 is doing the implementation of the system MATLAB (Matrix Laboratory) [5]is a
special purpose computer program optimized to perform Engineering and scientific calculations. MATLAB implements mat
lab programming language and provides an extensive library of predefined functions that make technical task more easier
and efficient,. It has more than 100 functions and various toolboxes, which extend their capabilities with many more
functions in various specialties. Advantages of MAT Lab. By using mat lab one can perform algebraic operations such has
addition subtraction multiplication division which are used in the operations on images such as noise reduction by using
averages moment deduction and algebraic masking, geometric transformations, rotations and scaling. Space domain
operation such as histogram modifications (scaling, offset, amplitude change)Non linear point operation s(absolute value
square root, log scale compression edge detection can be performed .Binary image processing as in [7], which includes
theresholding and logic operations, can be performed provision for digital image coding and compression, compression
measures loses compression entropy optimal coding. Mat lab has an image processing toolbox, which provides a
comprehensive suite of reference standard algorithms and graphical tools for image analysis. Image analysis Includes edge
detection segmentation morphology details in[8].

                                  VI.            PRACTICAL APPLICATION
           Real time Vehicle license plate recognition system has a wide range of applications which use the extracted plate
number to create automated solutions for various problems some of them are as follows as detailed in [6]. Parking-The
palate number is used to automatically enter the prepaid numbers and calculate the parking fee for non members by company
entry and exit times. Access control- A gate automatically opens for authorized members a secure area thus replacing or
assisting the security guard .the events are logged on a database and could be use to search the history of events. Tolling-The
license plate number is used to calculate the travel fee on a toll road or it can be use to double check the ticket. Border
control - The car number is registered in the entry or exists to the country and its used to monitor the border crossings
turnaround time and short the typical lines. Stolen cars- A list of stolen cars or un paid fines is used to alert n a passing hot
car he block list can be updated I real time and provide an immediate alarms to the police force.6. Traffic control-The
vehicles can be directed to different lane according to their entry permits. The system effectively reduces the traffic
congestions and number of attendants. The details is represented in figure 2.


                                                          Cameras


                                                     Cars appear check



                                                        Cars appear?



                                                     Car image future



                                                          Networks



                                                 License plate recognition
                                                           system

                                             License plate number and other
                                                   information record



                                                     Other applications

                                               Fig: 2 Process flow representation.

                                                                37
The Real Time Vechicle License Plate Identification System




    Fig 3:      Gray image




  Fig 4:     Threshold image




Fig 5: Number plate extraction




 Fig 6:      Character isolated



           S360CFA
 Fig 7:    Recognized number




               38
The Real Time Vechicle License Plate Identification System




                                                Fig 8: Real Time Recognition.

                                          VII.            CONCLUSION
         The Computationally balanced image processing and pattern recognition for RTVPIS is developed in this paper.
The process deploys the region_prop technique in mat_lab. This new algorithm is suited for various real time applications
such has Parking, Access control, Tolling, Traffic control Stolen cars. This RTVPIS is well suited for real time
implementation.

                                                     REFERENCES
[1].     R. C. Gonzalez and R. E. Woods, Digital Image Processing, Pearson Education Asia, 2002.© 2009 ACADEMY PUBLISHER
[2].     Jhane .Bernd Jhane Digital image processing concepts .
[3].     T Yung Kong, A Zriel Rogel Field Topological Algorithms for Digital Image Processing (machine Intelligence and Pattern
         Recogniztion)
[4].     Digital Image Processing and Application Ioannis Pitos.
[5].     MATLAB version 6.5 Manual
[6].     Hsien-chu WU,Chwei-Shyong TSAI,” A license plate recognition system in E- Government” Information security, an
         International journal Vol 15 No 2 2001 199-210.
[7].     Satadal Saha, Subhadip Basu, Mita Nasipuri, Dipak, Howrah, India “ License Plate Localization from Vehicle Images:An Edge
         Based Multi-stage Approach “International Journal of Recent Trends in Engineering, Vol 1, No. 1, May 2009.
[8].     Kuo-Ming Hung1, and Ching-Tang Hsieh Department of Information Management, Kainan University,“A Real-Time Mobile
         Vehicle License Plate Detection and Recognition “Tamkang Journal of Science and Engineering, Vol. 13, No. 4, pp. 433_442
         (2010).




                                                              39

Weitere ähnliche Inhalte

Was ist angesagt?

Final Thesis Presentation Licenseplaterecognitionincomplexscenes
Final Thesis Presentation LicenseplaterecognitionincomplexscenesFinal Thesis Presentation Licenseplaterecognitionincomplexscenes
Final Thesis Presentation Licenseplaterecognitionincomplexscenesdswazalwar
 
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
 
IRJET - Automatic Licence Plate Detection and Recognition
IRJET -  	  Automatic Licence Plate Detection and RecognitionIRJET -  	  Automatic Licence Plate Detection and Recognition
IRJET - Automatic Licence Plate Detection and RecognitionIRJET Journal
 
Automatic no. plate recognition
Automatic no. plate recognitionAutomatic no. plate recognition
Automatic no. plate recognitionAnjali Mehra
 
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...IRJET Journal
 
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
 
Traffic sign recognition
Traffic sign recognitionTraffic sign recognition
Traffic sign recognitionAKR Education
 
Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...
Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...
Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...IJERA Editor
 
Shot Boundary Detection using Radon Projection Method
Shot Boundary Detection using Radon Projection MethodShot Boundary Detection using Radon Projection Method
Shot Boundary Detection using Radon Projection MethodIDES Editor
 
Facial Expression Recognition Using SVM Classifier
Facial Expression Recognition Using SVM ClassifierFacial Expression Recognition Using SVM Classifier
Facial Expression Recognition Using SVM Classifierijeei-iaes
 
GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...
GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...
GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...sipij
 
IRJET- iSecurity: The AI Surveillance, a Smart Tracking System
IRJET-  	  iSecurity: The AI Surveillance, a Smart Tracking SystemIRJET-  	  iSecurity: The AI Surveillance, a Smart Tracking System
IRJET- iSecurity: The AI Surveillance, a Smart Tracking SystemIRJET Journal
 
Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...
Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...
Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...JANAK TRIVEDI
 
An Intelligent Control System Using an Efficient License Plate Location and R...
An Intelligent Control System Using an Efficient License Plate Location and R...An Intelligent Control System Using an Efficient License Plate Location and R...
An Intelligent Control System Using an Efficient License Plate Location and R...CSCJournals
 
Visual pattern recognition in robotics
Visual pattern recognition in roboticsVisual pattern recognition in robotics
Visual pattern recognition in roboticsIAEME Publication
 
Video indexing using shot boundary detection approach and search tracks
Video indexing using shot boundary detection approach and search tracksVideo indexing using shot boundary detection approach and search tracks
Video indexing using shot boundary detection approach and search tracksIAEME Publication
 

Was ist angesagt? (20)

License plate recognition.
License plate recognition.License plate recognition.
License plate recognition.
 
Final Thesis Presentation Licenseplaterecognitionincomplexscenes
Final Thesis Presentation LicenseplaterecognitionincomplexscenesFinal Thesis Presentation Licenseplaterecognitionincomplexscenes
Final Thesis Presentation Licenseplaterecognitionincomplexscenes
 
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
 
IRJET - Automatic Licence Plate Detection and Recognition
IRJET -  	  Automatic Licence Plate Detection and RecognitionIRJET -  	  Automatic Licence Plate Detection and Recognition
IRJET - Automatic Licence Plate Detection and Recognition
 
Automatic no. plate recognition
Automatic no. plate recognitionAutomatic no. plate recognition
Automatic no. plate recognition
 
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...IRJET-  	  Image based Approach for Indian Fake Note Detection by Dark Channe...
IRJET- Image based Approach for Indian Fake Note Detection by Dark Channe...
 
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
 
Traffic sign recognition
Traffic sign recognitionTraffic sign recognition
Traffic sign recognition
 
Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...
Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...
Design Approach for a Novel Traffic Sign Recognition System by Using LDA and ...
 
Shot Boundary Detection using Radon Projection Method
Shot Boundary Detection using Radon Projection MethodShot Boundary Detection using Radon Projection Method
Shot Boundary Detection using Radon Projection Method
 
Facial Expression Recognition Using SVM Classifier
Facial Expression Recognition Using SVM ClassifierFacial Expression Recognition Using SVM Classifier
Facial Expression Recognition Using SVM Classifier
 
GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...
GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...
GABOR WAVELETS AND MORPHOLOGICAL SHARED WEIGHTED NEURAL NETWORK BASED AUTOMAT...
 
IRJET- iSecurity: The AI Surveillance, a Smart Tracking System
IRJET-  	  iSecurity: The AI Surveillance, a Smart Tracking SystemIRJET-  	  iSecurity: The AI Surveillance, a Smart Tracking System
IRJET- iSecurity: The AI Surveillance, a Smart Tracking System
 
Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...
Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...
Vehicle Counting Module Design in Small Scale for Traffic Management in Smart...
 
PPT s06-machine vision-s2
PPT s06-machine vision-s2PPT s06-machine vision-s2
PPT s06-machine vision-s2
 
MEDICAL IMAGE SEGMENTATION FOR DISEASE DETECTION USING DIGITAL FILTER
MEDICAL IMAGE SEGMENTATION FOR DISEASE DETECTION USING DIGITAL FILTERMEDICAL IMAGE SEGMENTATION FOR DISEASE DETECTION USING DIGITAL FILTER
MEDICAL IMAGE SEGMENTATION FOR DISEASE DETECTION USING DIGITAL FILTER
 
An Intelligent Control System Using an Efficient License Plate Location and R...
An Intelligent Control System Using an Efficient License Plate Location and R...An Intelligent Control System Using an Efficient License Plate Location and R...
An Intelligent Control System Using an Efficient License Plate Location and R...
 
Image processing
Image processingImage processing
Image processing
 
Visual pattern recognition in robotics
Visual pattern recognition in roboticsVisual pattern recognition in robotics
Visual pattern recognition in robotics
 
Video indexing using shot boundary detection approach and search tracks
Video indexing using shot boundary detection approach and search tracksVideo indexing using shot boundary detection approach and search tracks
Video indexing using shot boundary detection approach and search tracks
 

Andere mochten auch

IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 

Andere mochten auch (9)

IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 

Ähnlich wie IJERD (www.ijerd.com) International Journal of Engineering Research and Development

Number plate recogition
Number plate recogitionNumber plate recogition
Number plate recogitionhetvi naik
 
Different Methodologies for Indian License Plate Detection
Different Methodologies for Indian License Plate DetectionDifferent Methodologies for Indian License Plate Detection
Different Methodologies for Indian License Plate DetectionIRJET Journal
 
IRJET - License Plate Recognition
IRJET - License Plate RecognitionIRJET - License Plate Recognition
IRJET - License Plate RecognitionIRJET Journal
 
LICENSE PLATE RECOGNITION
LICENSE PLATE RECOGNITIONLICENSE PLATE RECOGNITION
LICENSE PLATE RECOGNITIONIRJET Journal
 
IRJET- Automatic Number Plate Recognition System in Real Time
IRJET- Automatic Number Plate Recognition System in Real TimeIRJET- Automatic Number Plate Recognition System in Real Time
IRJET- Automatic Number Plate Recognition System in Real TimeIRJET Journal
 
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
 
IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...
IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...
IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...IRJET Journal
 
Licence Plate Recognition Using Supervised Learning and Deep Learning
Licence Plate Recognition Using Supervised Learning and Deep LearningLicence Plate Recognition Using Supervised Learning and Deep Learning
Licence Plate Recognition Using Supervised Learning and Deep LearningIRJET Journal
 
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET Journal
 
A design of license plate recognition system using convolutional neural network
A design of license plate recognition system using convolutional neural networkA design of license plate recognition system using convolutional neural network
A design of license plate recognition system using convolutional neural networkIJECEIAES
 
IRJET- Features Extraction OCR Algorithm in Indian License Plates
IRJET- Features Extraction OCR Algorithm in Indian License PlatesIRJET- Features Extraction OCR Algorithm in Indian License Plates
IRJET- Features Extraction OCR Algorithm in Indian License PlatesIRJET Journal
 
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
 
IRJET - Automatic License Plate Detection using Image Processing
IRJET - Automatic License Plate Detection using Image ProcessingIRJET - Automatic License Plate Detection using Image Processing
IRJET - Automatic License Plate Detection using Image ProcessingIRJET Journal
 
IRJET- Traffic Sign Detection, Recognition and Notification System using ...
IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...
IRJET- Traffic Sign Detection, Recognition and Notification System using ...IRJET Journal
 
License Plate Recognition
License Plate RecognitionLicense Plate Recognition
License Plate RecognitionAmr Rashed
 
AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...
AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...
AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...sipij
 
License plate extraction of overspeeding vehicles
License plate extraction of overspeeding vehiclesLicense plate extraction of overspeeding vehicles
License plate extraction of overspeeding vehicleslambanaveen
 
IRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition SystemIRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition SystemIRJET Journal
 
Deep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident AssistanceDeep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident AssistanceIRJET Journal
 
IRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLAB
IRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLABIRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLAB
IRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLABIRJET Journal
 

Ähnlich wie IJERD (www.ijerd.com) International Journal of Engineering Research and Development (20)

Number plate recogition
Number plate recogitionNumber plate recogition
Number plate recogition
 
Different Methodologies for Indian License Plate Detection
Different Methodologies for Indian License Plate DetectionDifferent Methodologies for Indian License Plate Detection
Different Methodologies for Indian License Plate Detection
 
IRJET - License Plate Recognition
IRJET - License Plate RecognitionIRJET - License Plate Recognition
IRJET - License Plate Recognition
 
LICENSE PLATE RECOGNITION
LICENSE PLATE RECOGNITIONLICENSE PLATE RECOGNITION
LICENSE PLATE RECOGNITION
 
IRJET- Automatic Number Plate Recognition System in Real Time
IRJET- Automatic Number Plate Recognition System in Real TimeIRJET- Automatic Number Plate Recognition System in Real Time
IRJET- Automatic Number Plate Recognition System in Real Time
 
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
 
IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...
IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...
IRJET - Indian Vehicle License Plate Recognition for Vehicle and Owner Identi...
 
Licence Plate Recognition Using Supervised Learning and Deep Learning
Licence Plate Recognition Using Supervised Learning and Deep LearningLicence Plate Recognition Using Supervised Learning and Deep Learning
Licence Plate Recognition Using Supervised Learning and Deep Learning
 
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
 
A design of license plate recognition system using convolutional neural network
A design of license plate recognition system using convolutional neural networkA design of license plate recognition system using convolutional neural network
A design of license plate recognition system using convolutional neural network
 
IRJET- Features Extraction OCR Algorithm in Indian License Plates
IRJET- Features Extraction OCR Algorithm in Indian License PlatesIRJET- Features Extraction OCR Algorithm in Indian License Plates
IRJET- Features Extraction OCR Algorithm in Indian License Plates
 
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...
 
IRJET - Automatic License Plate Detection using Image Processing
IRJET - Automatic License Plate Detection using Image ProcessingIRJET - Automatic License Plate Detection using Image Processing
IRJET - Automatic License Plate Detection using Image Processing
 
IRJET- Traffic Sign Detection, Recognition and Notification System using ...
IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...
IRJET- Traffic Sign Detection, Recognition and Notification System using ...
 
License Plate Recognition
License Plate RecognitionLicense Plate Recognition
License Plate Recognition
 
AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...
AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...
AUTOMATIC IMAGE PROCESSING ENGINE ORIENTED ON QUALITY CONTROL OF ELECTRONIC B...
 
License plate extraction of overspeeding vehicles
License plate extraction of overspeeding vehiclesLicense plate extraction of overspeeding vehicles
License plate extraction of overspeeding vehicles
 
IRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition SystemIRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition System
 
Deep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident AssistanceDeep Learning Based Vehicle Rules Violation Detection and Accident Assistance
Deep Learning Based Vehicle Rules Violation Detection and Accident Assistance
 
IRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLAB
IRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLABIRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLAB
IRJET- Designing of OCR Tool Box for Decoding Vehicle Number Plate using MATLAB
 

Mehr von IJERD Editor

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksIJERD Editor
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEIJERD Editor
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...IJERD Editor
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’IJERD Editor
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignIJERD Editor
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationIJERD Editor
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...IJERD Editor
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRIJERD Editor
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingIJERD Editor
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string valueIJERD Editor
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...IJERD Editor
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeIJERD Editor
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...IJERD Editor
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraIJERD Editor
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...IJERD Editor
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...IJERD Editor
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingIJERD Editor
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...IJERD Editor
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart GridIJERD Editor
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderIJERD Editor
 

Mehr von IJERD Editor (20)

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACE
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding Design
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and Verification
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive Manufacturing
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string value
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF Dxing
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart Grid
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powder
 

Kürzlich hochgeladen

GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 

Kürzlich hochgeladen (20)

GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

IJERD (www.ijerd.com) International Journal of Engineering Research and Development

  • 1. International Journal of Engineering Research and Development eISSN : 2278-067X, pISSN : 2278-800X, www.ijerd.com Volume 2, Issue 4 (July 2012), PP. 35-39 The Real Time Vechicle License Plate Identification System P.Mohan Kumar1, P.Kumaresan , Dr.S.A.K.Jilani 1 School of Information Technology & Engineering (SITE), V.I.T University, Vellore, Tamil Nadu, India Electronics and Communication Engineering Department, MITS, Madanapall, Andhra Pradesh. Abstract–– In this paper “The Real time vehicle license plate identification system”(RTVLPIS) is developed. This approach is based on region-props image processing technique available in MATLAB. The method developed in this paper shows how the license number plate is extracted from the image and how characters are isolated for recognition. Image processing and pattern recognition is suggested for this simplified RTVLPIS. Keywords–– region-props, image, license plate, pattern recognition I. INTRODUCTION Monitoring vehicles for law enforcement and security purposes is a different problem because of the number of automobiles on the road today. An example of this lies in border patrol .Its time consuming and don‟t practically possible for an officer to physically check the license plate of the car. Additionally it‟s not feasible to employ a number of police offi cers to act as fulltime license palate inspectors. Police patrols cannot just drive in their cars starting at the palates of the other cars. Thus as a solution to this problem there exists a way for detecting an identifying license palate without constant human intervention This process or development of a method by which we can extract the license plate number of a vehicle from the image taken is known as vehicle license plate recognition system.(VLDRS).VLDR is also called in different references .Automatic vehicle car palate recognition, automatic number plate recognition, Optical character recognition for cars. II. OBJECTIVE The purpose of this paper is to build a real time application, which recognizes the license plate from cars at gate. For example at the entrance of the parking area. The system based on regular PC with in camera. Takes pictures of license plate of the car and process them. Once a license plate is detected and extracted its characters are then isolated. The focus is on recognition characters of the license palate this process is called optical recognition. The recognized characters are the n displayed on GUI and checked with the database. Thus the focus is on the design of algorithms used for extracting the license plate from a single image isolating the characters of the plate and identifying the individual character. The process flow representation is shown in Fig: 1. IMAGE ACQUISITION THRESHOLD EDGE DECTECTION SEGMENTATION OPTICAL CHARACTER RECOGNITION DISPLAY RESULTS . Fig 1. Process Flow representation III. PROCESS FLOW REPRESENTATION AND DESCRIPTION. The flow diagram for the vehicle license plate recognition system is as shown .It consists of the following steps. 35
  • 2. The Real Time Vechicle License Plate Identification System IV. IMAGE ACQUISITION Image acquisition [1] is the first process of the digital image processing for the image acquisition process we are considering the image acquisition tool in MATLAB as details in .The image acquisition toolbox in matlab extends the mat lab technical computing environment with functions for acquiring videos & images from PC compatible video devices. The toolbox connects to and configures the hardware, previews images and videos directly onto MATLAB for analysis and visualization. Some addition features of image acquisition toolbox include enabling single frame and continuous acquisitions, simultaneous image acquisition and image processing, logging image data.(Data can be logged to disk memory or both simultaneously .Its also possible to log each image frame or frames at specified intervals). Data can be logged into disks as compressed or uncompressed AVI streams. It‟s also possible to extract single images from a video stream and store them into disks in standard format such as BMP (Bitmap), JPEG (Joint Photographic Expert Group) and TIFF (Tag image file format) as specified in [2]. This paper supports bitmap and jpeg file format. A. THRESHOLDING. Image processing is a much more effective when a monochrome image is used. Thus thresholding procedure is used, for this purpose consider a gray level histogram of an image. The image (i,m) composed of light object s on dark background in such away that the object and background pixels have gray levels grouped into two dominant modes. One obvious way to extract the object from background is to select a threshold ' 0' that separates these modes. Then any point a(m,n) for a(m,n) >θ is called an object point t, otherwise its called background point. Thresholding: If a [m, n] >=θ,a [m,n] = object=1 Else a [m, n] = background=0 Thus thresholding is useful when one wants to separate bright objects of interest from a dark background or vice versa. B.EDGE DETECTION. After the image is threshold the next step is to compute the edges of the license plate. This operation in effect reduces the amount of information contained in the source image by removing everything but edges in horizontal and vertical direction. This is highly desirable since its also reduces the number of points Hough transform has to consider. The threshold image is passed through the parallel sequences in order to get or extract horizontal and vertical segments respectively. The Hough transformations then produce a list of lines in the form of accumulator cells. These cells are then analyzed and line segments are computed. Finally the vertical and horizontal cells are combined and any rectangular regions are matching the dimensions of plate are kept as candidate regions. C.HOUGH TRANSFORMS, The Hough transform is a method for detecting lines in binary images. This method was developed as an alternative to the brute force approach of finding lines, which was computationally expensive. The Hough transformation works by rewriting the general equation for line through (x i,yi)as yi = axi+b ----------------- [1] b = - Xia+yi ----------------- [2] In practice above equation [2] is never used since the parameter an approaches infinite as lines becomes vertical. The following form is used xcosθ +ysinθ =‟ ρ‟ [ρ – called rho] Where θ angle between normal to the line and the x-axis and the „ρ „the parameter is the perpendicular distance between the line and the origin. The range of θ is +/- 22/7 and for an image with resolution of w x h the range of ρ is 0 to √ ( w² + h² ). D. NOISE ELEMINATION. Images acquired through the image acquisition process may be contaminated by a variety of noise sources. In our case the image might be distorted due to some of the following reasons improved punching of characters on metals. Degradation of metallic surface over a period of time presence of external on the license plate due to which the characters of the license plate may not be easily recognized by optical character recognitions as in [3]. Thus for the proper functioning and implementation noise elimination is essential as it helps in improving the quality of the image. E.SEGMENTATION. In the analysis of the object in images its essential that we distinguish between the objects of the interest ( The characters of the license plate)and the rest .The later group is also referred to the background. The techniques that are used for finding the objects of interest are also referred as segmentation in [4]. Segmenting the for ground form of background Image processing there are methods in which inputs are images but the outputs are the attributes extract from those images. Segmentation is the major step-in that direction segmentation divides the images in to its consistent regions or objects .The level of subdivision depends on the problem being solved. The segmentation should stop when the object of interest in an application have been isolated. Segmentation accuracy determines the eventual success or failures of overall computerized procedures Image segmentation algorithms generally based o two basic properties of intensity values. Discontinuity and similarity. In the first category the approach is to partition an image based on abrupt changes in intensity such as edges in an image .The Principle approaches in the second category are based on partitioning an image into regions that are similar according to a set of predefined criteria. F. OPTICAL CHARACTER RECOGINITION. The goal of optical character recognition is to classify optical patterns (often contained in digital image) corresponding to alphabets or digits. The idea behind an implementation of a template matching based identification scheme is simple. One template pool, comprising of all 26 alphabet letters and 10 numerical digits is constructed .Once the license plate has been cut in to several characters each image contains a single character is evaluated in turn in the following way. The normalized correlation coefficient between the image of the character and the 36
  • 3. The Real Time Vechicle License Plate Identification System template that yields the highest coefficient indicates what character is identified. V. SOFTWARES INVOLVED The MAT Lab VERSION6.0 is doing the implementation of the system MATLAB (Matrix Laboratory) [5]is a special purpose computer program optimized to perform Engineering and scientific calculations. MATLAB implements mat lab programming language and provides an extensive library of predefined functions that make technical task more easier and efficient,. It has more than 100 functions and various toolboxes, which extend their capabilities with many more functions in various specialties. Advantages of MAT Lab. By using mat lab one can perform algebraic operations such has addition subtraction multiplication division which are used in the operations on images such as noise reduction by using averages moment deduction and algebraic masking, geometric transformations, rotations and scaling. Space domain operation such as histogram modifications (scaling, offset, amplitude change)Non linear point operation s(absolute value square root, log scale compression edge detection can be performed .Binary image processing as in [7], which includes theresholding and logic operations, can be performed provision for digital image coding and compression, compression measures loses compression entropy optimal coding. Mat lab has an image processing toolbox, which provides a comprehensive suite of reference standard algorithms and graphical tools for image analysis. Image analysis Includes edge detection segmentation morphology details in[8]. VI. PRACTICAL APPLICATION Real time Vehicle license plate recognition system has a wide range of applications which use the extracted plate number to create automated solutions for various problems some of them are as follows as detailed in [6]. Parking-The palate number is used to automatically enter the prepaid numbers and calculate the parking fee for non members by company entry and exit times. Access control- A gate automatically opens for authorized members a secure area thus replacing or assisting the security guard .the events are logged on a database and could be use to search the history of events. Tolling-The license plate number is used to calculate the travel fee on a toll road or it can be use to double check the ticket. Border control - The car number is registered in the entry or exists to the country and its used to monitor the border crossings turnaround time and short the typical lines. Stolen cars- A list of stolen cars or un paid fines is used to alert n a passing hot car he block list can be updated I real time and provide an immediate alarms to the police force.6. Traffic control-The vehicles can be directed to different lane according to their entry permits. The system effectively reduces the traffic congestions and number of attendants. The details is represented in figure 2. Cameras Cars appear check Cars appear? Car image future Networks License plate recognition system License plate number and other information record Other applications Fig: 2 Process flow representation. 37
  • 4. The Real Time Vechicle License Plate Identification System Fig 3: Gray image Fig 4: Threshold image Fig 5: Number plate extraction Fig 6: Character isolated S360CFA Fig 7: Recognized number 38
  • 5. The Real Time Vechicle License Plate Identification System Fig 8: Real Time Recognition. VII. CONCLUSION The Computationally balanced image processing and pattern recognition for RTVPIS is developed in this paper. The process deploys the region_prop technique in mat_lab. This new algorithm is suited for various real time applications such has Parking, Access control, Tolling, Traffic control Stolen cars. This RTVPIS is well suited for real time implementation. REFERENCES [1]. R. C. Gonzalez and R. E. Woods, Digital Image Processing, Pearson Education Asia, 2002.© 2009 ACADEMY PUBLISHER [2]. Jhane .Bernd Jhane Digital image processing concepts . [3]. T Yung Kong, A Zriel Rogel Field Topological Algorithms for Digital Image Processing (machine Intelligence and Pattern Recogniztion) [4]. Digital Image Processing and Application Ioannis Pitos. [5]. MATLAB version 6.5 Manual [6]. Hsien-chu WU,Chwei-Shyong TSAI,” A license plate recognition system in E- Government” Information security, an International journal Vol 15 No 2 2001 199-210. [7]. Satadal Saha, Subhadip Basu, Mita Nasipuri, Dipak, Howrah, India “ License Plate Localization from Vehicle Images:An Edge Based Multi-stage Approach “International Journal of Recent Trends in Engineering, Vol 1, No. 1, May 2009. [8]. Kuo-Ming Hung1, and Ching-Tang Hsieh Department of Information Management, Kainan University,“A Real-Time Mobile Vehicle License Plate Detection and Recognition “Tamkang Journal of Science and Engineering, Vol. 13, No. 4, pp. 433_442 (2010). 39