SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 682
AUTOMATIC NUMBERPLATE RECOGNITION
Prof. Nafisa Mapari1, Ninad Sawant2, Om Chavan3, Nabeel wagle4, Aleem Tajir5
1Professor,Dept of Computer Science, M.H SABOO SIDDIK COLLEGE, Maharashtra, INDIA
2,3,4,5 B.E student, Computer Science, M.H SABOO SIDDIK COLLEGE, Maharashtra, INDIA
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The goal is to create a system that uses the car
number plate to create an efficient automatic approved
vehicle identification system. It can be installed at the
entrance to a highly restricted region, such as military zones
or the area around major government facilities, such as
Parliament and the Supreme Court. The algorithm created
here is designed to be lightweight and operate in real time.
Under typical circumstances, the system will be able to detect
the number plate using photos given by a USB web camera.
The method is divided into three sections: the first detects a
number plate using picture edge and intensity data; the
second locates the number plate's text; and the third does real
character recognition. Character recognition is done using an
optical character recognition approach. The generated
information is then compared to database entries. The
system's main benefits are its real-time capabilities and the
fact that it doesn't require anyextrasensorinput(forexample,
from infrared sensors) aside from a video stream. In Matlab,
the system is developed and simulated, and its performance is
evaluated using real images. The created system successfully
detects and recognizes the car number plate, according to the
results.
Key Words: image processing, preprocessing, filtering,
feature extraction,segmentation,recognition,experiment
1.INTRODUCTION
There is a need for information systems for data processing
in automobiles as a result of the widespread integration of
information technology into all parts of modern life. These
systems necessitate the archiving of data by a person or a
specific team capable of recognizing automobiles by their
license plates in real time and reflecting the realities of
reality in the information system. As a result, numerous
approaches and identificationsystemshavebeendeveloped,
and license plates are now employed in a variety of
applications. Vehicles are often identifiable by their license
plate numbers, which are legible by people but not by
machines. . For machines, a registration number plate is just
a dark spot that is within a region of an image with a certain
intensity and luminosity. Because of this, it is necessary to
design a robust mathematical system able to perceive and
extract what we want from the captured image.
These functions are implemented as mathematical patterns
in "ANPR Systems" (Automatic Numbers Plate Recognition)
and represent a shift between how the actual world is
observed and the information systems that must store and
manage it. In fields like Artificial Intelligence, Computer
Vision, Pattern Recognition, and Neural Networks,oneof the
topics of research is the design of these systems. Automatic
license plate recognitionsystemsarehardwareandsoftware
systems that interpret a signal translated into a graphical
representation, such as static pictures or sequences ofthem,
and recognize the letters on the plate. A camera, an image
processor, an event logger memory, and a storage unit, as
well as connectivity, make up the core hardware of these
systems.
2.MOTIVATION
The real-time capabilities of our system in city settings, as
well as its capacity to function in daytime conditions with
ample sunshine or artificial light from street lamps, set it
apart from all others. Because the light is solely reflected by
the license plates, active infrared light is widely used. The
identification of the plates and subsequent character
segmentation is reasonably simple when utilizing a camera
and specific filters. The use of alternate light sources, on the
other hand, incurs additional expenditures. As a result, one
need during system design was to create a systemthatcould
be deployed and established in a short amount of time using
standard off-the-shelf video cameras and without extra
illumination.
The unavailability of a digital camera with a high-speed
shutter is the primary reason for our concentration on
automobiles travelling at residential speeds. When cars are
driving at high speeds, the disadvantage of employing
ordinary TV cameras is that motion blur is a major issue,
making decentcharacteridentificationnearlyimpossible.It's
worth noting that this is more of a limitation of the picture
acquisition equipment than a system flaw. Our solution is
self-contained and works on a smart camera, allowing it to
be integrated into an existing system, such as a parking
garage access control system.
3.PROBLEM STATEMENT
First, the license plate region must be located and extracted
from a broader scene image. Second, after you've got a
license plate region to work with, you'll need to remove the
alphanumeric characters fromthebackdrop.Deliverthemto
an OCR system for recognition in the third step. It is evident
that in order to correctly identify a car by reading its license
plate, the plate must be located in the scene image given by
some acquisition system (e.g. video orstill camera).Locating
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 683
the region of interest reduces both the computing cost and
the complexity of the procedure.
A typical 1024x768 resolutionimage,for example,hasa total
of 786,432 pixels, although the region of interest (in this
case, a license plate) may only take up 10% of the image
area. In addition, the input to the subsequent phases of
segmentation and recognition should be streamlined,
resulting in easier algorithm design and faster computing
times.
4.PROPOSED SYSTEM
The goal of this research is to provide innovative methods
for extracting license plates. The suggested approach is
based on video capture, plate region extraction, plate
character segmentation, and character recognition. Plate
extraction is a challenging process. A simple license plate
extraction method is described in this project. Theapproach
is based on the Edge Detection algorithm, which includes
four primary stages: RGB to gray-scale conversion,Gaussian
Blurring, morphological processes, and recovering the
license plate's precise location. For character recognition,
the mean squared error approach is utilised.
4.1 PROPOSED METHODOLOGIES
• Video acquisition
• Gaussian Blur
• RGB to gray scale conversion
• Localization
• Character segmentation
• Character recognition
5.OBJECTIVE
Within the License Plate Identificationframework,themajor
goal of this research project is to experimentextensivelyand
develop alternate solutions to picture segmentation and
character recognition challenges. The goal is to create a
Python system that can detect and recognize automobile
license plates.
• Find a method that produces acceptable results for
determining the correct position of the license plate area.
• Create a system that derives the characters of a license
plate based on a video frame's location.
• Using the mean squared error approach, recognize each
character we retrieved above.
6.SYSTEM ARCHITECTURE
The structure, behaviour, and viewpoints of a system are
defined by the system architecture, which is a conceptual
model. The architectural design for the Automatic Number
Plate Recognition (ANPR) system is shown below. An
automated number plate recognition (ANPR) system scans
and processes video containing a vehicle number plate as
input and recognizes the number plate as output.
FIG 6.1 SYSTEM ARCHITECTURE
6.1STEPS
IMG taken from the video
Number plate detection using yellow search algorithm
Number plate extraction
Binary image
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 684
Inverted binary image
Character representation using column segmentation
Recognition Of the number on the plate
6.2 FLOWCHART
FIG 6.2 FLOWCHART
7.METHODOLOGY
To reduce the noise we need to blur the input Image
with Gaussian Blur then convert the it to grayscale.
Find vertical edges in the image.
Binarizing the picture is required to disclosetheplate.Apply
Otsu's Thresholding on the vertical edge picture for this.
Other thresholding methods need us to specify a threshold
value in order to binarize the picture, whereas Otsu's
Thresholding does so for us.
Apply the Closing Morphological Transformation on the
picture that has been thresholded. In a thresholded picture,
closing is beneficial for filling tiny black spots betweenwhite
sections. It exposes the license plate'srectangularwhitebox.
To recognize the characters on license plate precisely, we
have to apply image segmentation
After binarizing the picture, use the bitwise not operation to
discover the image's related components so that we can
extract character candidates.
Now discover all of the contours in the character candidate
mask and extract those contour regions from the value
thresholded picture of the plate; you'll receive all of the
characters individually.
8.CONCLUSION
We have presented a real-time license plate detection and
identification system in this work. Without any additional
sensor input, the system functions on picture frames
captured using ordinary video equipment. The system's
excellent performance allows it to compensate for the poor
picture resolution by taking into account the classification
results of following frames.ALPR applicationslikeautomatic
toll collection, automatic charging system in parking spaces,
management vehicles in parking spaces, and traffic
monitoring, etc., have posed new research tasks in ALPR
with newer dimensions. We have developed a software for
automatic license plate recognition by taking inputs from
live video feed. Character segmentation has been
implemented on extracted number plates. Finally,
segmented charactersarerecognizedbyusing meansquared
error method.
9.FUTURE WORK
The suggested system's implementationmaybeexpandedto
recognize numerous vehicle number plates in a single
picture frame. For traffic surveillance managementsystems,
user-friendly Android applications may be designed.
Character recognition may also be done with the help of
various deep learning algorithms, which are more accurate.
In terms of computing time, GPUs may be employed to
produce better results.
REFERENCES:
1) Zhiwen WANG, Shaozi LI, “Research an
Implement for Vehicle License Place Recognition Based
on Improved BPNetwork.”
2) Malviya, S.G Bhirud, “Image Fusion of Digital
Images.”
3) V. Koval, V. Turchenko, V. Kochan, A. Sachenko,
G. Markowsky, “Smart License PlateRecognitionSystem
Based on Image Processing Using Neural Network.”
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 685
4) R Parisi, E.D.Di Claudio, G Licarelli, G Orlandi,
“Car PlateRecognition By Neural Networks and Image
Processing.”
5) KumarParasuramanandP.Vasantha Kumar,An
Efficient Method for Indian Vehicle License. Patern
Recognition 35,(2002), 2279-2301.
6) Plate Extraction and Character Segmentation,
2010, IEEEInternational Conference on Computational
Intelligence and Computing Research.
7) Vahid Abolghasemi , Alireza Ahmadyfard., An
edge-based color-aided method for license plate
detection, Image and Vision Computing 27, (2009),
1134-1142.
8) J.A.G. Nijhuis, M.H. ter Brugge, K.A. Helmholt,
CarLicense PlateRecognitionwith Neural Networksand
Fuzzy Logic,
9) V. Abolghasemi, A. Ahmadyfard, 2009. An-
edge-based color aided method for license plate
detection In: Image and Vision Computing., vol.27 pp.
1135-1142.
10) D. Zheng, Y. Zhao, J. Wang., 2005. A efficient
method of license plate location. In: PatternRecognition
Letters., vol. 26, pp. 2431- 2438.
11) Zhu, W.G., Hou, G.J., Jia X., 2002. A study of
locating vehicle license plate based on color feature
and mathematical morphology. In:6thInternat.Conf.on
Signal Process., vol. 1, pp. 748-751.
12) Wei, W., Waang, M.J., Huang, Z.X., 2001. An
automaticmethodoflocationfornumber-plateusingcolor
features. In: Proc. Internat.Conf. on Image Process., vol. 2,
pp. 782-785.
13) N.A.Jusoh,J.M.Zain,2009.Applicationoffreeman
chain codes: an alternative recognition technique for
malaysiancarplates.In:InternationalJournalofComputer
Science and Network Security.,vol. 9, pp. 223-227.
14) S.L. Chang, L.S.Chen, Y.C.Chung, S.W.Chen., 2004.
Automaticlicenseplaterecognition.,In:IEEETransactions
on Intelligent Transportation System., vol. 5., pp. 43-53.
15) L. Hertz and R. W. Schafer, “Multilevel
Thresholding Using Edge Matching” Computer Visual
Graph ImageProcess, Vol. 44, pp. 279–295, 1988.
16) S.EUmbaugh,“ComputerImagingDigitalAnalysis
andProcessing,” ACRC Press Book, 2005.
17) R. M. Haralick and L. G. Shapiro. Survey: Image
SegmentationTechniques. Computer Vision Graphics and
Image Process. Vol.29, pp. 100-132. 1985.
18) Siddhartha Bhattacharyya, Ujjwal Maulik,
Paramartha Dutta.Multilevel Image Segmentation With
AdaptiveImageContext BasedThresholding. Applied Soft
Computing, Volume11, Issue 1, January 2011, Pages 946-
962.
19) Nong Sang, Heng Li, Weixue Peng, Tianxu Zhang.
Knowledge-BasedAdaptiveThresholdingSegmentationOf
DigitalSubtractionAngiographyImages.ImageandVision
Computing, Volume 25,Issue 8, 1 August 2007, pp. 1263-
127.
20) J. Zhang, C.-H. Yan, C.-K. Chui, S.-H. Ong. Fast
segmentation ofbone in CT images using 3D adaptive
thresholding. Computers in Biology and Medicine,
Volume 40, Issue2,February2010, pp.231-236.
21) Du Feng, Shi Wenkang, Chen Liangzhou, Deng
Yong, Zhu Zhe Infrared image segmentation with 2-D
maximum entropy method based on particle swarm
optimization(PSO)PatternRecognitionLetters,Volume26,
Issue5, April 2005, pp.597-603.
22) Wen-Bing Tao, Jin-Wen Tian, Jian Liu. Image
Segmentation By Three-Level Thresholding Based On
Maximum Fuzzy Entropy And Genetic Algorithm. Pattern
RecognitionLetters,Volume24,Issue16,December.2003,
pp.3069-3078.

