Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
licenseplates
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Taddeüs Kroes
licenseplates
Commits
65070819
Commit
65070819
authored
13 years ago
by
Taddeüs Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Updated LBP section in plan.tex.
parent
8acbc023
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/plan.tex
+17
-20
17 additions, 20 deletions
docs/plan.tex
with
17 additions
and
20 deletions
docs/plan.tex
+
17
−
20
View file @
65070819
...
...
@@ -99,33 +99,30 @@ at either the left of right side of the image.
\subsection
{
Local binary patterns
}
Once we have separate digits and characters, we inten
d
to use Local Binary
Once we have separate digits and characters, we inten
t
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 license plate are mainly build up of straight lines and simple curves, it
should theoretically be possible to identify these using Local Binary Patterns.
Patters are a way to classify a texture based on the distribution of edge
directions in the image. Since letters on a license plate consist mainly of
straight lines and simple curves, LBP should be suited to identify these.
T
his will actually be the first thing to implement, since it is not known if it
will
giv
e the
desired results. Our first goal is therefore a proof of concept
that using LBP's is a good way to determine which character we are dealing
with
.
T
o our knowledge, LBP has yet not been used in this manner before. Therefore,
it
will
b
e the
first thing to implement, to see if it lives up to the
expectations. When the proof of concept is there, it can be used in the final
program
.
Important to note is that by now, we have transformed this letter to a standard
size, which eliminates the need to normalize the histograms generated by the
algorithm.
Important to note is that due to the normalization of characters before
applying LBP. Therefore, no further normalization is needed on the histograms.
Once we have a Local Binary Pattern of the character, we use a Support Vector
Machine to determine what letter we are dealing with. For this, the feature
vector of the image will be a concatenation of the histograms of the cells in
the image.
Given the LBP of a character, a Support Vector Machine can be used to classify
the character to a character in a learning set. The SVM uses
\subsection
{
Matching the database
}
In order to recognize what character we are dealing with, we use a Support
Vector Machine. The SVM can be trained with a subsection of the given dataset
called the ''Learning set''. Once trained, the entire classifier can be saved
as a Pickle object
\footnote
{
See
Given the LBP of a character, a Support Vector Machine can be used to classify
the character to a character in a learning set. The SVM uses the collection of
histograms of an image as a feature vector. The SVM can be trained with a
subsection of the given dataset called the ''Learning set''. Once trained, the
entire classifier can be saved as a Pickle object
\footnote
{
See
\url
{
http://docs.python.org/library/pickle.html
}}
for later usage.
\end{document}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment