SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 96
Automatic License Plate Detection in Foggy Condition using Enhanced
OTSU Technique
Khushbu1 Isha Vats2
1Student, Department of Computer Engineering, CGC Landran Mohali, Punjab,India.
2Professor, Department of Computer Engineering, CGC Landran Mohali, Punjab,India
----------------------------------------------------------------------------------***---------------------------------------------------------------------------------
Abstract- Automatic detection of license plate (LP) is to
localize a license plate region from an image without
human involvement. So far a number of methods have
been introduced for automatic license plate detection
(ALPD), but most of them do not consider hazardous
image conditions that exist in many real driving situations.
OTSU based technique is best suited for hazardous image
conditions having foggy weather effects, tilted LP area. In
this technique after denoising and normalization of the
image, the digits and characters within the image can be
extracted. In this paper large database set of LPs under
different conditions like clear images and images with
foggy effects is considered and various performance
parameters like MSE, PSNR, SSIM and Aspect Ratio are
considered to extract the results. These parameters have
shown improvement with percentage 14.93%, 14.12%,
39.21% and 40% respectively.
Key term: Neural Network, HMM, foggy
I. INTRODUCTION
Automatic license plate detection (ALPD) involved
extraction of vehicle's license plate (LP) area from an
image without human intervention. It is one of the
important stages of automatic LP recognition (ALPR)
system [1].In an ALPR system, there are three major
stages: i) acquisition of a car image by an image capturing
device; ii) detection of the potential LP area from the
image; iii) feature extraction and recognition of characters
from the LP area. The objective of an ALPR system is
automatic identification of a vehicle by reading the LP data
from an image or a video. In an ALPR system, stationary
cameras are mounted on the road signs, street lights,
buildings or highway overpass for capturing the image of
the vehicle [2]. Then the captured image goes through a
software system that detects possible LP location in the
image, and converts the LP information into a computer
readable format. The recovered identity of the vehicle can
be used in real time or stored in the database for future. In
an ALPR system, LP detection is the most crucial stage and
the performance of the whole system highly depends on it
[3]. In the detection stage, we need to deal with a number
of important issues, such as:
i. Hazardous weather conditions (rainy and foggy)
Hazardous background (presence of non-LP
objects in the background)
ii. Low contrast image environments (indoor, night,
blurry and uneven illumination)
iii. Horizontally tilted LP in the image due to camera
position.
Collectively all these issues are identified as the hazardous
image conditions. All these issues make ALPD a
challenging research topic. In our research work we
mainly focus on automatic detection of license plate with
foggy effects using enhanced Otsu technique. The
enhanced Otsu technique is based on assigning labels to
the image uniformly and extraction of digits and
characters is performed based on various performance
parameters such as MSE, PSNR, SSIM and Aspect Ratio.
MSE (Mean Square Error): The Mean Square Error (MSE)
of a procedure for estimating an unobserved quantity
measures the average of the squares of the errors or
deviations, that is, the difference between the estimator
and what is estimated. It is a method used to check for
errors. Two MSEs are calculated and then are compared to
find the accuracy of an image. It calculates the quantitative
score that helps to measure the degree of homogeneity or
the level of error or distortion between them. When a
zero-mean random source x passes through a cascade of K
additive independent zero means distortions. A lower MSE
value will result in higher quality image.
PSNR (Peak Signal-to Noise Ratio): The ratio between
the maximum possible power of a signal and the power of
corrupting noise that affects the fidelity of its
representation. Because many signals have a very
wide dynamic range PSNR is usually expressed in terms of
the logarithmic decibel scale. PSNR is most commonly used
to measure the quality of reconstruction of lossy
compression codec (e.g., for image compression). The
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 97
signal in this case is the original data, and the noise is the
error introduced by compression. When comparing
compression codec, PSNR is an approximation to human
perception of reconstruction quality. Although a higher
PSNR generally indicates that the reconstruction is of
higher quality, in some cases it may not.
SSIM (Structural Similarity Index Measure): It is well
known quality metric that is used to calculate the
similarity between two images. It is designed by modeling
any image distortion as three factors that are contrast
distortion, luminance distortion and correlation. The SSIM
index is a full reference metric, the measurement or
prediction of image quality is based on an initial
uncompressed or distortion-free image as reference. SSIM
is designed to improve on traditional methods such
as peak signal-to-noise ratio (PSNR) and mean squared
error (MSE).
Aspect Ratio: The aspect ratio of an image describes the
proportional relationship between its width and its
height. It is commonly expressed as two numbers
separated by a colon. For an x:y aspect ratio, no matter
how big or small the image is, if the width is divided
into x units of equal length and the height is measured
using this same length unit, the height will be measured to
be y units.
II. LITERATURE SURVEY
[1] S. Archana(2016) et al: This paper presents VLSI
implementation of handwritten digit recognition system
based on analog neural network. The recognition system is
based on the least hamming distance neural network
which both learning and classification. This type of circuit
can be utilized by visual tracking system providing them
ability to have backup recognition utility in case first
recognized pattern proves to be incorrect.
[2] Mrs. Soni Chaturvedi(2014) et al: Neural Networks
are found as an effective tool for pattern recognition. In
this paper a Feed Forward Neural Network and an
Izhikevich neuron model is applied for pattern recognition
of Digits and Special characters.
III. FLOWCHART
Fig. 1 Flowchart explaining the steps involved
IV. Proposed Algorithm
Step1 Input the image from the outer source, the source
may be CCTV camera capturing real time pictures of
vehicles.
Step2 Preprocess the image. The preprocessing of image
includes resizing and denoising.
a. Resizing of an image involves neutralization of
size along height and width as well.
b. Denoising is done with the help of Salt and pepper
technique and Gaussian technique.
Step3 Employ the optimum threshold based technique in
order to segment the image.
a. Identify the optimum threshold using OTSU based
on ~im2bw (image n, threshold) function.
Step4 Extract the text characters from the image.
a. Identify the text based on bounding box function
as propied=regionprops(L,'BoundingBox').
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 98
Step5 Ignore the unwanted letters from the segmented
components.
a. Except character all the remaining points are
declared unwanted using [L Ne]
=bwlabel(imagen) function.
Step6 Store the required components into the memory
buffer.
a. Store the extracted text letters into the local disk
space.
V.BASIC STEPS FOLLOWED
1. Read the image: An image residing in the local directory
is fetched and further stored in the form of matrix where
intensity values of pixels are represented across rows and
columns.
Fig .2 Intensity values of image stored in the form of matrix
2. RGB to grayscale conversion: Color images are often
built of several stacked color channels each of them
representing value levels of the given channel. For
example, RGB images are composed of three independent
channels for red, green and blue primary
color components. Here is an example of color channel
splitting of a full RGB color image. The column at left
shows the isolated color channels in natural colors, while
at right are their grayscale equivalences:
Fig. 3 Conversion of an image from RGB to grayscale
In MATLAB, I= rgb2gray (RGB) converts the RGB image to
the grayscale image of intensity I. The rgb2gray function
converts RGB images to grayscale by eliminating the hue
and saturation information while retaining the luminance.
3. Optimum thresholding based segmentation:
An image contains only two principal regions (object and
background) and the number of misclassified pixels can be
minimized with the help of prior knowledge about the
distributions of the gray level values that make up the
object and the background.
4. Extraction of ROI: In order to extract the segment of
image called ROI the characters of number plate are marked
with the help of green bounding box. Further, the required
components of image are stored within the corresponding
local directory. The MSE, SSIM, PSNR and Aspect ratio
values are then compared for base technique and Otsu
technique.
Fig. 4 Extraction of ROI using green bounding box
IV. RESULTS
In order to avoid complexity in this research paper,
performance parameters of single license plate are
calculated and compared.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 99
4.1 Dataset taken
Fig. 5 License Plate used as dataset
Fig .6 License Plate used as dataset
4.2 Comparative tabular and graphical representation
of MSE values
Image Base
Technique
OTSU
Based
0.23 0.34
0.21 0.24
0.20 0.21
0.17 0.23
0.161 0.19
0.11 0.12
0.23 0.28
0.28 0.29
0.34 0.39
0.23 0.27
0.24 0.28
0.27 0.30
Table 1
Fig. 7 Graphical representation of MSE values
Analysis: In comparative analysis of MSE values of base
technique and threshold based technique, threshold based
technique yields higher MSE values and hence performs
better for LP under foggy conditions.
4.3 Comparative tabular and graphical representation
for PSNR values
Image Base
Technique
Threshold
Based
40 44
39 41
34 42
35 41
36 42
32 39
33 38
45 49
23 34
45 49
46 52
45 46
Table 2
0
0.1
0.2
0.3
0.4
0.5
1 3 5 7 9 11
Base
Technique
Threshold
Based
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 100
Fig. 8 Graphical representation of PSNR values
Analysis: Under the comparative analysis of two
perspectives on the basis of PSNR value, the comparative
lower PSNR value of the threshold based technique makes
it more suitable for LP under foggy conditions.
4.4 Comparative Graph for ASPECT RATIO values
Image Base
Technique
Threshold
Based
0.4 0.5
0.4 0.6
0.5 0.6
0.5 0.7
0.6 0.8
0.7 0.9
0.5 0.6
0.4 0.7
0.5 0.6
0.4 0.6
0.4 0.9
0.5 0.6
Table 3
Fig.9 Graphical representations of Aspect ratio values
Analysis: Under the comparative analysis of two
perspectives based on Aspect Ratio value. The Threshold
based technique has higher Aspect Ratio value due to
which the image extracted will be of equal size as
compared to the original image under foggy conditions
making it more reliable.
4.5 Comparative Tabular and Graphical
representation for SSIM values
Image Base
Technique
Threshold
Based
0.4 0.5
0.4 0.6
0.5 0.6
0.5 0.7
0.6 0.8
0.7 0.9
0.5 0.6
0.4 0.7
0.5 0.6
0.4 0.6
0.4 0.9
0.5 0.6
Table 4
0
10
20
30
40
50
60
1 3 5 7 9 11
Base
Technique
Threshold
Based
0
0.2
0.4
0.6
0.8
1
1 3 5 7 9 11
Base
Technique
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 101
Conference on Electronic Systems, Signal Processing and
Computing Technologies.
Fig. 9 Graphical representation of SSIM values
Analysis: Under the comparative analysis of two
perspectives based on SSIM value. As compared to the base
technique the Threshold based technique has Higher SSIM
value which means images with less clarity under contrast
background provides results.
V. CONCLUSION
The calculations and comparisons carried out in our
research work states that optimum threshold based
technique is the better approach for image segmentation
.Since image of any resolution is used as an input and
various image processing steps are carried out easily.
Thus, it remains better image segmentation technique as
compared to other techniques. Under foggy conditions,
when image is blurr, the same technique can extract the
letters once denoising is done i.e. the image is enhanced in
specific region of interest. In research work various
performance parameters like MSE, PSNR, SSIM, Aspect
ratio are compared with the existing technique and the
improved results are compared in tabular form for every
parameter.
VI. FUTURE WORK
The research can be enhanced in this topic by further
considering the uncontrolled dataset. In our Current
research the threshold based technique is applied on
controlled image set and hence the results are regenerated
on the controlled dataset. In future this dataset can be
enhanced for further testing the technique.
REFERENCES
[1] Mrs. Soni Chaturvedi Ms. Rutika Titre Ms. Neha
Sondhiya “Review of Handwritten Pattern Recognition of
Digits and Special characters using Feed Forward Neural
Network and Izhikevich NeuralModel”, 2014 International
0
0.2
0.4
0.6
0.8
1
1 3 5 7 9 11
Base
Technique
Threshold
Based
[5] B. K. Verma, “Handwritten Hindi character recognition
using multilayer perceptron and radial basis function
neural networks”, Proc. of the IEEE Int. Conf. on Neural
Networks, pp. 2111-2115, 2002.
[6] Zili-Chen, Zuxue-Wei, ” A Handwriting Numeral
Character Recognition System”, ©2010 IEEE.
[7] K.S. Sharma, A.R. Karwankar, and A.S. Bhalchandra,
“Devnagari character recognition using self organizing
maps”, Proc. of the IEEE Int. Conf. on Communication
Control and Computing Tech., pp. 687-691, 2010.
[8] S. Shelke and S. Apte, “Multistage Handwritten Marathi
Compound Character Recognition Using Neural Networks”,
Journal of Pattern Recognition Research 2, 2011, pp. 253-
268.
[9] C. Y. Suen , R. Legault , C. Nadal , M. Cheriet and L. Lam
"Building a new generation of handwriting recognition
systems", Pattern Recognition Letters, vol. 14, pp.305 -315
1993
[10] G. X. Li and Î’. X. Shi "A modified current mode
hamming neural network for totally unconstrained
handwritten digit recognition", IJCNN'98 and Research
(IJSR) 10-11 April 2015.
[11]Zhong Qu and Li Hang Research on “Image
Segmentation Based on the Improved Otsu Algorithm”,
2010.
[12]W. X. Kang, Q. Q. Yang, R. R. Liang ,“The Comparative
Research on Image Segmentation Algorithms”, IEEE
Conference on ETCS, pp. 703-707, 2009.
[13]Khushboo Khurana, and Reetu Awasthi, “Techniques
for Object Recognition in Images and Multi-Object
Detection”, International Journal of Advanced Research in
Computer Engineering & Technology (IJARCET) Vol 2,
Issue 4, April 2013.
[14] Z. Ningbo, W. Gang, Y. Gaobo, and D. Weiming, “A Fast
2d Otsu Thresholding algorithm based on Improved
Histogram,” in Pattern Recognition, 2009, pp. 1–5.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 102
[15] S. Janarthanam1, V. Thiagarasu and K. Somasundram,
“Texture-Based Image Reference based on Multistage Sub-
Image Matching”, 2013.
[16] L. Dongju and Y. Jian,“Otsu method and k-means” ,
2009,Ninth International Conference, vol. 1, 2009, pp.
344–349.
[17] Hetal J. Vala and Astha Baxi, “A Review on Otsu
segmentation algorithm”, IJARCET Vol 2, Issue 2, February
2013.
[18] LIU Jian-zhuang, Li Wen-qing, “The Automatic
threshold of gray level pictures via Two- dimentional Otsu
Method”, Acta Automatic Sinica,1993.
[19] J. Gong, L. Li, and W. Chen, “Fast recursive algorithms
for two-dimensional Thresholding,” Pattern Recognition,
vol. 31, no. 3, pp. 295–300, 1998.
[20] Otsu N., “A threshold selection method from gray-
level histogram,” IEEE Trans. On System Man Cybernetics,
1979, Vol. 9, No. 1, pp. 62- 66.
[21] Hanen Chenini1, Jean Pierre Dérutin1, Romuald
Aufrère Roland Chapuis, “Homogeneous Multistage
Architecture for real-time Image Processing”, pp. 33-38.
[22]Himanshu makkar and Aditya Pundir, “Image Analysis
using improved Otsu’s thresholding method”, International
Journal on Recent and Innovation Trends in Computing
and Communication, pp. 2122-2126

More Related Content

PDF
Stereo Matching by Deep Learning
PDF
Pose estimation from RGB images by deep learning
PDF
3D reconstruction
PDF
Depth Fusion from RGB and Depth Sensors III
PDF
Fisheye Omnidirectional View in Autonomous Driving II
PDF
3-d interpretation from single 2-d image for autonomous driving II
PDF
Depth Fusion from RGB and Depth Sensors IV
PDF
3-d interpretation from single 2-d image IV
Stereo Matching by Deep Learning
Pose estimation from RGB images by deep learning
3D reconstruction
Depth Fusion from RGB and Depth Sensors III
Fisheye Omnidirectional View in Autonomous Driving II
3-d interpretation from single 2-d image for autonomous driving II
Depth Fusion from RGB and Depth Sensors IV
3-d interpretation from single 2-d image IV

What's hot (20)

PDF
3-d interpretation from single 2-d image III
PDF
LiDAR-based Autonomous Driving III (by Deep Learning)
PDF
Deep vo and slam ii
PDF
3-d interpretation from stereo images for autonomous driving
PDF
Fisheye Omnidirectional View in Autonomous Driving
PDF
3-d interpretation from single 2-d image for autonomous driving
PDF
Depth Fusion from RGB and Depth Sensors II
PDF
camera-based Lane detection by deep learning
PDF
Deep learning for 3-D Scene Reconstruction and Modeling
PDF
Driving Behavior for ADAS and Autonomous Driving VII
PDF
Deep learning for image video processing
PDF
Deep Learning’s Application in Radar Signal Data II
DOCX
Survey 1 (project overview)
PDF
Depth Fusion from RGB and Depth Sensors by Deep Learning
PDF
Lidar for Autonomous Driving II (via Deep Learning)
PDF
Ad04603175180
PDF
fusion of Camera and lidar for autonomous driving II
PDF
Passive stereo vision with deep learning
PDF
Basics of image processing & analysis
PDF
Pedestrian behavior/intention modeling for autonomous driving V
3-d interpretation from single 2-d image III
LiDAR-based Autonomous Driving III (by Deep Learning)
Deep vo and slam ii
3-d interpretation from stereo images for autonomous driving
Fisheye Omnidirectional View in Autonomous Driving
3-d interpretation from single 2-d image for autonomous driving
Depth Fusion from RGB and Depth Sensors II
camera-based Lane detection by deep learning
Deep learning for 3-D Scene Reconstruction and Modeling
Driving Behavior for ADAS and Autonomous Driving VII
Deep learning for image video processing
Deep Learning’s Application in Radar Signal Data II
Survey 1 (project overview)
Depth Fusion from RGB and Depth Sensors by Deep Learning
Lidar for Autonomous Driving II (via Deep Learning)
Ad04603175180
fusion of Camera and lidar for autonomous driving II
Passive stereo vision with deep learning
Basics of image processing & analysis
Pedestrian behavior/intention modeling for autonomous driving V
Ad

Similar to Automatic License Plate Detection in Foggy Condition using Enhanced OTSU Technique (20)

PDF
An Efficient Model to Identify A Vehicle by Recognizing the Alphanumeric Char...
PDF
40120140501008
PDF
Final Thesis Presentation Licenseplaterecognitionincomplexscenes
PDF
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
PDF
Iaetsd heuristics to detect and extract license plates
PDF
A novel method for character segmentation of vehicle
PDF
Automated License Plate Recognition for Toll Booth Application
PDF
A design of license plate recognition system using convolutional neural network
PDF
Al4103216222
PDF
Automatic Number Plate Recognition System (ANPR) A Survey.pdf
PDF
Number Plate Recognition of Still Images in Vehicular Parking System
PPTX
REAL-TIME SCENE TEXT LOCALIZATION AND RECOGNITION ppt.pptx
PDF
Tracking number plate from vehicle using
PDF
Iisrt subha guru
PDF
A feature based approach for license plate
PDF
Thesis Licenseplaterecognitionincomplexscenes Fulldocument
PDF
An Intelligent Control System Using an Efficient License Plate Location and R...
PDF
Thesis
PDF
Licence Plate Recognition Using Supervised Learning and Deep Learning
PDF
IRJET- Digit Identification in Natural Images
An Efficient Model to Identify A Vehicle by Recognizing the Alphanumeric Char...
40120140501008
Final Thesis Presentation Licenseplaterecognitionincomplexscenes
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
Iaetsd heuristics to detect and extract license plates
A novel method for character segmentation of vehicle
Automated License Plate Recognition for Toll Booth Application
A design of license plate recognition system using convolutional neural network
Al4103216222
Automatic Number Plate Recognition System (ANPR) A Survey.pdf
Number Plate Recognition of Still Images in Vehicular Parking System
REAL-TIME SCENE TEXT LOCALIZATION AND RECOGNITION ppt.pptx
Tracking number plate from vehicle using
Iisrt subha guru
A feature based approach for license plate
Thesis Licenseplaterecognitionincomplexscenes Fulldocument
An Intelligent Control System Using an Efficient License Plate Location and R...
Thesis
Licence Plate Recognition Using Supervised Learning and Deep Learning
IRJET- Digit Identification in Natural Images
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...

Recently uploaded (20)

PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
Well-logging-methods_new................
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPTX
Construction Project Organization Group 2.pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
PPT on Performance Review to get promotions
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
Geodesy 1.pptx...............................................
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
OOP with Java - Java Introduction (Basics)
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
additive manufacturing of ss316l using mig welding
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Well-logging-methods_new................
Foundation to blockchain - A guide to Blockchain Tech
Construction Project Organization Group 2.pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PPT on Performance Review to get promotions
UNIT 4 Total Quality Management .pptx
Internet of Things (IOT) - A guide to understanding
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Geodesy 1.pptx...............................................
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
OOP with Java - Java Introduction (Basics)
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
additive manufacturing of ss316l using mig welding

Automatic License Plate Detection in Foggy Condition using Enhanced OTSU Technique

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 96 Automatic License Plate Detection in Foggy Condition using Enhanced OTSU Technique Khushbu1 Isha Vats2 1Student, Department of Computer Engineering, CGC Landran Mohali, Punjab,India. 2Professor, Department of Computer Engineering, CGC Landran Mohali, Punjab,India ----------------------------------------------------------------------------------***--------------------------------------------------------------------------------- Abstract- Automatic detection of license plate (LP) is to localize a license plate region from an image without human involvement. So far a number of methods have been introduced for automatic license plate detection (ALPD), but most of them do not consider hazardous image conditions that exist in many real driving situations. OTSU based technique is best suited for hazardous image conditions having foggy weather effects, tilted LP area. In this technique after denoising and normalization of the image, the digits and characters within the image can be extracted. In this paper large database set of LPs under different conditions like clear images and images with foggy effects is considered and various performance parameters like MSE, PSNR, SSIM and Aspect Ratio are considered to extract the results. These parameters have shown improvement with percentage 14.93%, 14.12%, 39.21% and 40% respectively. Key term: Neural Network, HMM, foggy I. INTRODUCTION Automatic license plate detection (ALPD) involved extraction of vehicle's license plate (LP) area from an image without human intervention. It is one of the important stages of automatic LP recognition (ALPR) system [1].In an ALPR system, there are three major stages: i) acquisition of a car image by an image capturing device; ii) detection of the potential LP area from the image; iii) feature extraction and recognition of characters from the LP area. The objective of an ALPR system is automatic identification of a vehicle by reading the LP data from an image or a video. In an ALPR system, stationary cameras are mounted on the road signs, street lights, buildings or highway overpass for capturing the image of the vehicle [2]. Then the captured image goes through a software system that detects possible LP location in the image, and converts the LP information into a computer readable format. The recovered identity of the vehicle can be used in real time or stored in the database for future. In an ALPR system, LP detection is the most crucial stage and the performance of the whole system highly depends on it [3]. In the detection stage, we need to deal with a number of important issues, such as: i. Hazardous weather conditions (rainy and foggy) Hazardous background (presence of non-LP objects in the background) ii. Low contrast image environments (indoor, night, blurry and uneven illumination) iii. Horizontally tilted LP in the image due to camera position. Collectively all these issues are identified as the hazardous image conditions. All these issues make ALPD a challenging research topic. In our research work we mainly focus on automatic detection of license plate with foggy effects using enhanced Otsu technique. The enhanced Otsu technique is based on assigning labels to the image uniformly and extraction of digits and characters is performed based on various performance parameters such as MSE, PSNR, SSIM and Aspect Ratio. MSE (Mean Square Error): The Mean Square Error (MSE) of a procedure for estimating an unobserved quantity measures the average of the squares of the errors or deviations, that is, the difference between the estimator and what is estimated. It is a method used to check for errors. Two MSEs are calculated and then are compared to find the accuracy of an image. It calculates the quantitative score that helps to measure the degree of homogeneity or the level of error or distortion between them. When a zero-mean random source x passes through a cascade of K additive independent zero means distortions. A lower MSE value will result in higher quality image. PSNR (Peak Signal-to Noise Ratio): The ratio between the maximum possible power of a signal and the power of corrupting noise that affects the fidelity of its representation. Because many signals have a very wide dynamic range PSNR is usually expressed in terms of the logarithmic decibel scale. PSNR is most commonly used to measure the quality of reconstruction of lossy compression codec (e.g., for image compression). The
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 97 signal in this case is the original data, and the noise is the error introduced by compression. When comparing compression codec, PSNR is an approximation to human perception of reconstruction quality. Although a higher PSNR generally indicates that the reconstruction is of higher quality, in some cases it may not. SSIM (Structural Similarity Index Measure): It is well known quality metric that is used to calculate the similarity between two images. It is designed by modeling any image distortion as three factors that are contrast distortion, luminance distortion and correlation. The SSIM index is a full reference metric, the measurement or prediction of image quality is based on an initial uncompressed or distortion-free image as reference. SSIM is designed to improve on traditional methods such as peak signal-to-noise ratio (PSNR) and mean squared error (MSE). Aspect Ratio: The aspect ratio of an image describes the proportional relationship between its width and its height. It is commonly expressed as two numbers separated by a colon. For an x:y aspect ratio, no matter how big or small the image is, if the width is divided into x units of equal length and the height is measured using this same length unit, the height will be measured to be y units. II. LITERATURE SURVEY [1] S. Archana(2016) et al: This paper presents VLSI implementation of handwritten digit recognition system based on analog neural network. The recognition system is based on the least hamming distance neural network which both learning and classification. This type of circuit can be utilized by visual tracking system providing them ability to have backup recognition utility in case first recognized pattern proves to be incorrect. [2] Mrs. Soni Chaturvedi(2014) et al: Neural Networks are found as an effective tool for pattern recognition. In this paper a Feed Forward Neural Network and an Izhikevich neuron model is applied for pattern recognition of Digits and Special characters. III. FLOWCHART Fig. 1 Flowchart explaining the steps involved IV. Proposed Algorithm Step1 Input the image from the outer source, the source may be CCTV camera capturing real time pictures of vehicles. Step2 Preprocess the image. The preprocessing of image includes resizing and denoising. a. Resizing of an image involves neutralization of size along height and width as well. b. Denoising is done with the help of Salt and pepper technique and Gaussian technique. Step3 Employ the optimum threshold based technique in order to segment the image. a. Identify the optimum threshold using OTSU based on ~im2bw (image n, threshold) function. Step4 Extract the text characters from the image. a. Identify the text based on bounding box function as propied=regionprops(L,'BoundingBox').
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 98 Step5 Ignore the unwanted letters from the segmented components. a. Except character all the remaining points are declared unwanted using [L Ne] =bwlabel(imagen) function. Step6 Store the required components into the memory buffer. a. Store the extracted text letters into the local disk space. V.BASIC STEPS FOLLOWED 1. Read the image: An image residing in the local directory is fetched and further stored in the form of matrix where intensity values of pixels are represented across rows and columns. Fig .2 Intensity values of image stored in the form of matrix 2. RGB to grayscale conversion: Color images are often built of several stacked color channels each of them representing value levels of the given channel. For example, RGB images are composed of three independent channels for red, green and blue primary color components. Here is an example of color channel splitting of a full RGB color image. The column at left shows the isolated color channels in natural colors, while at right are their grayscale equivalences: Fig. 3 Conversion of an image from RGB to grayscale In MATLAB, I= rgb2gray (RGB) converts the RGB image to the grayscale image of intensity I. The rgb2gray function converts RGB images to grayscale by eliminating the hue and saturation information while retaining the luminance. 3. Optimum thresholding based segmentation: An image contains only two principal regions (object and background) and the number of misclassified pixels can be minimized with the help of prior knowledge about the distributions of the gray level values that make up the object and the background. 4. Extraction of ROI: In order to extract the segment of image called ROI the characters of number plate are marked with the help of green bounding box. Further, the required components of image are stored within the corresponding local directory. The MSE, SSIM, PSNR and Aspect ratio values are then compared for base technique and Otsu technique. Fig. 4 Extraction of ROI using green bounding box IV. RESULTS In order to avoid complexity in this research paper, performance parameters of single license plate are calculated and compared.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 99 4.1 Dataset taken Fig. 5 License Plate used as dataset Fig .6 License Plate used as dataset 4.2 Comparative tabular and graphical representation of MSE values Image Base Technique OTSU Based 0.23 0.34 0.21 0.24 0.20 0.21 0.17 0.23 0.161 0.19 0.11 0.12 0.23 0.28 0.28 0.29 0.34 0.39 0.23 0.27 0.24 0.28 0.27 0.30 Table 1 Fig. 7 Graphical representation of MSE values Analysis: In comparative analysis of MSE values of base technique and threshold based technique, threshold based technique yields higher MSE values and hence performs better for LP under foggy conditions. 4.3 Comparative tabular and graphical representation for PSNR values Image Base Technique Threshold Based 40 44 39 41 34 42 35 41 36 42 32 39 33 38 45 49 23 34 45 49 46 52 45 46 Table 2 0 0.1 0.2 0.3 0.4 0.5 1 3 5 7 9 11 Base Technique Threshold Based
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 100 Fig. 8 Graphical representation of PSNR values Analysis: Under the comparative analysis of two perspectives on the basis of PSNR value, the comparative lower PSNR value of the threshold based technique makes it more suitable for LP under foggy conditions. 4.4 Comparative Graph for ASPECT RATIO values Image Base Technique Threshold Based 0.4 0.5 0.4 0.6 0.5 0.6 0.5 0.7 0.6 0.8 0.7 0.9 0.5 0.6 0.4 0.7 0.5 0.6 0.4 0.6 0.4 0.9 0.5 0.6 Table 3 Fig.9 Graphical representations of Aspect ratio values Analysis: Under the comparative analysis of two perspectives based on Aspect Ratio value. The Threshold based technique has higher Aspect Ratio value due to which the image extracted will be of equal size as compared to the original image under foggy conditions making it more reliable. 4.5 Comparative Tabular and Graphical representation for SSIM values Image Base Technique Threshold Based 0.4 0.5 0.4 0.6 0.5 0.6 0.5 0.7 0.6 0.8 0.7 0.9 0.5 0.6 0.4 0.7 0.5 0.6 0.4 0.6 0.4 0.9 0.5 0.6 Table 4 0 10 20 30 40 50 60 1 3 5 7 9 11 Base Technique Threshold Based 0 0.2 0.4 0.6 0.8 1 1 3 5 7 9 11 Base Technique
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 101 Conference on Electronic Systems, Signal Processing and Computing Technologies. Fig. 9 Graphical representation of SSIM values Analysis: Under the comparative analysis of two perspectives based on SSIM value. As compared to the base technique the Threshold based technique has Higher SSIM value which means images with less clarity under contrast background provides results. V. CONCLUSION The calculations and comparisons carried out in our research work states that optimum threshold based technique is the better approach for image segmentation .Since image of any resolution is used as an input and various image processing steps are carried out easily. Thus, it remains better image segmentation technique as compared to other techniques. Under foggy conditions, when image is blurr, the same technique can extract the letters once denoising is done i.e. the image is enhanced in specific region of interest. In research work various performance parameters like MSE, PSNR, SSIM, Aspect ratio are compared with the existing technique and the improved results are compared in tabular form for every parameter. VI. FUTURE WORK The research can be enhanced in this topic by further considering the uncontrolled dataset. In our Current research the threshold based technique is applied on controlled image set and hence the results are regenerated on the controlled dataset. In future this dataset can be enhanced for further testing the technique. REFERENCES [1] Mrs. Soni Chaturvedi Ms. Rutika Titre Ms. Neha Sondhiya “Review of Handwritten Pattern Recognition of Digits and Special characters using Feed Forward Neural Network and Izhikevich NeuralModel”, 2014 International 0 0.2 0.4 0.6 0.8 1 1 3 5 7 9 11 Base Technique Threshold Based [5] B. K. Verma, “Handwritten Hindi character recognition using multilayer perceptron and radial basis function neural networks”, Proc. of the IEEE Int. Conf. on Neural Networks, pp. 2111-2115, 2002. [6] Zili-Chen, Zuxue-Wei, ” A Handwriting Numeral Character Recognition System”, ©2010 IEEE. [7] K.S. Sharma, A.R. Karwankar, and A.S. Bhalchandra, “Devnagari character recognition using self organizing maps”, Proc. of the IEEE Int. Conf. on Communication Control and Computing Tech., pp. 687-691, 2010. [8] S. Shelke and S. Apte, “Multistage Handwritten Marathi Compound Character Recognition Using Neural Networks”, Journal of Pattern Recognition Research 2, 2011, pp. 253- 268. [9] C. Y. Suen , R. Legault , C. Nadal , M. Cheriet and L. Lam "Building a new generation of handwriting recognition systems", Pattern Recognition Letters, vol. 14, pp.305 -315 1993 [10] G. X. Li and Î’. X. Shi "A modified current mode hamming neural network for totally unconstrained handwritten digit recognition", IJCNN'98 and Research (IJSR) 10-11 April 2015. [11]Zhong Qu and Li Hang Research on “Image Segmentation Based on the Improved Otsu Algorithm”, 2010. [12]W. X. Kang, Q. Q. Yang, R. R. Liang ,“The Comparative Research on Image Segmentation Algorithms”, IEEE Conference on ETCS, pp. 703-707, 2009. [13]Khushboo Khurana, and Reetu Awasthi, “Techniques for Object Recognition in Images and Multi-Object Detection”, International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Vol 2, Issue 4, April 2013. [14] Z. Ningbo, W. Gang, Y. Gaobo, and D. Weiming, “A Fast 2d Otsu Thresholding algorithm based on Improved Histogram,” in Pattern Recognition, 2009, pp. 1–5.
  • 7. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 11 | Nov -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 102 [15] S. Janarthanam1, V. Thiagarasu and K. Somasundram, “Texture-Based Image Reference based on Multistage Sub- Image Matching”, 2013. [16] L. Dongju and Y. Jian,“Otsu method and k-means” , 2009,Ninth International Conference, vol. 1, 2009, pp. 344–349. [17] Hetal J. Vala and Astha Baxi, “A Review on Otsu segmentation algorithm”, IJARCET Vol 2, Issue 2, February 2013. [18] LIU Jian-zhuang, Li Wen-qing, “The Automatic threshold of gray level pictures via Two- dimentional Otsu Method”, Acta Automatic Sinica,1993. [19] J. Gong, L. Li, and W. Chen, “Fast recursive algorithms for two-dimensional Thresholding,” Pattern Recognition, vol. 31, no. 3, pp. 295–300, 1998. [20] Otsu N., “A threshold selection method from gray- level histogram,” IEEE Trans. On System Man Cybernetics, 1979, Vol. 9, No. 1, pp. 62- 66. [21] Hanen Chenini1, Jean Pierre Dérutin1, Romuald Aufrère Roland Chapuis, “Homogeneous Multistage Architecture for real-time Image Processing”, pp. 33-38. [22]Himanshu makkar and Aditya Pundir, “Image Analysis using improved Otsu’s thresholding method”, International Journal on Recent and Innovation Trends in Computing and Communication, pp. 2122-2126