Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.pad.face
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
Package registry
Model registry
Operate
Environments
Terraform modules
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.pad.face
Commits
f8c6e5f0
Commit
f8c6e5f0
authored
7 years ago
by
Olegs NIKISINS
Browse files
Options
Downloads
Patches
Plain Diff
Added encoding of file id and path in HLDI of Aggregated DB
parent
36b00370
No related branches found
No related tags found
1 merge request
!9
Added the Aggregated Db HLDI, config files for the baselines, updated the doc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/pad/face/database/aggregated_db.py
+96
-3
96 additions, 3 deletions
bob/pad/face/database/aggregated_db.py
with
96 additions
and
3 deletions
bob/pad/face/database/aggregated_db.py
+
96
−
3
View file @
f8c6e5f0
...
@@ -13,6 +13,8 @@ from bob.pad.face.database import replay_mobile as replay_mobile_hldi
...
@@ -13,6 +13,8 @@ from bob.pad.face.database import replay_mobile as replay_mobile_hldi
from
bob.pad.face.database
import
msu_mfsd
as
msu_mfsd_hldi
from
bob.pad.face.database
import
msu_mfsd
as
msu_mfsd_hldi
import
numpy
as
np
#==============================================================================
#==============================================================================
class
AggregatedDbPadFile
(
PadFile
):
class
AggregatedDbPadFile
(
PadFile
):
"""
"""
...
@@ -26,7 +28,7 @@ class AggregatedDbPadFile(PadFile):
...
@@ -26,7 +28,7 @@ class AggregatedDbPadFile(PadFile):
``f`` : :py:class:`object`
``f`` : :py:class:`object`
An instance of the File class defined in the low level db interface
An instance of the File class defined in the low level db interface
of the Replay-Attack or Replay-Mobile or MSU MFSD database,
of the Replay-Attack or Replay-Mobile or MSU MFSD database,
respectively
in the bob.db.replay.models.py file or
in the bob.db.replay.models.py file or
in the bob.db.replaymobile.models.py file or
in the bob.db.replaymobile.models.py file or
in the bob.db.msu_mfsd_mod.models.py file.
in the bob.db.msu_mfsd_mod.models.py file.
...
@@ -47,8 +49,99 @@ class AggregatedDbPadFile(PadFile):
...
@@ -47,8 +49,99 @@ class AggregatedDbPadFile(PadFile):
# attack_type is a string and I decided to make it like this for this
# attack_type is a string and I decided to make it like this for this
# particular database. You can do whatever you want for your own database.
# particular database. You can do whatever you want for your own database.
super
(
AggregatedDbPadFile
,
self
).
__init__
(
client_id
=
f
.
client_id
,
path
=
f
.
path
,
file_path
=
self
.
encode_file_path
(
f
)
attack_type
=
attack_type
,
file_id
=
f
.
id
)
file_id
=
self
.
encode_file_id
(
f
)
super
(
AggregatedDbPadFile
,
self
).
__init__
(
client_id
=
f
.
client_id
,
path
=
file_path
,
attack_type
=
attack_type
,
file_id
=
file_id
)
#==========================================================================
def
encode_file_id
(
self
,
f
,
n
=
2000
):
"""
Return a modified version of the ``f.id`` ensuring uniqueness of the ids
across all databases.
**Parameters:**
``f`` : :py:class:`object`
An instance of the File class defined in the low level db interface
of the Replay-Attack or Replay-Mobile or MSU MFSD database, respectively
in the bob.db.replay.models.py file or
in the bob.db.replaymobile.models.py file or
in the bob.db.msu_mfsd_mod.models.py file.
``n`` : :py:class:`int`
An offset to be added to the file id for different databases is defined
as follows: offset = k*n, where k is the database number,
k = 0,1,2 in our case. Default: 2000.
**Returns:**
``file_id`` : :py:class:`int`
A modified version of the file id, which is now unigue accross
all databases.
"""
import
bob.db.replay
import
bob.db.replaymobile
import
bob.db.msu_mfsd_mod
if
isinstance
(
f
,
bob
.
db
.
replay
.
models
.
File
):
# check if instance of File class of LLDI of Replay-Attack
file_id
=
f
.
id
if
isinstance
(
f
,
bob
.
db
.
replaymobile
.
models
.
File
):
# check if instance of File class of LLDI of Replay-Mobile
file_id
=
np
.
int
(
f
.
id
+
n
)
if
isinstance
(
f
,
bob
.
db
.
msu_mfsd_mod
.
models
.
File
):
# check if instance of File class of LLDI of MSU MFSD
file_id
=
np
.
int
(
f
.
id
+
2
*
n
)
return
file_id
#==========================================================================
def
encode_file_path
(
self
,
f
):
"""
Append the name of the database to the end of the file path separated
with
"
_
"
.
**Parameters:**
``f`` : :py:class:`object`
An instance of the File class defined in the low level db interface
of the Replay-Attack or Replay-Mobile or MSU MFSD database, respectively
in the bob.db.replay.models.py file or
in the bob.db.replaymobile.models.py file or
in the bob.db.msu_mfsd_mod.models.py file.
**Returns:**
``file_path`` : :py:class:`str`
Modified path to the file, with database name appended to the end
separated with
"
_
"
.
"""
import
bob.db.replay
import
bob.db.replaymobile
import
bob.db.msu_mfsd_mod
if
isinstance
(
f
,
bob
.
db
.
replay
.
models
.
File
):
# check if instance of File class of LLDI of Replay-Attack
file_path
=
'
_
'
.
join
([
f
.
path
,
'
replay
'
])
if
isinstance
(
f
,
bob
.
db
.
replaymobile
.
models
.
File
):
# check if instance of File class of LLDI of Replay-Mobile
file_path
=
'
_
'
.
join
([
f
.
path
,
'
replaymobile
'
])
if
isinstance
(
f
,
bob
.
db
.
msu_mfsd_mod
.
models
.
File
):
# check if instance of File class of LLDI of MSU MFSD
file_path
=
'
_
'
.
join
([
f
.
path
,
'
msu_mfsd_mod
'
])
return
file_path
#==========================================================================
#==========================================================================
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment