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
665a5d0b
Commit
665a5d0b
authored
13 years ago
by
Taddeüs Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Used native grayscale function instead of pylab.
parent
c105993c
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
src/LBP.py
+19
-27
19 additions, 27 deletions
src/LBP.py
with
19 additions
and
27 deletions
src/LBP.py
100644 → 100755
+
19
−
27
View file @
665a5d0b
from
pylab
import
imread
,
figure
,
show
,
imshow
,
zeros
,
axis
#!/usr/bin/python
import
Image
as
im
def
domainIterator
(
image
):
"""
Iterate over the pixels of an image.
"""
for
y
in
xrange
(
image
.
shape
[
0
]):
for
x
in
xrange
(
image
.
shape
[
1
]):
yield
y
,
x
def
to_grayscale
(
image
):
"""
Turn a RGB image to a grayscale image.
"""
result
=
zeros
(
image
.
shape
[:
2
])
for
x
in
xrange
(
len
(
image
)):
for
y
in
xrange
(
len
(
image
[
0
])):
result
[
x
][
y
]
=
image
[
x
][
y
].
sum
()
/
3
return
result
# Divide the examined window to cells (e.g. 16x16 pixels for each cell).
# For each pixel in a cell, compare the pixel to each of its 8 neighbors
# (on its left-top, left-middle, left-bottom, right-top, etc.). Follow the
# For each pixel in a cell, compare the pixel to each of its 8 neighbors
# (on its left-top, left-middle, left-bottom, right-top, etc.). Follow the
# pixels along a circle, i.e. clockwise or counter-clockwise.
# Where the center pixel's value is greater than the neighbor, write "1".
# Otherwise, write "0". This gives an 8-digit binary number (which is usually
# Where the center pixel's value is greater than the neighbor, write "1".
# Otherwise, write "0". This gives an 8-digit binary number (which is usually
# converted to decimal for convenience).
# Compute the histogram, over the cell, of the frequency of each "number"
# occurring (i.e., each combination of which pixels are smaller and which are
# Compute the histogram, over the cell, of the frequency of each "number"
# occurring (i.e., each combination of which pixels are smaller and which are
# greater than the center).
# Optionally normalize the histogram. Concatenate normalized histograms of all
# cells. This gives the feature vector for the window.
image
=
imread
(
"
../images/test.png
"
)
image
=
to_grayscale
(
image
)
# Optionally normalize the histogram. Concatenate normalized histograms of all
# cells. This gives the feature vector for the window.
figure
()
imshow
(
image
,
cmap
=
'
gray
'
)
axis
(
'
off
'
)
show
()
image
=
im
.
open
(
"
../images/test.png
"
).
convert
(
'
L
'
)
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