SlideShare a Scribd company logo
1 of 6
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4386
AUTOMATIC LICENCE PLATE DETECTION AND RECOGNITION
Anchal Baliyan1, Anjali Saini1, Amit Yadav1, Akash Rao1, Vishal Jayaswal2
1Student, Dept. of Computer Science and Engineering, MIET Meerut, Uttar Pradesh, India
2Profesor, Dept. of Computer Science and Engineering, MIET Meerut, Uttar Pradesh, India
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - In our challenge, we use a digicam that clicks the image of the car whichhavea valid vehicleplate.Ourmissionreadsthe
textual content from the input photo andextractsthe range of automobile. The wide variety of vehicleis,then,appearedupthrough
the directory of all of the cars which can be registered and are allowed to enter into the university premises, just like the vehicles
owned by way of the college, and soon. If we discover in shape, the intimation is given to nearest authority .Right now proposed a
framework to limitation of number plates for the most part for the vehicles which have various textual styles and have distinctive
size moreover. This paper introduces a methodology dependent on straightforward and effective SOBEL edge identification
algorithm. By utilizing the Gaussian algorithm. We diminish noise from the information picture.
The project is famous projects for Signals and Systems, and therefore, Math Works has some significant toolsand supportmaterial.
(When we search the project on Google then it is one of the very first links). However, we honestly want to learn the method of
extracting text from the images. We want to learn about image processing with the help of MATLAB. There are a lot of things to
learn about in this project. We look forward that the idea is liked by you. Moreover, we want to say that there will be very less
plagiarism in the project.
Key Words: image enhancement, segmentation, object reorganization, OCR (optical character recognition)
1. INTRODUCTION
Our project involves the extraction of text from the widevariety plate of a vehicle with the help ofMATLAB. As wesupplied
within the summary, weare looking to buildan automatedsystem that reads the number from the picture of the numberplate
(captured with the aid of camera this is located at some location for this purpose) and then looks for the same in the
organization’s database of the registered automobiles. Ifany fit is found, then it shows the details ofthe proprietor of the auto.
Otherwise it show that no detail is found for the given number of vehicle The project is based on the generalized idea of
extraction of text from an image using thevariousimageanalysistoolsprovidedwithMATLAB.Itinvolveslearningthebasicsof
image and text analysis wherein a significant focus has been given on Optical Character Recognition (OCR).
We have made certain assumptions regarding the image:
1. The image is captured with the help of a camera with a resolution of 12 Megapixels, so that the image is more clear.
2. The whole picture has a variety plate and its surroundings, not the entire automobile.
1.1 Theory Involved
There are broadly 3 types of images:
1. Document Images
2. Caption Text Images
3. Scene Text Images
There are numerous methods to extract text relying on the form of picture we are handling. In our project, we shall be
concerned about 3rd kind, i.e., the scene text images. In these images, we seize a scene using a few recording tool like digicam,
and extract the text that is the part of the scene. This text is commonly tough to detect and extract.
1.2 Related work
Many algorithms for the detection of the number plate and the algorithm for segmentation have been introduced to
implement number plate detection system. Algorithms, to detectthenumber plate,classifiedintomajorthreeclassesthatare:-
(A) Color base, (B) Edge base, (C) Texture based.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4387
2. PROCEDURE
Fig -1: Methodology Fig 1.1: Flowchart of algorithm
2.1 Capturing the Image:
Pre-processing: Here, we convert the image into gray scale. This is required as we cannot identify important edges in
colured image. Moreover, converting an image into gray scale reduces the complexity of the image.
Noise Elimination: Thereare various types ofnoises presentinanimage–saltandpepper,Gaussian,blurringofimage,etc.
We need to ensure that these noises are eliminated from our image inorder to retrieve the text optimally. So, following noise
reduction techniques are employed:
Median operator (to reduce salt and pepper noise)
Weiner Filter (to reduce Gaussian noise and blurring of image)
Morphological Filter (to enhance the character recognition)
2.2 Image Segmentation:
Plate Extraction: The number plate is cropped from the rest of the image. Then we apply some edge enhancement techniques
like SOBEL operator, etc.
Character Separation: We, then, separate the characters out of the image. This is done on the basis of the height of the
characters assuming all the characters in a number plate have the same height.
Character Recognition:
MATLAB provides various tools to recognize the characters. E.g. it has OCR () method that recognize the characters and saves
them in an array.
3. PROPOSED METHOD
Number plate of any vehicle may be a model with terribly huge dissimilarityofdistinction.Ifquantitynumberplate ofvehicleis
extremely like tough to spot the situation. When small changes occur to that then distinction as well as brightness is also
changes. During this research paper the operations of morphological processing of image square measure want to obtain the
distinct feature at intervals the number plate of any vehicle. This work is split in many parts:-
A. Capturing the input Image.
B. Binary conversion of captured image.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4388
C. Reduction of noise.
D. By using histogram equalizer enhances contrast.
E. Plate localize operation
3.1 Capture image
Take the input image which is taken from the high quality device.
Figure 2.0: - Captured image
3.3 Gray scale conversion
From input RGB image it has to be converted to a gray scale, and thus the 8-bit gray value is also determined. After that we
have using the proper MATLAB function (functionnumberPlateExtraction) to convert it to the binary image
Fig: - Grey Scale Conversion
FunctionnumberPlateExtraction
find = imread('Something.png'); //read image
find = imresize(find,[400NaN]); //check size
GreyImage= rgb2gray(f); //image converted into grey
3.4 Noise reduction
Noise Reduction of the image is done by the Gaussian algorithm which is as follow:
Fig: - After Median Filtering
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4389
Algorithm:
For remove noise: for p = 2: length-1
for q = 1 : final
totall= X(m - 1 : m + 1, p - 1 : p + 1, q);
Aa =(Summ(Gx.* to)); x-axis = Summ(Aa);
Bb= (Summ(Gy.* to)); y-axis = Summ(Bb);
TotalpixelValue =sqrt(x-axis.^2+ y-axis.^2);
%TotalpixelValue =(x-axis-y-axis);
FinalOutput(m,p,q) = TotalpixelValue; end end
3.5 Contrast enhancement using histogram equalization
We use the technique of histogram equalization to enhancethecontrastofeachimage.Theenhancementfunctionweuseis
J=histoog(p); histoog function is used for the contrast enhancement of the images.
When image pixel intensity of 8-neibourgh connectivity, we supply a desired histogram, histoog chooses the grayscale
(image) transformation T to minimize │c1 (T (p))-c0 (p) │
Below is the histogram update from the image (Figure 2.2) and after usinghistogramequalization(Figure2.3),thecontrast
improvement was applied.
Figure: 2.2 - Before contrast enhancement Figure: 2.3 - After contrast enhancement
3.6 Plate localization
The basic step in recognition of Car variety plate is to observe the plate size. Normally variety plates square ensure
rectangular in shape. And therefore the concept of an oblong plate should be studied. Mathematical morphology are
accustomed observe that region. ExploitationSOBELedge detectorwehavea tendency toaccustomedhighlightweightregions
with a high edge magnitude and high edge variance square measure known. Relyinguponthe brink priceedgeisdetectedfrom
the input image. The input image before executing the SOBEL Edge detection theorem is shown in Figure 2.4.
Figure: 2.4 – Image before applying SOBEL Algorithm for finding edge:
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4390
Figure: 2.5 – Image after applying SOBEL Algorithm for filling holes:
Fill=imfill (out1,'holes'); Sel=bwmorph (Fill,'thin', 1); Sel=imerode (Sel, strel ('line', 2, 92));
Figure: 2.6 – Image after filling the holes
4. EXPERIMENTALRESULTS
Under MATLAB R2013a or above set, we have run our proposed method on a system / computer that has Corei5 dual
processor 2.26 MHz with 4 GB RAM. Many pictures of Cars are clicked using or above the at least 12 mega pixel sensor.
Throughout the experiments, we test our proposed method for identifying the number of the plate on the various forms Car
image.
Figure: 2.6 – Final result of the system
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4391
3. CONCLUSION
Within this research paper, an effective method of identificationofvehicle numberplateisproposed whichislesstime
consuming and applied to various types of pictures. Edges could be recognized here through the use of the SOBEL edge
detection method, and also the holes are filled but with far less than 8 pixels. To retrieve the vehicle's number plate we delete
attached parts / pieces and under 1000 pixels. Ourproposedsetofcomputerinstructionsismainly basedonIndian carnumber
plate scheme, the accuracy of extracting the number plate for low quiet mood can be increased, as well as we can detect the
number plate that has different font size and also different font type.
FUTURE SCOPS
The future scope is that the automatic vehicle recognition system plays a major role in detecting threats to defense
Also it can improve the security related to the women’s as they can easily detect the number plate before using cab or other
serives. The system robustness can be increase if bright and sharp camera is used. Government should take some interest in
developing this system as this system is money-saving and eco- friendly, if applied effectively in various areas...
REFERENCES
• S.A. Daramola EmmanuelAdetiba,AnthonyUwakhonyeAdoghe, JokeA.Badejo(2011):Automatic vehicleidentification
system using license plate
• H. K. Sulehria, Ye Zhang and D.Irfan (2007):MathematicalMorphologyMethodology forExtractionofVehicleNumber
Plates, International Journal of Computers Issue 3, Volume 1.
• S.H. Mohades Kasaei, S.M. Mohades Kasaei and S.A.Monadjemi (2009): A Novel Morphological MethodforDetection
and Recognition of Vehicle License Plates, American Journal of Applied Sciences 6 (12), pp2066-2070.
• A. O. Khalifa, S. Khan, R. Islam and Suleiman (2007): Malaysian Vehicle License Plate Recognition, The International
Arab Journal of Information Technology, Vol. 4, No. 4, pp359-364.
• S. Hamidreza Kasaei, S. Mohammadreza Kasaei and S. Alireza Kasaei (2010): New Morphology-Based Method for
Robust Iranian Car Plate Detection and Recognition, International Journal of Computer TheoryandEngineering, Vol.
2, No. 2.
• Seyad Hamidreza Mohades Kasaei, SeyadMohammadreza Mohades Kasaei, “Extraction andRecognitionofthevehicle
License Plate for passing Under Outside Environment”, IEEE, pp 234-237
• Zhigang Xu, Honglei Zhu, “An Efficient Method of Locating Vehicle Licence Plate”, 3rd International conference on
Natural Computetion, IEEE, 0-7695-2875-9/07, 2007.

