Skip to content
Snippets Groups Projects
Commit cd042d49 authored by Theophile GENTILHOMME's avatar Theophile GENTILHOMME
Browse files

open_file is in bob.bio.base now

parent 42c59a87
No related branches found
No related tags found
2 merge requests!42Set of click commands for pad,!41Set of click commands for pad
......@@ -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.measure.load.open_file(sfile)
f = bob.bio.score.load.open_file(sfile)
d_ = []
for line in f:
if isinstance(line, bytes): line = line.decode('utf-8')
......
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment