From 175cf0058c8abdab06744259df85a0b1a7ac1e38 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Tue, 16 Aug 2016 15:42:15 +0200 Subject: [PATCH] [preproc] Change dep bob.db.verification.utils -> bob.db.base --- bob/bio/base/script/preprocess.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/bio/base/script/preprocess.py b/bob/bio/base/script/preprocess.py index ddc17540..1014196a 100644 --- a/bob/bio/base/script/preprocess.py +++ b/bob/bio/base/script/preprocess.py @@ -6,7 +6,7 @@ import bob.core logger = bob.core.log.setup("bob.bio.base") import bob.bio.base -import bob.db.verification.utils +import bob.db.base import numpy import bob.core @@ -47,7 +47,7 @@ def main(command_line_parameters=None): logger.debug("Loading input data from file '%s'%s", args.input_file, " and '%s'" % args.annotation_file if args.annotation_file is not None else "") data = preprocessor.read_original_data(args.input_file) - annotations = bob.db.verification.utils.read_annotation_file(args.annotation_file, 'named') if args.annotation_file is not None else None + annotations = bob.db.base.annotations.read_annotation_file(args.annotation_file, 'named') if args.annotation_file is not None else None logger.info("Preprocessing data") preprocessed = preprocessor(data, annotations) -- GitLab