SlideShare a Scribd company logo
1 of 7
Download to read offline
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

What's hot

Survey 1 (project overview)
Survey 1 (project overview)Survey 1 (project overview)
Survey 1 (project overview)
Ahmed Abd El-Fattah
ย 

What's hot (20)

3-d interpretation from single 2-d image III
3-d interpretation from single 2-d image III3-d interpretation from single 2-d image III
3-d interpretation from single 2-d image III
ย 
LiDAR-based Autonomous Driving III (by Deep Learning)
LiDAR-based Autonomous Driving III (by Deep Learning)LiDAR-based Autonomous Driving III (by Deep Learning)
LiDAR-based Autonomous Driving III (by Deep Learning)
ย 
Deep vo and slam ii
Deep vo and slam iiDeep vo and slam ii
Deep vo and slam ii
ย 
3-d interpretation from stereo images for autonomous driving
3-d interpretation from stereo images for autonomous driving3-d interpretation from stereo images for autonomous driving
3-d interpretation from stereo images for autonomous driving
ย 
Fisheye Omnidirectional View in Autonomous Driving
Fisheye Omnidirectional View in Autonomous DrivingFisheye Omnidirectional View in Autonomous Driving
Fisheye Omnidirectional View in Autonomous Driving
ย 
3-d interpretation from single 2-d image for autonomous driving
3-d interpretation from single 2-d image for autonomous driving3-d interpretation from single 2-d image for autonomous driving
3-d interpretation from single 2-d image for autonomous driving
ย 
Depth Fusion from RGB and Depth Sensors II
Depth Fusion from RGB and Depth Sensors IIDepth Fusion from RGB and Depth Sensors II
Depth Fusion from RGB and Depth Sensors II
ย 
camera-based Lane detection by deep learning
camera-based Lane detection by deep learningcamera-based Lane detection by deep learning
camera-based Lane detection by deep learning
ย 
Deep learning for 3-D Scene Reconstruction and Modeling
Deep learning for 3-D Scene Reconstruction and Modeling Deep learning for 3-D Scene Reconstruction and Modeling
Deep learning for 3-D Scene Reconstruction and Modeling
ย 
Driving Behavior for ADAS and Autonomous Driving VII
Driving Behavior for ADAS and Autonomous Driving VIIDriving Behavior for ADAS and Autonomous Driving VII
Driving Behavior for ADAS and Autonomous Driving VII
ย 
Deep learning for image video processing
Deep learning for image video processingDeep learning for image video processing
Deep learning for image video processing
ย 
Deep Learningโ€™s Application in Radar Signal Data II
Deep Learningโ€™s Application in Radar Signal Data IIDeep Learningโ€™s Application in Radar Signal Data II
Deep Learningโ€™s Application in Radar Signal Data II
ย 
Survey 1 (project overview)
Survey 1 (project overview)Survey 1 (project overview)
Survey 1 (project overview)
ย 
Depth Fusion from RGB and Depth Sensors by Deep Learning
Depth Fusion from RGB and Depth Sensors by Deep LearningDepth Fusion from RGB and Depth Sensors by Deep Learning
Depth Fusion from RGB and Depth Sensors by Deep Learning
ย 
Lidar for Autonomous Driving II (via Deep Learning)
Lidar for Autonomous Driving II (via Deep Learning)Lidar for Autonomous Driving II (via Deep Learning)
Lidar for Autonomous Driving II (via Deep Learning)
ย 
Ad04603175180
Ad04603175180Ad04603175180
Ad04603175180
ย 
fusion of Camera and lidar for autonomous driving II
fusion of Camera and lidar for autonomous driving IIfusion of Camera and lidar for autonomous driving II
fusion of Camera and lidar for autonomous driving II
ย 
Passive stereo vision with deep learning
Passive stereo vision with deep learningPassive stereo vision with deep learning
Passive stereo vision with deep learning
ย 
Basics of image processing & analysis
Basics of image processing & analysisBasics of image processing & analysis
Basics of image processing & analysis
ย 
Pedestrian behavior/intention modeling for autonomous driving V
Pedestrian behavior/intention modeling for autonomous driving VPedestrian behavior/intention modeling for autonomous driving V
Pedestrian behavior/intention modeling for autonomous driving V
ย 

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

Sparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image ProcessingSparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image Processing
Eswar Publications
ย 
Paper id 21201419
Paper id 21201419Paper id 21201419
Paper id 21201419
IJRAT
ย 
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
ย 

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

IRJET- 3D Vision System using Calibrated Stereo Camera
IRJET- 3D Vision System using Calibrated Stereo CameraIRJET- 3D Vision System using Calibrated Stereo Camera
IRJET- 3D Vision System using Calibrated Stereo Camera
ย 
Text Detection and Recognition in Natural Images
Text Detection and Recognition in Natural ImagesText Detection and Recognition in Natural Images
Text Detection and Recognition in Natural Images
ย 
Ay33292297
Ay33292297Ay33292297
Ay33292297
ย 
Ay33292297
Ay33292297Ay33292297
Ay33292297
ย 
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...
ย 
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
ย 
Survey paper on image compression techniques
Survey paper on image compression techniquesSurvey paper on image compression techniques
Survey paper on image compression techniques
ย 
Sparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image ProcessingSparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image Processing
ย 
Paper id 21201419
Paper id 21201419Paper id 21201419
Paper id 21201419
ย 
Adaptive Image Contrast with Binarization Technique for Degraded Document Image
Adaptive Image Contrast with Binarization Technique for Degraded Document ImageAdaptive Image Contrast with Binarization Technique for Degraded Document Image
Adaptive Image Contrast with Binarization Technique for Degraded Document Image
ย 
IRJET - Change Detection in Satellite Images using Convolutional Neural N...
IRJET -  	  Change Detection in Satellite Images using Convolutional Neural N...IRJET -  	  Change Detection in Satellite Images using Convolutional Neural N...
IRJET - Change Detection in Satellite Images using Convolutional Neural N...
ย 
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
ย 
Blind Source Camera Identification
Blind Source Camera Identification Blind Source Camera Identification
Blind Source Camera Identification
ย 
El4301832837
El4301832837El4301832837
El4301832837
ย 
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...
ย 
Intensity Enhancement in Gray Level Images using HSV Color Coding Technique
Intensity Enhancement in Gray Level Images using HSV Color Coding TechniqueIntensity Enhancement in Gray Level Images using HSV Color Coding Technique
Intensity Enhancement in Gray Level Images using HSV Color Coding Technique
ย 
Number Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking SystemNumber Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking System
ย 
Trajectory Based Unusual Human Movement Identification for ATM System
	 Trajectory Based Unusual Human Movement Identification for ATM System	 Trajectory Based Unusual Human Movement Identification for ATM System
Trajectory Based Unusual Human Movement Identification for ATM System
ย 
IRJET- Dynamic Traffic Management System
IRJET- Dynamic Traffic Management SystemIRJET- Dynamic Traffic Management System
IRJET- Dynamic Traffic Management System
ย 
EFFICIENT IMAGE RETRIEVAL USING REGION BASED IMAGE RETRIEVAL
EFFICIENT IMAGE RETRIEVAL USING REGION BASED IMAGE RETRIEVALEFFICIENT IMAGE RETRIEVAL USING REGION BASED IMAGE RETRIEVAL
EFFICIENT IMAGE RETRIEVAL USING REGION BASED IMAGE RETRIEVAL
ย 

More from 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

VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
SUHANI PANDEY
ย 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
ย 
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
dharasingh5698
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
amitlee9823
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 

Recently uploaded (20)

VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
ย 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdf
ย 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
ย 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
ย 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
ย 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
ย 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
ย 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
ย 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
ย 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
ย 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
ย 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
ย 
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
ย 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
ย 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
ย 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ย 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 

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