Skip to content
Snippets Groups Projects
Commit 654b700f authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[db] Started to implement put-vein db plugin

parent 32dd5b0d
No related branches found
No related tags found
2 merge requests!3Merging master branch into package-update,!2Marge master to the package-update
Pipeline #
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
import bob.db.putvein
from bob.bio.base.database import DatabaseBob
directory = "/idiap/resource/database/PUT_Vein_Dataset"
extension = ".bmp"
#database = Database(
# database = bob.db.putvein.Database(
# original_directory = directory,
# original_extension = extension,
# ),
# name = 'putvein',
# )
...@@ -5,12 +5,13 @@ import bob.db.utfvp ...@@ -5,12 +5,13 @@ import bob.db.utfvp
from bob.bio.base.database import DatabaseBob from bob.bio.base.database import DatabaseBob
utfvp_directory = "/idiap/resource/database/UTFVP/data/" directory = "/idiap/resource/database/UTFVP/data/"
extension = ".png"
database = DatabaseBob( database = DatabaseBob(
database = bob.db.utfvp.Database( database = bob.db.utfvp.Database(
original_directory = utfvp_directory, original_directory = directory,
original_extension = ".png" original_extension = extension,
), ),
name = 'utfvp', name = 'utfvp',
) )
...@@ -5,12 +5,13 @@ import bob.db.vera ...@@ -5,12 +5,13 @@ import bob.db.vera
from bob.bio.base.database import DatabaseBob from bob.bio.base.database import DatabaseBob
vera_directory = "/idiap/project/vera" directory = "/idiap/project/vera"
extension = ".png"
database = DatabaseBob( database = DatabaseBob(
database = bob.db.vera.Database( database = bob.db.vera.Database(
original_directory = vera_directory, original_directory = directory,
original_extension = ".png", original_extension = extension,
), ),
name = 'vera', name = 'vera',
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment