Skip to content
Snippets Groups Projects
Commit 741aba4d authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Added MORPH dataset

parent c830b550
No related branches found
No related tags found
1 merge request!89Updates
Pipeline #46618 passed
from bob.bio.face.database import MorphDatabase
# In case protocol is comming from chain loading
# https://www.idiap.ch/software/bob/docs/bob/bob.extension/stable/py_api.html#bob.extension.config.load
if "protocol" not in locals():
protocol = "verification_fold1"
database = MorphDatabase(protocol=protocol)
......@@ -13,6 +13,7 @@ from .ijbc import IJBCBioDatabase
from .replaymobile import ReplayMobileBioDatabase
from .fargo import FargoBioDatabase
from .meds import MEDSDatabase
from .morph import MorphDatabase
# gets sphinx autodoc done right - don't remove it
......@@ -45,5 +46,6 @@ __appropriate__(
ReplayMobileBioDatabase,
FargoBioDatabase,
MEDSDatabase,
MorphDatabase,
)
__all__ = [_ for _ in dir() if not _.startswith("_")]
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Tiago de Freitas Pereira <tiago.pereira@idiap.ch>
"""
MEDS database implementation
"""
from bob.bio.base.database import (
CSVDataset,
CSVDatasetZTNorm,
)
from bob.pipelines.datasets import CSVToSampleLoader
from bob.bio.face.database.sample_loaders import EyesAnnotations
from bob.extension import rc
from bob.extension.download import get_file
import bob.io.base
from sklearn.pipeline import make_pipeline
class MorphDatabase(CSVDatasetZTNorm):
"""
The MORPH dataset is relatively old, but is getting some traction recently mostly because its richness
with respect to sensitive attributes.
It is composed by 55,000 samples from 13,000 subjects from men and women and five
race clusters (called ancestry) and they are the following: African, European, Asian, Hispanic and Others. Figure 8
present some samples from this database.
This dataset contains faces from five ethnicities (African, European, Asian, Hispanic, "Other")
and two genders (Male and Female).
Furthermore, this interface contains three verification protocols and they are:
`verification_fold1`, `verification_fold2` and `verification_fold1`.
Follow below the identities distribution in each set for the for each protocol:
+--------------------+---------------+-----------+-----------+-----------+
| | Training set | Dev. Set | Eval. Set |
+--------------------+---------------+-----------+ + +
| | T-References | Z-Probes | | |
+====================+===============+===========+===========+===========+
| verification_fold1 | 69 | 66 | 6738 | 6742 |
+--------------------+---------------+-----------+-----------+-----------+
| verification_fold2 | 69 | 67 | 6734 | 6737 |
+--------------------+---------------+-----------+-----------+-----------+
| verification_fold3 | 70 | 66 | 6736 | 6740 |
+--------------------+---------------+-----------+-----------+-----------+
.. warning::
Use the command below to set the path of the real data::
$ bob config set bob.db.morph.directory [PATH-TO-MORPH-DATA]
Parameters
----------
protocol: str
One of the database protocols. Options are `verification_fold1`, `verification_fold2` and `verification_fold3`
"""
def __init__(self, protocol):
# Downloading model if not exists
urls = [
"https://www.idiap.ch/software/bob/databases/latest/morph.tar.gz",
"http://www.idiap.ch/software/bob/databases/latest/morph.tar.gz",
]
filename = get_file("morph.tar.gz", urls)
self.annotation_type = "eyes-center"
self.fixed_positions = None
database = CSVDataset(
filename,
protocol,
csv_to_sample_loader=make_pipeline(
CSVToSampleLoader(
data_loader=bob.io.base.load,
dataset_original_directory=rc["bob.db.morph.directory"]
if rc["bob.db.morph.directory"]
else "",
extension=".JPG",
),
EyesAnnotations(),
),
)
super().__init__(database)
......@@ -21,6 +21,7 @@ Databases
bob.bio.face.database.MultipieBioDatabase
bob.bio.face.database.FargoBioDatabase
bob.bio.face.database.MEDSDatabase
bob.bio.face.database.MorphDatabase
Face Image Annotators
......
......@@ -111,6 +111,7 @@ setup(
"replaymobile-img-spoof = bob.bio.face.config.database.replaymobile:replaymobile_spoof",
"fargo = bob.bio.face.config.database.fargo:database",
"meds = bob.bio.face.config.database.meds:database",
"morph = bob.bio.face.config.database.morph:database",
],
"bob.bio.annotator": [
"facedetect = bob.bio.face.config.annotator.facedetect:annotator",
......@@ -172,6 +173,7 @@ setup(
"replaymobile-img-spoof = bob.bio.face.config.database.replaymobile_spoof",
"fargo = bob.bio.face.config.database.fargo",
"meds = bob.bio.face.config.database.meds",
"morph = bob.bio.face.config.database.morph",
],
"bob.bio.cli": [
"display-face-annotations = bob.bio.face.script.display_face_annotations:display_face_annotations",
......
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