Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.pad.base
Commits
cd042d49
Commit
cd042d49
authored
May 08, 2018
by
Theophile GENTILHOMME
Browse files
open_file is in bob.bio.base now
parent
42c59a87
Changes
2
Hide whitespace changes
Inline
Side-by-side
bob/pad/base/test/test_spoof.py
View file @
cd042d49
...
...
@@ -43,7 +43,7 @@ def _detect(parameters, cur_test_dir, sub_dir, score_types=('dev-real',), scores
for
i
in
range
(
0
,
len
(
score_types
)):
data2check
=
[]
for
sfile
in
(
score_files
[
i
],
reference_files
[
i
]):
f
=
bob
.
measu
re
.
load
.
open_file
(
sfile
)
f
=
bob
.
bio
.
sco
re
.
load
.
open_file
(
sfile
)
d_
=
[]
for
line
in
f
:
if
isinstance
(
line
,
bytes
):
line
=
line
.
decode
(
'utf-8'
)
...
...
bob/pad/base/tools/scoring.py
View file @
cd042d49
...
...
@@ -7,6 +7,7 @@
import
bob.io.base
import
bob.bio.base
import
bob.measure
import
numpy
import
os
...
...
@@ -48,12 +49,12 @@ def _compute_scores(algorithm, toscore_objects, allow_missing_files):
def
_open_to_read
(
score_file
):
"""Checks for the existence of the normal and the compressed version of the file,
and calls :py:func:`bob.
measure.load
.open_file` for the existing one."""
and calls :py:func:`bob.
bio.base.score
.open_file` for the existing one."""
if
not
os
.
path
.
exists
(
score_file
):
score_file
+=
'.tar.bz2'
if
not
os
.
path
.
exists
(
score_file
):
raise
IOError
(
"The score file '%s' cannot be found. Aborting!"
%
score_file
)
return
bob
.
measure
.
load
.
open_file
(
score_file
)
return
bob
.
bio
.
base
.
open_file
(
score_file
)
def
_open_to_write
(
score_file
,
write_compressed
):
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment