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
56fc1ca9
Commit
56fc1ca9
authored
13 years ago
by
unknown
Browse files
Options
Downloads
Patches
Plain Diff
LBP.py verwijderd, filter noise omgezet naar GuassianFilter klasse
parent
781de467
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/FilterNoise.py
+0
-29
0 additions, 29 deletions
src/FilterNoise.py
src/GaussianFilter.py
+39
-0
39 additions, 0 deletions
src/GaussianFilter.py
src/GaussianFilterTest.py
+9
-0
9 additions, 0 deletions
src/GaussianFilterTest.py
with
48 additions
and
29 deletions
src/FilterNoise.py
deleted
100644 → 0
+
0
−
29
View file @
781de467
from
scipy.ndimage
import
convolve1d
from
pylab
import
ceil
,
zeros
,
pi
,
e
,
exp
,
sqrt
,
array
def
f
(
x
,
s
):
"""
Return the value of a 1D Gaussian function for a given x and scale.
"""
return
exp
(
-
(
x
**
2
/
(
2
*
s
**
2
)))
/
(
sqrt
(
2
*
pi
)
*
s
)
def
gauss1
(
s
,
order
=
0
):
"""
Sample a one-dimensional Gaussian function of scale s.
"""
s
=
float
(
s
)
r
=
int
(
ceil
(
3
*
s
))
size
=
2
*
r
+
1
W
=
zeros
(
size
)
# Sample the Gaussian function
W
=
array
([
f
(
x
-
r
,
s
)
for
x
in
xrange
(
size
)])
if
not
order
:
# Make sure that the sum of all kernel values is equal to one
W
/=
W
.
sum
()
return
W
def
filterNoise
(
image
,
s
):
'''
Apply a gaussian blur to an image, to suppress noise.
'''
filt
=
gauss1
(
s
)
image
=
convolve1d
(
image
.
data
,
filt
,
axis
=
0
,
mode
=
'
nearest
'
)
return
convolve1d
(
image
,
filt
,
axis
=
1
,
mode
=
'
nearest
'
)
This diff is collapsed.
Click to expand it.
src/GaussianFilter.py
0 → 100644
+
39
−
0
View file @
56fc1ca9
from
GrayscaleImage
import
GrayscaleImage
from
scipy.ndimage
import
convolve1d
from
pylab
import
ceil
,
zeros
,
pi
,
e
,
exp
,
sqrt
,
array
class
GaussianFilter
:
def
__init__
(
self
,
scale
):
self
.
scale
=
scale
def
gaussian
(
self
,
x
):
'''
Return the value of a 1D Gaussian function for a given x and scale
'''
return
exp
(
-
(
x
**
2
/
(
2
*
self
.
scale
**
2
)))
/
(
sqrt
(
2
*
pi
)
*
self
.
scale
)
def
get_1d_gaussian_kernel
(
self
):
'''
Sample a one-dimensional Gaussian function of scale s
'''
radius
=
int
(
ceil
(
3
*
self
.
scale
))
size
=
2
*
radius
+
1
result
=
zeros
(
size
)
# Sample the Gaussian function
result
=
array
([
self
.
gaussian
(
x
-
radius
)
for
x
in
xrange
(
size
)])
# The sum of all kernel values is equal to one
result
/=
result
.
sum
()
return
result
def
get_filtered_copy
(
self
,
image
):
'''
Apply a gaussian blur to an image, to suppress noise.
'''
kernel
=
self
.
get_1d_gaussian_kernel
()
image
=
convolve1d
(
image
.
data
,
kernel
,
axis
=
0
,
mode
=
'
nearest
'
)
return
GrayscaleImage
(
None
,
convolve1d
(
image
,
kernel
,
axis
=
1
,
mode
=
'
nearest
'
))
def
get_scale
(
self
):
return
self
.
scale
def
set_scale
(
self
,
scale
):
self
.
scale
=
float
(
scale
)
scale
=
property
(
get_scale
,
set_scale
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/Filter
Noise
Test.py
→
src/
Gaussian
FilterTest.py
+
9
−
0
View file @
56fc1ca9
from
FilterNoise
import
filterNoise
from
FilterNoise
import
GaussianFilter
from
GrayscaleImage
import
GrayscaleImage
from
GrayscaleImage
import
GrayscaleImage
# Get the image
image
=
GrayscaleImage
(
'
../images/plate.png
'
)
image
=
GrayscaleImage
(
'
../images/plate.png
'
)
output_image
=
filterNoise
(
image
,
1.4
)
filter
=
GaussianFilter
(
1.4
)
output_image
=
filter
.
get_filtered_copy
(
image
)
# Show the licenseplate
output_image
=
GrayscaleImage
(
None
,
output_image
)
output_image
.
show
()
output_image
.
show
()
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