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
0a4ff955
Commit
0a4ff955
authored
Dec 21, 2011
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added image normalization to performance measuring script.
parent
1d2ae333
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
7 deletions
+33
-7
src/test_performance.py
src/test_performance.py
+33
-7
No files found.
src/test_performance.py
View file @
0a4ff955
#!/usr/bin/python
from
os
import
listdir
from
cPickle
import
load
from
sys
import
argv
,
exit
from
time
import
time
from
GrayscaleImage
import
GrayscaleImage
from
NormalizedCharacterImage
import
NormalizedCharacterImage
from
Character
import
Character
from
Classifier
import
Classifier
if
len
(
argv
)
<
4
:
...
...
@@ -14,17 +18,37 @@ blur_scale = float(argv[2])
count
=
int
(
argv
[
3
])
suffix
=
'_%s_%s'
%
(
blur_scale
,
neighbours
)
chars_file
=
'characters%s.dat'
%
suffix
#
chars_file = 'characters%s.dat' % suffix
classifier_file
=
'classifier%s.dat'
%
suffix
print
'Loading characters...'
chars
=
load
(
open
(
chars_file
,
'r'
))[:
count
]
count
=
len
(
chars
)
#print 'Loading characters...'
#chars = load(open(chars_file, 'r'))[:count]
#count = len(chars)
#
#for char in chars:
# del char.feature
#
#print 'Read %d characters' % count
for
char
in
chars
:
del
char
.
feature
print
'Loading %d characters...'
%
count
chars
=
[]
i
=
0
br
=
False
for
value
in
sorted
(
listdir
(
'../images/LearningSet'
)):
for
image
in
sorted
(
listdir
(
'../images/LearningSet/'
+
value
)):
f
=
'../images/LearningSet/'
+
value
+
'/'
+
image
image
=
GrayscaleImage
(
f
)
char
=
Character
(
value
,
[],
image
)
chars
.
append
(
char
)
i
+=
1
if
i
==
count
:
br
=
True
break
print
'Read %d characters'
%
count
if
br
:
break
print
'Loading classifier...'
classifier
=
Classifier
(
filename
=
classifier_file
)
...
...
@@ -33,6 +57,8 @@ classifier.neighbours = neighbours
start
=
time
()
for
char
in
chars
:
char
.
image
=
NormalizedCharacterImage
(
image
,
blur
=
blur_scale
,
height
=
42
)
char
.
get_single_cell_feature_vector
(
neighbours
)
classifier
.
classify
(
char
)
elapsed
=
time
()
-
start
...
...
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