More Related Content

What's hot

IRJET- Lane Segmentation for Self-Driving Cars using Image Processing
IRJET-  	  Lane Segmentation for Self-Driving Cars using Image ProcessingIRJET-  	  Lane Segmentation for Self-Driving Cars using Image Processing
IRJET- Lane Segmentation for Self-Driving Cars using Image ProcessingIRJET Journal
 
Iisrt subha guru
Iisrt subha guruIisrt subha guru
Iisrt subha guruIISRT
 
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
 
Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...eSAT Publishing House
 
IRJET- Cheque Bounce Detection System using Image Processing
IRJET- Cheque Bounce Detection System using Image ProcessingIRJET- Cheque Bounce Detection System using Image Processing
IRJET- Cheque Bounce Detection System using Image ProcessingIRJET Journal
 
Automatic License Plate Recognition [ALPR]-A Review Paper
Automatic License Plate Recognition [ALPR]-A Review PaperAutomatic License Plate Recognition [ALPR]-A Review Paper
Automatic License Plate Recognition [ALPR]-A Review PaperIRJET Journal
 
Presentation Object Recognition And Tracking Project
Presentation Object Recognition And Tracking ProjectPresentation Object Recognition And Tracking Project
Presentation Object Recognition And Tracking ProjectPrathamesh Joshi
 