More Related Content

PDF
LICENSE PLATE RECOGNITION
PDF
IRJET- Vehicle Number Plate Recognition System
PDF
Automatic Number Plate Recognition and IoT Based Vehicle Tracking
DOCX
Matlab based vehicle number plate identification system using ocr
PDF
License Plate Recognition
PDF
IRJET- Features Extraction OCR Algorithm in Indian License Plates
PDF
IRJET - Automatic License Plate Detection using Image Processing
PDF
IRJET- Automatic Number Plate Recognition using CCA Algorithm and RANSAC ...
LICENSE PLATE RECOGNITION
IRJET- Vehicle Number Plate Recognition System
Automatic Number Plate Recognition and IoT Based Vehicle Tracking
Matlab based vehicle number plate identification system using ocr
License Plate Recognition
IRJET- Features Extraction OCR Algorithm in Indian License Plates
IRJET - Automatic License Plate Detection using Image Processing
IRJET- Automatic Number Plate Recognition using CCA Algorithm and RANSAC ...

Similar to AUTOMATIC NUMBERPLATE RECOGNITION (20)

PDF
The automatic license plate recognition(alpr)
PDF
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
PDF
The automatic license plate recognition(alpr)
PDF
IRJET - Efficient Approach for Number Plaque Accreditation System using W...
PDF
The automatic license plate recognition(alpr)
PDF
The automatic license plate recognition(alpr)
PPTX
MATLAB Based Vehicle Number Plate Identification System using OCR
PDF
Number Plate Recognition of Still Images in Vehicular Parking System
PDF
IRJET- Recognition of Indian License Plate Number from Live Stream Videos
PDF
Automatic Fetching of Vehicle details using ANPR Camera
PDF
IRJET- Vehicle Number Plate Detection using Image Processing
PDF
Ay36304310
PDF
Paper id 25201447
PDF
IRJET- Automatic Number Plate Recognition System in Real Time
PDF
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...
PDF
IRJET - Multiple Vehicle Automatic Number Plate Recognition
PDF
A Survey on License Plate Recognition System
PDF
Automatic Fetching of Vehicle details using ANPR Camera
PDF
IRJET- Computerized Vehicle Number Plate Recognition and Fine Generation
PDF
IRJET- Advenced Traffic Management System using Automatic Number Plate Recogn...
The automatic license plate recognition(alpr)
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
The automatic license plate recognition(alpr)
IRJET - Efficient Approach for Number Plaque Accreditation System using W...
The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)
MATLAB Based Vehicle Number Plate Identification System using OCR
Number Plate Recognition of Still Images in Vehicular Parking System
IRJET- Recognition of Indian License Plate Number from Live Stream Videos
Automatic Fetching of Vehicle details using ANPR Camera
IRJET- Vehicle Number Plate Detection using Image Processing
Ay36304310
Paper id 25201447
IRJET- Automatic Number Plate Recognition System in Real Time
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...
IRJET - Multiple Vehicle Automatic Number Plate Recognition
A Survey on License Plate Recognition System
Automatic Fetching of Vehicle details using ANPR Camera
IRJET- Computerized Vehicle Number Plate Recognition and Fine Generation
IRJET- Advenced Traffic Management System using Automatic Number Plate Recogn...
Ad

More from IRJET Journal (20)

PDF
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
PDF
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
PDF
Kiona – A Smart Society Automation Project
PDF
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
PDF
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
PDF
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
PDF
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
PDF
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
PDF
BRAIN TUMOUR DETECTION AND CLASSIFICATION
PDF
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
PDF
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
PDF
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
PDF
Breast Cancer Detection using Computer Vision
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Kiona – A Smart Society Automation Project
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
BRAIN TUMOUR DETECTION AND CLASSIFICATION
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Breast Cancer Detection using Computer Vision
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Ad

Recently uploaded (20)

PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPT
Mechanical Engineering MATERIALS Selection
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPT
Project quality management in manufacturing
PPTX
additive manufacturing of ss316l using mig welding
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
Lecture Notes Electrical Wiring System Components
PPTX
Sustainable Sites - Green Building Construction
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PDF
Digital Logic Computer Design lecture notes
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
web development for engineering and engineering
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
Internet of Things (IOT) - A guide to understanding
Foundation to blockchain - A guide to Blockchain Tech
Mechanical Engineering MATERIALS Selection
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Project quality management in manufacturing
additive manufacturing of ss316l using mig welding
Operating System & Kernel Study Guide-1 - converted.pdf
UNIT 4 Total Quality Management .pptx
Lecture Notes Electrical Wiring System Components
Sustainable Sites - Green Building Construction
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
Digital Logic Computer Design lecture notes
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
web development for engineering and engineering
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS

AUTOMATIC NUMBERPLATE RECOGNITION

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 682 AUTOMATIC NUMBERPLATE RECOGNITION Prof. Nafisa Mapari1, Ninad Sawant2, Om Chavan3, Nabeel wagle4, Aleem Tajir5 1Professor,Dept of Computer Science, M.H SABOO SIDDIK COLLEGE, Maharashtra, INDIA 2,3,4,5 B.E student, Computer Science, M.H SABOO SIDDIK COLLEGE, Maharashtra, INDIA ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The goal is to create a system that uses the car number plate to create an efficient automatic approved vehicle identification system. It can be installed at the entrance to a highly restricted region, such as military zones or the area around major government facilities, such as Parliament and the Supreme Court. The algorithm created here is designed to be lightweight and operate in real time. Under typical circumstances, the system will be able to detect the number plate using photos given by a USB web camera. The method is divided into three sections: the first detects a number plate using picture edge and intensity data; the second locates the number plate's text; and the third does real character recognition. Character recognition is done using an optical character recognition approach. The generated information is then compared to database entries. The system's main benefits are its real-time capabilities and the fact that it doesn't require anyextrasensorinput(forexample, from infrared sensors) aside from a video stream. In Matlab, the system is developed and simulated, and its performance is evaluated using real images. The created system successfully detects and recognizes the car number plate, according to the results. Key Words: image processing, preprocessing, filtering, feature extraction,segmentation,recognition,experiment 1.INTRODUCTION There is a need for information systems for data processing in automobiles as a result of the widespread integration of information technology into all parts of modern life. These systems necessitate the archiving of data by a person or a specific team capable of recognizing automobiles by their license plates in real time and reflecting the realities of reality in the information system. As a result, numerous approaches and identificationsystemshavebeendeveloped, and license plates are now employed in a variety of applications. Vehicles are often identifiable by their license plate numbers, which are legible by people but not by machines. . For machines, a registration number plate is just a dark spot that is within a region of an image with a certain intensity and luminosity. Because of this, it is necessary to design a robust mathematical system able to perceive and extract what we want from the captured image. These functions are implemented as mathematical patterns in "ANPR Systems" (Automatic Numbers Plate Recognition) and represent a shift between how the actual world is observed and the information systems that must store and manage it. In fields like Artificial Intelligence, Computer Vision, Pattern Recognition, and Neural Networks,oneof the topics of research is the design of these systems. Automatic license plate recognitionsystemsarehardwareandsoftware systems that interpret a signal translated into a graphical representation, such as static pictures or sequences ofthem, and recognize the letters on the plate. A camera, an image processor, an event logger memory, and a storage unit, as well as connectivity, make up the core hardware of these systems. 2.MOTIVATION The real-time capabilities of our system in city settings, as well as its capacity to function in daytime conditions with ample sunshine or artificial light from street lamps, set it apart from all others. Because the light is solely reflected by the license plates, active infrared light is widely used. The identification of the plates and subsequent character segmentation is reasonably simple when utilizing a camera and specific filters. The use of alternate light sources, on the other hand, incurs additional expenditures. As a result, one need during system design was to create a systemthatcould be deployed and established in a short amount of time using standard off-the-shelf video cameras and without extra illumination. The unavailability of a digital camera with a high-speed shutter is the primary reason for our concentration on automobiles travelling at residential speeds. When cars are driving at high speeds, the disadvantage of employing ordinary TV cameras is that motion blur is a major issue, making decentcharacteridentificationnearlyimpossible.It's worth noting that this is more of a limitation of the picture acquisition equipment than a system flaw. Our solution is self-contained and works on a smart camera, allowing it to be integrated into an existing system, such as a parking garage access control system. 3.PROBLEM STATEMENT First, the license plate region must be located and extracted from a broader scene image. Second, after you've got a license plate region to work with, you'll need to remove the alphanumeric characters fromthebackdrop.Deliverthemto an OCR system for recognition in the third step. It is evident that in order to correctly identify a car by reading its license plate, the plate must be located in the scene image given by some acquisition system (e.g. video orstill camera).Locating
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 683 the region of interest reduces both the computing cost and the complexity of the procedure. A typical 1024x768 resolutionimage,for example,hasa total of 786,432 pixels, although the region of interest (in this case, a license plate) may only take up 10% of the image area. In addition, the input to the subsequent phases of segmentation and recognition should be streamlined, resulting in easier algorithm design and faster computing times. 4.PROPOSED SYSTEM The goal of this research is to provide innovative methods for extracting license plates. The suggested approach is based on video capture, plate region extraction, plate character segmentation, and character recognition. Plate extraction is a challenging process. A simple license plate extraction method is described in this project. Theapproach is based on the Edge Detection algorithm, which includes four primary stages: RGB to gray-scale conversion,Gaussian Blurring, morphological processes, and recovering the license plate's precise location. For character recognition, the mean squared error approach is utilised. 4.1 PROPOSED METHODOLOGIES • Video acquisition • Gaussian Blur • RGB to gray scale conversion • Localization • Character segmentation • Character recognition 5.OBJECTIVE Within the License Plate Identificationframework,themajor goal of this research project is to experimentextensivelyand develop alternate solutions to picture segmentation and character recognition challenges. The goal is to create a Python system that can detect and recognize automobile license plates. • Find a method that produces acceptable results for determining the correct position of the license plate area. • Create a system that derives the characters of a license plate based on a video frame's location. • Using the mean squared error approach, recognize each character we retrieved above. 6.SYSTEM ARCHITECTURE The structure, behaviour, and viewpoints of a system are defined by the system architecture, which is a conceptual model. The architectural design for the Automatic Number Plate Recognition (ANPR) system is shown below. An automated number plate recognition (ANPR) system scans and processes video containing a vehicle number plate as input and recognizes the number plate as output. FIG 6.1 SYSTEM ARCHITECTURE 6.1STEPS IMG taken from the video Number plate detection using yellow search algorithm Number plate extraction Binary image
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 684 Inverted binary image Character representation using column segmentation Recognition Of the number on the plate 6.2 FLOWCHART FIG 6.2 FLOWCHART 7.METHODOLOGY To reduce the noise we need to blur the input Image with Gaussian Blur then convert the it to grayscale. Find vertical edges in the image. Binarizing the picture is required to disclosetheplate.Apply Otsu's Thresholding on the vertical edge picture for this. Other thresholding methods need us to specify a threshold value in order to binarize the picture, whereas Otsu's Thresholding does so for us. Apply the Closing Morphological Transformation on the picture that has been thresholded. In a thresholded picture, closing is beneficial for filling tiny black spots betweenwhite sections. It exposes the license plate'srectangularwhitebox. To recognize the characters on license plate precisely, we have to apply image segmentation After binarizing the picture, use the bitwise not operation to discover the image's related components so that we can extract character candidates. Now discover all of the contours in the character candidate mask and extract those contour regions from the value thresholded picture of the plate; you'll receive all of the characters individually. 8.CONCLUSION We have presented a real-time license plate detection and identification system in this work. Without any additional sensor input, the system functions on picture frames captured using ordinary video equipment. The system's excellent performance allows it to compensate for the poor picture resolution by taking into account the classification results of following frames.ALPR applicationslikeautomatic toll collection, automatic charging system in parking spaces, management vehicles in parking spaces, and traffic monitoring, etc., have posed new research tasks in ALPR with newer dimensions. We have developed a software for automatic license plate recognition by taking inputs from live video feed. Character segmentation has been implemented on extracted number plates. Finally, segmented charactersarerecognizedbyusing meansquared error method. 9.FUTURE WORK The suggested system's implementationmaybeexpandedto recognize numerous vehicle number plates in a single picture frame. For traffic surveillance managementsystems, user-friendly Android applications may be designed. Character recognition may also be done with the help of various deep learning algorithms, which are more accurate. In terms of computing time, GPUs may be employed to produce better results. REFERENCES: 1) Zhiwen WANG, Shaozi LI, “Research an Implement for Vehicle License Place Recognition Based on Improved BPNetwork.” 2) Malviya, S.G Bhirud, “Image Fusion of Digital Images.” 3) V. Koval, V. Turchenko, V. Kochan, A. Sachenko, G. Markowsky, “Smart License PlateRecognitionSystem Based on Image Processing Using Neural Network.”
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 685 4) R Parisi, E.D.Di Claudio, G Licarelli, G Orlandi, “Car PlateRecognition By Neural Networks and Image Processing.” 5) KumarParasuramanandP.Vasantha Kumar,An Efficient Method for Indian Vehicle License. Patern Recognition 35,(2002), 2279-2301. 6) Plate Extraction and Character Segmentation, 2010, IEEEInternational Conference on Computational Intelligence and Computing Research. 7) Vahid Abolghasemi , Alireza Ahmadyfard., An edge-based color-aided method for license plate detection, Image and Vision Computing 27, (2009), 1134-1142. 8) J.A.G. Nijhuis, M.H. ter Brugge, K.A. Helmholt, CarLicense PlateRecognitionwith Neural Networksand Fuzzy Logic, 9) V. Abolghasemi, A. Ahmadyfard, 2009. An- edge-based color aided method for license plate detection In: Image and Vision Computing., vol.27 pp. 1135-1142. 10) D. Zheng, Y. Zhao, J. Wang., 2005. A efficient method of license plate location. In: PatternRecognition Letters., vol. 26, pp. 2431- 2438. 11) Zhu, W.G., Hou, G.J., Jia X., 2002. A study of locating vehicle license plate based on color feature and mathematical morphology. In:6thInternat.Conf.on Signal Process., vol. 1, pp. 748-751. 12) Wei, W., Waang, M.J., Huang, Z.X., 2001. An automaticmethodoflocationfornumber-plateusingcolor features. In: Proc. Internat.Conf. on Image Process., vol. 2, pp. 782-785. 13) N.A.Jusoh,J.M.Zain,2009.Applicationoffreeman chain codes: an alternative recognition technique for malaysiancarplates.In:InternationalJournalofComputer Science and Network Security.,vol. 9, pp. 223-227. 14) S.L. Chang, L.S.Chen, Y.C.Chung, S.W.Chen., 2004. Automaticlicenseplaterecognition.,In:IEEETransactions on Intelligent Transportation System., vol. 5., pp. 43-53. 15) L. Hertz and R. W. Schafer, “Multilevel Thresholding Using Edge Matching” Computer Visual Graph ImageProcess, Vol. 44, pp. 279–295, 1988. 16) S.EUmbaugh,“ComputerImagingDigitalAnalysis andProcessing,” ACRC Press Book, 2005. 17) R. M. Haralick and L. G. Shapiro. Survey: Image SegmentationTechniques. Computer Vision Graphics and Image Process. Vol.29, pp. 100-132. 1985. 18) Siddhartha Bhattacharyya, Ujjwal Maulik, Paramartha Dutta.Multilevel Image Segmentation With AdaptiveImageContext BasedThresholding. Applied Soft Computing, Volume11, Issue 1, January 2011, Pages 946- 962. 19) Nong Sang, Heng Li, Weixue Peng, Tianxu Zhang. Knowledge-BasedAdaptiveThresholdingSegmentationOf DigitalSubtractionAngiographyImages.ImageandVision Computing, Volume 25,Issue 8, 1 August 2007, pp. 1263- 127. 20) J. Zhang, C.-H. Yan, C.-K. Chui, S.-H. Ong. Fast segmentation ofbone in CT images using 3D adaptive thresholding. Computers in Biology and Medicine, Volume 40, Issue2,February2010, pp.231-236. 21) Du Feng, Shi Wenkang, Chen Liangzhou, Deng Yong, Zhu Zhe Infrared image segmentation with 2-D maximum entropy method based on particle swarm optimization(PSO)PatternRecognitionLetters,Volume26, Issue5, April 2005, pp.597-603. 22) Wen-Bing Tao, Jin-Wen Tian, Jian Liu. Image Segmentation By Three-Level Thresholding Based On Maximum Fuzzy Entropy And Genetic Algorithm. Pattern RecognitionLetters,Volume24,Issue16,December.2003, pp.3069-3078.