Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
bob.bio.vein
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bob
bob.bio.vein
Commits
654b700f
Commit
654b700f
authored
Jul 13, 2016
by
André Anjos
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[db] Started to implement put-vein db plugin
parent
32dd5b0d
Pipeline
#2843
passed with stage
in 4 minutes and 42 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
6 deletions
+25
-6
bob/bio/vein/configurations/databases/putvein.py
bob/bio/vein/configurations/databases/putvein.py
+17
-0
bob/bio/vein/configurations/databases/utfvp.py
bob/bio/vein/configurations/databases/utfvp.py
+4
-3
bob/bio/vein/configurations/databases/vera.py
bob/bio/vein/configurations/databases/vera.py
+4
-3
No files found.
bob/bio/vein/configurations/databases/putvein.py
0 → 100644
View file @
654b700f
#!/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',
# )
bob/bio/vein/configurations/databases/utfvp.py
View file @
654b700f
...
...
@@ -5,12 +5,13 @@ import bob.db.utfvp
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
=
bob
.
db
.
utfvp
.
Database
(
original_directory
=
utfvp_
directory
,
original_extension
=
".png"
original_directory
=
directory
,
original_extension
=
extension
,
),
name
=
'utfvp'
,
)
bob/bio/vein/configurations/databases/vera.py
View file @
654b700f
...
...
@@ -5,12 +5,13 @@ import bob.db.vera
from
bob.bio.base.database
import
DatabaseBob
vera_directory
=
"/idiap/project/vera"
directory
=
"/idiap/project/vera"
extension
=
".png"
database
=
DatabaseBob
(
database
=
bob
.
db
.
vera
.
Database
(
original_directory
=
vera_
directory
,
original_extension
=
".png"
,
original_directory
=
directory
,
original_extension
=
extension
,
),
name
=
'vera'
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment