Skip to content
Snippets Groups Projects
Commit 4134c4e6 authored by Manuel Günther's avatar Manuel Günther
Browse files

Corrected localbob.cfg to the new system (Ref. André) and to use the default...

Corrected localbob.cfg to the new system (Ref. André) and to use the default Idiap bob folder of version 1.0.4
parent fc1526bd
No related branches found
No related tags found
No related merge requests found
...@@ -69,3 +69,13 @@ Unpack the database in a directory that fits you. The easiest solution is to ...@@ -69,3 +69,13 @@ Unpack the database in a directory that fits you. The easiest solution is to
create a subdirectory ``Database`` in this package. If you decide to put the create a subdirectory ``Database`` in this package. If you decide to put the
data somewhere else, please remember the image directory. data somewhere else, please remember the image directory.
.. note ::
If you are at Idiap, the AT&T database is located at
/idiap/group/biometric/databases/orl. To ease up the usage of the examples,
you can generate a link to the database:
.. code-block:: sh
$ ln -s /idiap/group/biometric/databases/orl Database
...@@ -11,7 +11,6 @@ develop = . ...@@ -11,7 +11,6 @@ develop = .
; The 'mr.developer' extension is available publicly at PyPI (the python ; The 'mr.developer' extension is available publicly at PyPI (the python
; package index). You don't need to worry about it as buildout will download ; package index). You don't need to worry about it as buildout will download
; install it for you. ; install it for you.
extensions = mr.developer
auto-checkout = * auto-checkout = *
; Note: You will notice 'bob' is listed as an egg here. If you have a version ; Note: You will notice 'bob' is listed as an egg here. If you have a version
...@@ -21,11 +20,6 @@ auto-checkout = * ...@@ -21,11 +20,6 @@ auto-checkout = *
eggs = bob.example.faceverify eggs = bob.example.faceverify
bob bob
[sources]
; You will need this package so that buildout includes the path to Bob's build
; or installation directory using this configuration file as reference.
local.bob.recipe = git git@github.com:idiap/local.bob.recipe.git
[bob] [bob]
recipe = local.bob.recipe:config recipe = local.bob.recipe:config
...@@ -36,13 +30,15 @@ recipe = local.bob.recipe:config ...@@ -36,13 +30,15 @@ recipe = local.bob.recipe:config
; If you go for a relative path, remember this path is relative to the path ; If you go for a relative path, remember this path is relative to the path
; you are calling buildout from. This is normally the path that contains the ; you are calling buildout from. This is normally the path that contains the
; file 'setup.py' for your own package. ; file 'setup.py' for your own package.
install-directory = ../bob/build install-directory = /idiap/group/torch5spro/releases/bob-1.0.4/install/linux-x86_64-release
; Some examples for Idiap:
;install-directory = /idiap/group/torch5spro/releases/bob-1.0.2/install/linux-x86_64-release
;install-directory = /idiap/group/torch5spro/nightlies/last/install/linux-x86_64-release ;install-directory = /idiap/group/torch5spro/nightlies/last/install/linux-x86_64-release
[python] [python]
recipe = zc.recipe.egg recipe = zc.recipe.egg
interpreter = python interpreter = python
eggs = ${buildout:eggs} eggs = ${buildout:eggs}
initialization =
import os
if os.environ.has_key('PYTHONSTARTUP') and os.environ['PYTHONSTARTUP']: execfile(os.environ['PYTHONSTARTUP'])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment