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
8f8ed460
Commit
8f8ed460
authored
Dec 21, 2011
by
Richard Torenvliet
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:taddeus/licenseplates
parents
6dee71df
6de11197
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
324 additions
and
313 deletions
+324
-313
docs/report.tex
docs/report.tex
+314
-276
src/Histogram.py
src/Histogram.py
+6
-4
src/Interpolation_USELESS.py
src/Interpolation_USELESS.py
+0
-30
src/find_svm_params.py
src/find_svm_params.py
+4
-3
No files found.
docs/report.tex
View file @
8f8ed460
This diff is collapsed.
Click to expand it.
src/Histogram.py
View file @
8f8ed460
...
@@ -6,12 +6,14 @@ class Histogram:
...
@@ -6,12 +6,14 @@ class Histogram:
self
.
max
=
max
self
.
max
=
max
def
add
(
self
,
number
):
def
add
(
self
,
number
):
bin_index
=
self
.
get_bin_index
(
number
)
#bin_index = self.get_bin_index(number)
self
.
bins
[
bin_index
]
+=
1
#self.bins[bin_index] += 1
self
.
bins
[
number
]
+=
1
def
remove
(
self
,
number
):
def
remove
(
self
,
number
):
bin_index
=
self
.
get_bin_index
(
number
)
#bin_index = self.get_bin_index(number)
self
.
bins
[
bin_index
]
-=
1
#self.bins[bin_index] -= 1
self
.
bins
[
number
]
-=
1
def
get_bin_index
(
self
,
number
):
def
get_bin_index
(
self
,
number
):
return
(
number
-
self
.
min
)
/
((
self
.
max
-
self
.
min
)
/
len
(
self
.
bins
))
return
(
number
-
self
.
min
)
/
((
self
.
max
-
self
.
min
)
/
len
(
self
.
bins
))
...
...
src/Interpolation_USELESS.py
deleted
100644 → 0
View file @
6dee71df
from
pylab
import
floor
def
pV
(
image
,
x
,
y
):
'''Get the value of a point x,y in the given image, where x and y are not
necessary integers, so the value is interpolated from its neighbouring
pixels.'''
if
inImage
(
image
,
x
,
y
):
x_low
=
floor
(
x
)
x_high
=
floor
(
x
+
1
)
y_low
=
floor
(
y
)
y_high
=
floor
(
y
+
1
)
x_y
=
(
x_high
-
x_low
)
*
(
y_high
-
y_low
)
interpolatedValue
=
image
[
x_low
,
y_low
]
/
x_y
*
(
x_high
-
x
)
*
\
(
y_high
-
y
)
\
+
image
[
x_high
][
y_low
]
/
x_y
*
(
x
-
x_low
)
*
\
(
y_high
-
y
)
\
+
image
[
x_low
][
y_high
]
/
x_y
*
(
x_high
-
x
)
*
\
(
y
-
y_low
)
\
+
image
[
x_high
][
y_high
]
/
x_y
*
(
x
-
x_low
)
*
\
(
y
-
y_low
)
return
interpolatedValue
else
:
constantValue
=
0
return
constantValue
def
inImage
(
image
,
x
,
y
):
'''Return if the pixels is within the image bounds.'''
return
(
x
>
0
and
x
<
image
.
get_height
()
-
1
\
and
y
>
0
and
y
<
image
.
get_width
()
-
1
)
src/find_svm_params.py
View file @
8f8ed460
...
@@ -102,7 +102,7 @@ i = 0
...
@@ -102,7 +102,7 @@ i = 0
s
=
' c
\
y
'
s
=
' c
\
y
'
for y in Y:
for y in Y:
s += '
|
%
f' % y
s += '
|
%
f' % y
s += '
\
n
'
s += '
\
n
'
...
@@ -110,12 +110,13 @@ for c in C:
...
@@ -110,12 +110,13 @@ for c in C:
s += '
%
7
s
' % c
s += '
%
7
s
' % c
for y in Y:
for y in Y:
s += '
|
%
8
d
' % int(round(results[i] * 100))
s += '
|
%
8
d
' % int(round(results[i] * 100))
i += 1
i += 1
s += '
\
n
'
s += '
\
n
'
s += '
\
nBest
result
:
%
.
3
f
%%
for
C
=
%
f
and
gamma
=
%
f' % best[:3]
s += '
\
nBest
result
:
%
.
3
f
%%
for
C
=
%
f
and
gamma
=
%
f'
\
% ((best[0] * 100,) + best[1:3])
print '
Saving
results
...
'
print '
Saving
results
...
'
f = open(results_file, '
w
+
')
f = open(results_file, '
w
+
')
...
...
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