car number plate detection using matlab image & video processing
car number plate detection using matlab image & video processingcar number plate detection using matlab image & video processing
car number plate detection using matlab image & video processingKesava Korukonda
 
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
 
PCB Faults Detection Using Image Processing
PCB Faults Detection Using Image ProcessingPCB Faults Detection Using Image Processing
PCB Faults Detection Using Image Processingijceronline
 
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
 
Performance Evaluation of Image Edge Detection Techniques
Performance Evaluation of Image Edge Detection Techniques Performance Evaluation of Image Edge Detection Techniques
Performance Evaluation of Image Edge Detection Techniques CSCJournals
 
Automatic no. plate recognition
Automatic no. plate recognitionAutomatic no. plate recognition
Automatic no. plate recognitionAnjali Mehra
 
Proposal and Implementation of the Connected-Component Labeling of Binary Ima...
Proposal and Implementation of the Connected-Component Labeling of Binary Ima...Proposal and Implementation of the Connected-Component Labeling of Binary Ima...
Proposal and Implementation of the Connected-Component Labeling of Binary Ima...CSCJournals
 
The review on automatic license plate recognition
The review on automatic license plate recognitionThe review on automatic license plate recognition
The review on automatic license plate recognitioneSAT Publishing House
 
Research on License Plate Recognition and Extraction from complicated Images
Research on License Plate Recognition and Extraction from complicated ImagesResearch on License Plate Recognition and Extraction from complicated Images
Research on License Plate Recognition and Extraction from complicated ImagesIJERA Editor
 

What's hot (20)

License plate recognition.
License plate recognition.License plate recognition.
License plate recognition.
 
IRJET- Lane Segmentation for Self-Driving Cars using Image Processing
IRJET-  	  Lane Segmentation for Self-Driving Cars using Image ProcessingIRJET-  	  Lane Segmentation for Self-Driving Cars using Image Processing
IRJET- Lane Segmentation for Self-Driving Cars using Image Processing
 
Iisrt subha guru
Iisrt subha guruIisrt subha guru
Iisrt subha guru
 
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
 
Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...
 
IRJET- Cheque Bounce Detection System using Image Processing
IRJET- Cheque Bounce Detection System using Image ProcessingIRJET- Cheque Bounce Detection System using Image Processing
IRJET- Cheque Bounce Detection System using Image Processing
 
Automatic License Plate Recognition [ALPR]-A Review Paper
Automatic License Plate Recognition [ALPR]-A Review PaperAutomatic License Plate Recognition [ALPR]-A Review Paper
Automatic License Plate Recognition [ALPR]-A Review Paper
 
Presentation Object Recognition And Tracking Project
Presentation Object Recognition And Tracking ProjectPresentation Object Recognition And Tracking Project
Presentation Object Recognition And Tracking Project
 
car number plate detection using matlab image & video processing
car number plate detection using matlab image & video processingcar number plate detection using matlab image & video processing
car number plate detection using matlab image & video processing
 
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...
 
journal nakk
journal nakkjournal nakk
journal nakk
 
PCB Faults Detection Using Image Processing
PCB Faults Detection Using Image ProcessingPCB Faults Detection Using Image Processing
PCB Faults Detection Using Image Processing
 
Ijcatr04041021
Ijcatr04041021Ijcatr04041021
Ijcatr04041021
 
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
 
Performance Evaluation of Image Edge Detection Techniques
Performance Evaluation of Image Edge Detection Techniques Performance Evaluation of Image Edge Detection Techniques
Performance Evaluation of Image Edge Detection Techniques
 
Automatic no. plate recognition
Automatic no. plate recognitionAutomatic no. plate recognition
Automatic no. plate recognition
 
Proposal and Implementation of the Connected-Component Labeling of Binary Ima...
Proposal and Implementation of the Connected-Component Labeling of Binary Ima...Proposal and Implementation of the Connected-Component Labeling of Binary Ima...
Proposal and Implementation of the Connected-Component Labeling of Binary Ima...
 
The review on automatic license plate recognition
The review on automatic license plate recognitionThe review on automatic license plate recognition
The review on automatic license plate recognition
 
Ex4301908912
Ex4301908912Ex4301908912
Ex4301908912
 
Research on License Plate Recognition and Extraction from complicated Images
Research on License Plate Recognition and Extraction from complicated ImagesResearch on License Plate Recognition and Extraction from complicated Images
Research on License Plate Recognition and Extraction from complicated Images
 

Similar to IRJET - Automatic Licence Plate Detection and 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 TimeIRJET Journal
 
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLABCOMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLABIRJET Journal
 
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
 
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
 
Tracking number plate from vehicle using
Tracking number plate from vehicle usingTracking number plate from vehicle using
Tracking number plate from vehicle usingijfcstjournal
 
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 - Cardless ATM
IRJET -  	  Cardless ATMIRJET -  	  Cardless ATM
IRJET - Cardless ATMIRJET 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 - Design and Manufacturing of Gear Error Profile Detector
IRJET - Design and Manufacturing of Gear Error Profile DetectorIRJET - Design and Manufacturing of Gear Error Profile Detector
IRJET - Design and Manufacturing of Gear Error Profile DetectorIRJET Journal
 
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
 
Identify Defects in Gears Using Digital Image Processing
Identify Defects in Gears Using Digital Image ProcessingIdentify Defects in Gears Using Digital Image Processing
Identify Defects in Gears Using Digital Image ProcessingIJERD Editor
 
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
 
Text Extraction and Recognition Using Median Filter
Text Extraction and Recognition Using Median FilterText Extraction and Recognition Using Median Filter
Text Extraction and Recognition Using Median FilterIRJET Journal
 
IRJET- Parking Space Detection using Image Processing in MATLAB
IRJET- Parking Space Detection using Image Processing in MATLABIRJET- Parking Space Detection using Image Processing in MATLAB
IRJET- Parking Space Detection using Image Processing in MATLABIRJET Journal
 
IRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition SystemIRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition SystemIRJET Journal
 
IRJET- Universal Currency Identifier
IRJET-  	  Universal Currency IdentifierIRJET-  	  Universal Currency Identifier
IRJET- Universal Currency IdentifierIRJET Journal
 
Smart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image ProcessingSmart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image Processingijsrd.com
 
Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...
Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...
Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...inventionjournals
 
Design, Analysis and Fabrication of Pick & Place Colour Sorting Robotic Arm
Design, Analysis and Fabrication of Pick & Place Colour Sorting Robotic ArmDesign, Analysis and Fabrication of Pick & Place Colour Sorting Robotic Arm
Design, Analysis and Fabrication of Pick & Place Colour Sorting Robotic ArmIRJET Journal
 
IRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine LearningIRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine LearningIRJET Journal
 

Similar to IRJET - Automatic Licence Plate Detection and Recognition (20)

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
 
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLABCOMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
 
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- 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
 
Tracking number plate from vehicle using
Tracking number plate from vehicle usingTracking number plate from vehicle using
Tracking number plate from vehicle using
 
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 - Cardless ATM
IRJET -  	  Cardless ATMIRJET -  	  Cardless ATM
IRJET - Cardless ATM
 
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 - Design and Manufacturing of Gear Error Profile Detector
IRJET - Design and Manufacturing of Gear Error Profile DetectorIRJET - Design and Manufacturing of Gear Error Profile Detector
IRJET - Design and Manufacturing of Gear Error Profile Detector
 
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
 
Identify Defects in Gears Using Digital Image Processing
Identify Defects in Gears Using Digital Image ProcessingIdentify Defects in Gears Using Digital Image Processing
Identify Defects in Gears Using Digital Image Processing
 
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...
 
Text Extraction and Recognition Using Median Filter
Text Extraction and Recognition Using Median FilterText Extraction and Recognition Using Median Filter
Text Extraction and Recognition Using Median Filter
 
IRJET- Parking Space Detection using Image Processing in MATLAB
IRJET- Parking Space Detection using Image Processing in MATLABIRJET- Parking Space Detection using Image Processing in MATLAB
IRJET- Parking Space Detection using Image Processing in MATLAB
 
IRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition SystemIRJET- Vehicle Number Plate Recognition System
IRJET- Vehicle Number Plate Recognition System
 
IRJET- Universal Currency Identifier
IRJET-  	  Universal Currency IdentifierIRJET-  	  Universal Currency Identifier
IRJET- Universal Currency Identifier
 
Smart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image ProcessingSmart License Plate Recognition System based on Image Processing
Smart License Plate Recognition System based on Image Processing
 
Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...
Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...
Mobile Based Application to Scan the Number Plate and To Verify the Owner Det...
 
Design, Analysis and Fabrication of Pick & Place Colour Sorting Robotic Arm
Design, Analysis and Fabrication of Pick & Place Colour Sorting Robotic ArmDesign, Analysis and Fabrication of Pick & Place Colour Sorting Robotic Arm
Design, Analysis and Fabrication of Pick & Place Colour Sorting Robotic Arm
 
IRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine LearningIRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine Learning
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 

Recently uploaded (20)

GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 

IRJET - Automatic Licence Plate Detection and Recognition

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4386 AUTOMATIC LICENCE PLATE DETECTION AND RECOGNITION Anchal Baliyan1, Anjali Saini1, Amit Yadav1, Akash Rao1, Vishal Jayaswal2 1Student, Dept. of Computer Science and Engineering, MIET Meerut, Uttar Pradesh, India 2Profesor, Dept. of Computer Science and Engineering, MIET Meerut, Uttar Pradesh, India ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - In our challenge, we use a digicam that clicks the image of the car whichhavea valid vehicleplate.Ourmissionreadsthe textual content from the input photo andextractsthe range of automobile. The wide variety of vehicleis,then,appearedupthrough the directory of all of the cars which can be registered and are allowed to enter into the university premises, just like the vehicles owned by way of the college, and soon. If we discover in shape, the intimation is given to nearest authority .Right now proposed a framework to limitation of number plates for the most part for the vehicles which have various textual styles and have distinctive size moreover. This paper introduces a methodology dependent on straightforward and effective SOBEL edge identification algorithm. By utilizing the Gaussian algorithm. We diminish noise from the information picture. The project is famous projects for Signals and Systems, and therefore, Math Works has some significant toolsand supportmaterial. (When we search the project on Google then it is one of the very first links). However, we honestly want to learn the method of extracting text from the images. We want to learn about image processing with the help of MATLAB. There are a lot of things to learn about in this project. We look forward that the idea is liked by you. Moreover, we want to say that there will be very less plagiarism in the project. Key Words: image enhancement, segmentation, object reorganization, OCR (optical character recognition) 1. INTRODUCTION Our project involves the extraction of text from the widevariety plate of a vehicle with the help ofMATLAB. As wesupplied within the summary, weare looking to buildan automatedsystem that reads the number from the picture of the numberplate (captured with the aid of camera this is located at some location for this purpose) and then looks for the same in the organization’s database of the registered automobiles. Ifany fit is found, then it shows the details ofthe proprietor of the auto. Otherwise it show that no detail is found for the given number of vehicle The project is based on the generalized idea of extraction of text from an image using thevariousimageanalysistoolsprovidedwithMATLAB.Itinvolveslearningthebasicsof image and text analysis wherein a significant focus has been given on Optical Character Recognition (OCR). We have made certain assumptions regarding the image: 1. The image is captured with the help of a camera with a resolution of 12 Megapixels, so that the image is more clear. 2. The whole picture has a variety plate and its surroundings, not the entire automobile. 1.1 Theory Involved There are broadly 3 types of images: 1. Document Images 2. Caption Text Images 3. Scene Text Images There are numerous methods to extract text relying on the form of picture we are handling. In our project, we shall be concerned about 3rd kind, i.e., the scene text images. In these images, we seize a scene using a few recording tool like digicam, and extract the text that is the part of the scene. This text is commonly tough to detect and extract. 1.2 Related work Many algorithms for the detection of the number plate and the algorithm for segmentation have been introduced to implement number plate detection system. Algorithms, to detectthenumber plate,classifiedintomajorthreeclassesthatare:- (A) Color base, (B) Edge base, (C) Texture based.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4387 2. PROCEDURE Fig -1: Methodology Fig 1.1: Flowchart of algorithm 2.1 Capturing the Image: Pre-processing: Here, we convert the image into gray scale. This is required as we cannot identify important edges in colured image. Moreover, converting an image into gray scale reduces the complexity of the image. Noise Elimination: Thereare various types ofnoises presentinanimage–saltandpepper,Gaussian,blurringofimage,etc. We need to ensure that these noises are eliminated from our image inorder to retrieve the text optimally. So, following noise reduction techniques are employed: Median operator (to reduce salt and pepper noise) Weiner Filter (to reduce Gaussian noise and blurring of image) Morphological Filter (to enhance the character recognition) 2.2 Image Segmentation: Plate Extraction: The number plate is cropped from the rest of the image. Then we apply some edge enhancement techniques like SOBEL operator, etc. Character Separation: We, then, separate the characters out of the image. This is done on the basis of the height of the characters assuming all the characters in a number plate have the same height. Character Recognition: MATLAB provides various tools to recognize the characters. E.g. it has OCR () method that recognize the characters and saves them in an array. 3. PROPOSED METHOD Number plate of any vehicle may be a model with terribly huge dissimilarityofdistinction.Ifquantitynumberplate ofvehicleis extremely like tough to spot the situation. When small changes occur to that then distinction as well as brightness is also changes. During this research paper the operations of morphological processing of image square measure want to obtain the distinct feature at intervals the number plate of any vehicle. This work is split in many parts:- A. Capturing the input Image. B. Binary conversion of captured image.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4388 C. Reduction of noise. D. By using histogram equalizer enhances contrast. E. Plate localize operation 3.1 Capture image Take the input image which is taken from the high quality device. Figure 2.0: - Captured image 3.3 Gray scale conversion From input RGB image it has to be converted to a gray scale, and thus the 8-bit gray value is also determined. After that we have using the proper MATLAB function (functionnumberPlateExtraction) to convert it to the binary image Fig: - Grey Scale Conversion FunctionnumberPlateExtraction find = imread('Something.png'); //read image find = imresize(find,[400NaN]); //check size GreyImage= rgb2gray(f); //image converted into grey 3.4 Noise reduction Noise Reduction of the image is done by the Gaussian algorithm which is as follow: Fig: - After Median Filtering
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4389 Algorithm: For remove noise: for p = 2: length-1 for q = 1 : final totall= X(m - 1 : m + 1, p - 1 : p + 1, q); Aa =(Summ(Gx.* to)); x-axis = Summ(Aa); Bb= (Summ(Gy.* to)); y-axis = Summ(Bb); TotalpixelValue =sqrt(x-axis.^2+ y-axis.^2); %TotalpixelValue =(x-axis-y-axis); FinalOutput(m,p,q) = TotalpixelValue; end end 3.5 Contrast enhancement using histogram equalization We use the technique of histogram equalization to enhancethecontrastofeachimage.Theenhancementfunctionweuseis J=histoog(p); histoog function is used for the contrast enhancement of the images. When image pixel intensity of 8-neibourgh connectivity, we supply a desired histogram, histoog chooses the grayscale (image) transformation T to minimize │c1 (T (p))-c0 (p) │ Below is the histogram update from the image (Figure 2.2) and after usinghistogramequalization(Figure2.3),thecontrast improvement was applied. Figure: 2.2 - Before contrast enhancement Figure: 2.3 - After contrast enhancement 3.6 Plate localization The basic step in recognition of Car variety plate is to observe the plate size. Normally variety plates square ensure rectangular in shape. And therefore the concept of an oblong plate should be studied. Mathematical morphology are accustomed observe that region. ExploitationSOBELedge detectorwehavea tendency toaccustomedhighlightweightregions with a high edge magnitude and high edge variance square measure known. Relyinguponthe brink priceedgeisdetectedfrom the input image. The input image before executing the SOBEL Edge detection theorem is shown in Figure 2.4. Figure: 2.4 – Image before applying SOBEL Algorithm for finding edge:
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4390 Figure: 2.5 – Image after applying SOBEL Algorithm for filling holes: Fill=imfill (out1,'holes'); Sel=bwmorph (Fill,'thin', 1); Sel=imerode (Sel, strel ('line', 2, 92)); Figure: 2.6 – Image after filling the holes 4. EXPERIMENTALRESULTS Under MATLAB R2013a or above set, we have run our proposed method on a system / computer that has Corei5 dual processor 2.26 MHz with 4 GB RAM. Many pictures of Cars are clicked using or above the at least 12 mega pixel sensor. Throughout the experiments, we test our proposed method for identifying the number of the plate on the various forms Car image. Figure: 2.6 – Final result of the system
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 4391 3. CONCLUSION Within this research paper, an effective method of identificationofvehicle numberplateisproposed whichislesstime consuming and applied to various types of pictures. Edges could be recognized here through the use of the SOBEL edge detection method, and also the holes are filled but with far less than 8 pixels. To retrieve the vehicle's number plate we delete attached parts / pieces and under 1000 pixels. Ourproposedsetofcomputerinstructionsismainly basedonIndian carnumber plate scheme, the accuracy of extracting the number plate for low quiet mood can be increased, as well as we can detect the number plate that has different font size and also different font type. FUTURE SCOPS The future scope is that the automatic vehicle recognition system plays a major role in detecting threats to defense Also it can improve the security related to the women’s as they can easily detect the number plate before using cab or other serives. The system robustness can be increase if bright and sharp camera is used. Government should take some interest in developing this system as this system is money-saving and eco- friendly, if applied effectively in various areas... REFERENCES • S.A. Daramola EmmanuelAdetiba,AnthonyUwakhonyeAdoghe, JokeA.Badejo(2011):Automatic vehicleidentification system using license plate • H. K. Sulehria, Ye Zhang and D.Irfan (2007):MathematicalMorphologyMethodology forExtractionofVehicleNumber Plates, International Journal of Computers Issue 3, Volume 1. • S.H. Mohades Kasaei, S.M. Mohades Kasaei and S.A.Monadjemi (2009): A Novel Morphological MethodforDetection and Recognition of Vehicle License Plates, American Journal of Applied Sciences 6 (12), pp2066-2070. • A. O. Khalifa, S. Khan, R. Islam and Suleiman (2007): Malaysian Vehicle License Plate Recognition, The International Arab Journal of Information Technology, Vol. 4, No. 4, pp359-364. • S. Hamidreza Kasaei, S. Mohammadreza Kasaei and S. Alireza Kasaei (2010): New Morphology-Based Method for Robust Iranian Car Plate Detection and Recognition, International Journal of Computer TheoryandEngineering, Vol. 2, No. 2. • Seyad Hamidreza Mohades Kasaei, SeyadMohammadreza Mohades Kasaei, “Extraction andRecognitionofthevehicle License Plate for passing Under Outside Environment”, IEEE, pp 234-237 • Zhigang Xu, Honglei Zhu, “An Efficient Method of Locating Vehicle Licence Plate”, 3rd International conference on Natural Computetion, IEEE, 0-7695-2875-9/07, 2007.