From 3030866dbc00d6f65cd69206442ca38bbe425b0b Mon Sep 17 00:00:00 2001 From: Tiago Freitas Pereira <tiagofrepereira@gmail.com> Date: Sat, 10 Sep 2016 11:46:07 +0200 Subject: [PATCH] [refactoring2016] Updated documentation and buildout --- develop.cfg | 2 -- doc/implementation.rst | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/develop.cfg b/develop.cfg index ce6a1b19..de0adab9 100644 --- a/develop.cfg +++ b/develop.cfg @@ -25,7 +25,6 @@ develop = src/bob.extension src/bob.learn.linear src/bob.learn.em src/bob.db.atnt - src/bob.bio.db . ; options for bob.buildout @@ -47,7 +46,6 @@ bob.learn.activation = git git@gitlab.idiap.ch:bob/bob.learn.activation bob.learn.linear = git git@gitlab.idiap.ch:bob/bob.learn.linear bob.learn.em = git git@gitlab.idiap.ch:bob/bob.learn.em bob.db.atnt = git git@gitlab.idiap.ch:bob/bob.db.atnt -bob.bio.db = git git@gitlab.idiap.ch:bob/bob.bio.db [scripts] recipe = bob.buildout:scripts diff --git a/doc/implementation.rst b/doc/implementation.rst index b7bdcf7d..07772262 100644 --- a/doc/implementation.rst +++ b/doc/implementation.rst @@ -218,13 +218,13 @@ Verification Database Interface ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ For most of the data sets, we rely on the database interfaces from Bob_. -Particularly, all databases that are derived from the :py:class:`bob.bio.db.BioDatabase` (click :ref:`here <verification_databases>` for a list of implemented databases) are supported by a special derivation of the databases from above. +Particularly, all databases that are derived from the :py:class:`bob.bio.base.database.BioDatabase` (click :ref:`here <verification_databases>` for a list of implemented databases) are supported by a special derivation of the databases from above. For these databases, the special :py:class:`bob.bio.base.database.DatabaseBob` interface is provided, which takes the Bob_ database as parameter. Several such databases are defined in the according packages, i.e., :ref:`bob.bio.spear <bob.bio.spear>`, :ref:`bob.bio.face <bob.bio.face>` and :ref:`bob.bio.video <bob.bio.video>`. For Bob_'s ZT-norm databases, we provide the :py:class:`bob.bio.base.database.DatabaseBobZT` interface. Additionally, a generic database interface, which is derived from :py:class:`bob.bio.base.database.DatabaseBobZT`, is the :py:class:`bob.bio.base.database.DatabaseFileList`. -This database interfaces with the :py:class:`bob.db.verification.filelist.Database`, which is a generic database based on file lists, implementing the :py:class:`bob.bio.db.BioDatabase` interface. +This database interfaces with the :py:class:`bob.db.verification.filelist.Database`, which is a generic database based on file lists, implementing the :py:class:`bob.bio.base.database.BioDatabase` interface. Defining your own Database ~~~~~~~~~~~~~~~~~~~~~~~~~~ -- GitLab