Source code for bob.pad.voice.database.asvspoof

#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Pavel Korshunov <pavel.korshunov@idiap.ch>
# Tue 17 May 15:43:22 CEST 2016

"""
  This is a high level interface for presentation attack ASVspoof database.
  It is an extension of an interface defined inside bob.pad.base PAD framework.
"""

from bob.pad.voice.database import PadVoiceFile
from bob.pad.base.database import PadDatabase


class ASVspoofPadFile(PadVoiceFile):
    def __init__(self, f):
        """
        Initializes this File object with an File equivalent from the underlying SQl-based interface for
        ASVspoof database.
        """
        attacktype = None
        if f.is_attack():
            attacktype = str(f.attacktype)

        super(ASVspoofPadFile, self).__init__(client_id=f.client_id, path=f.path, attack_type=attacktype, file_id=f.id)

        self.__f = f


class ASVspoofPadDatabase(PadDatabase):
    """
    Implements verification API for querying ASVspoof database.
    """

    def __init__(self, protocol='CM', **kwargs):
        # call base class constructors to open a session to the database
        PadDatabase.__init__(self, name='asvspoof', protocol=protocol, **kwargs)

        from bob.db.asvspoof.query import Database as LowLevelDatabase
        self.__db = LowLevelDatabase()

[docs] def objects(self, groups=None, protocol=None, purposes=None, model_ids=None, **kwargs): """Returns a set of Files for the specific query by the user. Keyword Parameters: groups One of the groups ('dev', 'eval', 'train') or a tuple with several of them. If 'None' is given (this is the default), it is considered the same as a tuple with all possible values. protocol The protocol for which the clients should be retrieved. The protocol is dependent on your database. If you do not have protocols defined, just ignore this field. purposes The purposes can be either 'real' or 'attack'. model_ids This parameter is not supported in this implementation. Returns: A set of Files with the specified properties. """ objects = self.__db.objects(protocol=protocol, groups=groups, purposes=purposes, **kwargs) return [ASVspoofPadFile(f) for f in objects]