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
05568537
"app.php" did not exist on "2febdf1485482eb9e193258ede54da5e5f7bc4fc"
Commit
05568537
authored
13 years ago
by
Jayke Meijer
Browse files
Options
Downloads
Patches
Plain Diff
Added subsections to discussion.
parent
a918cecd
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/report.tex
+14
-8
14 additions, 8 deletions
docs/report.tex
with
14 additions
and
8 deletions
docs/report.tex
+
14
−
8
View file @
05568537
...
...
@@ -566,6 +566,8 @@ is not advisable to use.
There are a few points open for improvement. These are the following.
\subsection
{
Other Local Binary Patterns
}
We had some good results but of course there are more things to explore.
For instance we did a research on three different patterns. There are more
patterns to try. For instance we only tried (8,3)-, (8,5)- and
...
...
@@ -574,10 +576,11 @@ best result, for a wider range of neighbourhoods. We haven proven that the size
and number of points do influence the performance of the classifier, so further
research would be in place.
One important feature of our framework is that the LBP class can be changed by
an other technique. This may be a different algorithm than LBP. Also the
classifier can be changed in an other classifier. By applying these kind of
changes we can find the best way to recognize licence plates.
The expectation is that using a larger diameter pattern, but with the same
amount of points is worth trying. The theory behind that is that when using a
gaussian blur to reduce noise, the edges are blurred as well. By
\subsection
{
Context Information
}
We don't do assumption when a letter is recognized. For instance Dutch licence
plates exist of three blocks, two digits or two characters. Or for the new
...
...
@@ -587,6 +590,8 @@ case when one digit is most likely to follow by a second digit and not a
character. Maybe these assumption can help in future research to achieve a
higher accuracy rate.
\subsection
{
Speed up
}
A possibility to improve the performance speedwise would be to separate the
creation of the Gaussian kernel and the convolution. This way, the kernel can
be cached, which is a big improvement. At this moment, we calculate this kernel
...
...
@@ -595,10 +600,11 @@ standard Python function, but we realised too late that there is performance
loss due to this.
Another performance loss was introduced by checking for each pixel if it is
in the image. This induces a lot of function calls and four conditional checks
per pixel. A faster method would be to first set a border of black pixels
around the image, so the inImage function is now done implicitly because it
simply finds a black pixel if it falls outside the original image borders.
in the image. This induces one function call and four conditional checks
per pixel, which costs performance. A faster method would be to first set a
border of black pixels around the image, so the inImage function is now done
implicitly because it simply finds a black pixel if it falls outside the
original image borders.
\section
{
Conclusion
}
...
...
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