Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
licenseplates
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
licenseplates
Commits
dd5d084a
Commit
dd5d084a
authored
Nov 18, 2011
by
Richard Torenvliet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made some changes to plan.tex
parent
efcd73a6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
docs/plan.tex
docs/plan.tex
+13
-11
No files found.
docs/plan.tex
View file @
dd5d084a
...
...
@@ -22,12 +22,12 @@ Fabi\'en Tesselaar
\section
{
Problem description
}
l
icense plates are used for uniquely identifying motorized vehicles and are
L
icense plates are used for uniquely identifying motorized vehicles and are
made to be read by humans from great distances and in all kinds of weather
conditions.
Reading license plates with a computer is much more difficult. Our dataset
contains photographs from license plates from all sorts of angles and distance.
contains photographs from license plates from all sorts of angles and distance
s
.
Meaning that not only do we have to implement a method to read the actual
characters, but also have to determine the location of the license plate and its
transformation due to different angles.
...
...
@@ -50,7 +50,7 @@ In short our program must be able to do the following:
\section
{
Solution
}
Now that
we know the problem we can start with stating our
solution. This will
Now that
the problem is defined, the next step is stating a
solution. This will
come in a few steps as well.
\subsection
{
Transformation
}
...
...
@@ -68,14 +68,16 @@ we can ask ourselves here, is whether we want to concentrate ourselves on
these exceptional cases. By law, license plates have to be readable. Therefore,
we will first direct our attention at getting a higher score in the 'regular'
test set before addressing these cases. Looking at how LBP work, there is a good
change that our features are
, to a certain degree, indifferent to nois
e on the
plates.
change that our features are
indifferent to noise to a certain degre
e on the
licence
plates.
\subsection
{
Extracting a letter
}
Because we are already given the locations of the characters, we only need to
transform those locations using the same perspective transform used to to
create a front facing license plate.
Because the locations of the characters are already given, the next step is to
transform the characters to a normalized manner. The letter W is used as a
fixing point to normalize the width of all the characters, because W is the
broadest character of the alphabet. Also the height of the characters are
normalized but its depending on a trial and error fase.
\begin{enumerate}
\item
Crop the image in such a way that the character precisely fits the image.
...
...
@@ -84,12 +86,12 @@ create a front facing license plate.
\end{enumerate}
The resulting image will always have the same size, the character contained will
always be of the same height, and the character will alway be positioned at
always be of the same height, and the character will alway
s
be positioned at
either the left of right side of the image.
\subsection
{
Local binary patterns
}
Once
we have separate digits and characters
, we intend to use Local Binary
Once
separate digits and characters are found
, we intend to use Local Binary
Patterns to determine what character or digit we are dealing with. Local Binary
Patters are a way to classify a texture, because it can create a histogram which
describes the distribution of line directions in the image. Since letters on a
...
...
@@ -111,7 +113,7 @@ the image.
\subsection
{
Matching the database
}
In order to determine what character we are dealing with, we use a SVM, as said
In order to determine what character
s
we are dealing with, we use a SVM, as said
before. To prevent us from having to teach this SVM each time we start the
program, we are going to save the SVM to a pickle object, which packs an object
in Python to a certain data format, so it can be unpacked somewhere else, or, in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment