diff --git a/bob/pad/face/config/casiasurf.py b/bob/pad/face/config/casiasurf.py deleted file mode 100644 index f74512bda3a46e024598ce4d7aef436b546f6e84..0000000000000000000000000000000000000000 --- a/bob/pad/face/config/casiasurf.py +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env python -"""CASIA-SURF is a database for face PAD experiments. - -""" - -from bob.pad.face.database import CasiaSurfPadDatabase - -# Directory where the data files are stored. -# This directory is given in the .bob_bio_databases.txt file located in your home directory -original_directory = "[YOUR_CASIASURF_DB_DIRECTORY]" -"""Value of ``~/.bob_bio_databases.txt`` for this database""" - -original_extension = ".jpg" # extension is not used to load the data in the HLDI of this database - -database = CasiaSurfPadDatabase( - protocol='color', - original_directory=original_directory, - original_extension=original_extension, -) -"""The :py:class:`bob.pad.base.database.PadDatabase` derivative with CASIA-SURF -database settings. - -.. warning:: - - This class only provides a programmatic interface to load data in an orderly - manner, respecting usage protocols. It does **not** contain the raw - data files. You should procure those yourself. - -Notice that ``original_directory`` is set to ``[YOUR_CASIASURF_DB_DIRECTORY]``. -You must make sure to create ``${HOME}/.bob_bio_databases.txt`` setting this -value to the place where you actually installed the CASIA-SURF Database, as -explained in the section :ref:`bob.pad.face.baselines`. -""" diff --git a/bob/pad/face/config/casiasurf_color.py b/bob/pad/face/config/casiasurf_color.py new file mode 100644 index 0000000000000000000000000000000000000000..4d7cde9212006855cff26726c3fa3e70accc3de7 --- /dev/null +++ b/bob/pad/face/config/casiasurf_color.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# encoding: utf-8 + +from bob.pad.face.database import CasiaSurfPadDatabase +from bob.extension import rc + +database = CasiaSurfPadDatabase( + protocol='color', + original_directory=rc['bob.db.casiasurf.directory'], + original_extension=".jpg", +) diff --git a/bob/pad/face/database/casiasurf.py b/bob/pad/face/database/casiasurf.py index 7b2102b9ef6e5afd68a38fdc798076749f053d3f..5b936476af1c8f470700be3f6fce7fbcfc8898d7 100644 --- a/bob/pad/face/database/casiasurf.py +++ b/bob/pad/face/database/casiasurf.py @@ -9,6 +9,8 @@ from bob.bio.video import FrameSelector, FrameContainer from bob.pad.face.database import VideoPadFile from bob.pad.base.database import PadDatabase +from bob.extension import rc + class CasiaSurfPadFile(VideoPadFile): """ A high level implementation of the File class for the CASIA-SURF database. @@ -49,7 +51,7 @@ class CasiaSurfPadFile(VideoPadFile): path=s.id) - def load(self, directory=None, extension='.jpg', frame_selector=FrameSelector(selection_style='all')): + def load(self, directory=rc['bob.db.casiasurf.directory'], extension='.jpg', frame_selector=FrameSelector(selection_style='all')): """Overloaded version of the load method defined in ``VideoPadFile``. Parameters diff --git a/setup.py b/setup.py index 0f6ffa62f85763562ccd8b4c2fb3a3612c28851b..994af6956d2839b3e2a660d13d7bf7eeae50af44 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ setup( 'batl-db-thermal = bob.pad.face.config.batl_db_thermal:database', 'celeb-a = bob.pad.face.config.celeb_a:database', 'maskattack = bob.pad.face.config.maskattack:database', - 'casiasurf = bob.pad.face.config.casiasurf:database', + 'casiasurf-color = bob.pad.face.config.casiasurf_color:database', ], # registered configurations: