Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.db.verafinger
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.db.verafinger
Compare revisions
89813f9c3794449724320240ca25e0cf1ee932f3 to 0f781e72038578a0d42539f635a6181393c642b9
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
bob/bob.db.verafinger
Select target project
No results found
0f781e72038578a0d42539f635a6181393c642b9
Select Git revision
Branches
fix-create
master
Tags
v1.0.0
v2.0.0
v2.0.1
v2.0.2
v2.0.3
v2.0.4
v2.0.5
v2.0.6
Swap
Target
bob/bob.db.verafinger
Select target project
bob/bob.db.verafinger
1 result
89813f9c3794449724320240ca25e0cf1ee932f3
Select Git revision
Branches
fix-create
master
Tags
v1.0.0
v2.0.0
v2.0.1
v2.0.2
v2.0.3
v2.0.4
v2.0.5
v2.0.6
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add information on the annotations
· 7cd2ef0d
André Anjos
authored
7 years ago
7cd2ef0d
Fix function comment
· 0f781e72
André Anjos
authored
7 years ago
0f781e72
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bob/db/verafinger/models.py
+1
-1
1 addition, 1 deletion
bob/db/verafinger/models.py
doc/guide.rst
+11
-0
11 additions, 0 deletions
doc/guide.rst
with
12 additions
and
1 deletion
bob/db/verafinger/models.py
View file @
0f781e72
...
...
@@ -168,7 +168,7 @@ class File(Base, bob.db.base.File):
Returns:
numpy.ndarray: A 2D array of
8
-bit unsigned integers corresponding to
numpy.ndarray: A 2D array of
16
-bit unsigned integers corresponding to
annotations for the given fingervein image. Points are loaded in (y,x)
format so, the first column of the returned array correspond to the
y-values while the second column to the x-values of each coordinate.
...
...
This diff is collapsed.
Click to expand it.
doc/guide.rst
View file @
0f781e72
...
...
@@ -81,6 +81,17 @@ index and a second time the second index. The whole process took around 5
minutes per subject in average.
Annotations
===========
We provide region-of-interest (RoI) **hand-made** annotations for all images in
this dataset. The annotations mark the place where the finger is on the image,
excluding the background. The annotation file is a text file with one
annotation per line in the format ``(y, x)``, respecting Bob's image encoding
convention. The interconnection of these points in a polygon forms the RoI.
Anntations can be loaded using :py:meth:`bob.db.verafinger.File.roi`.
Protocols
---------
...
...
This diff is collapsed.
Click to expand it.