Source code for bob.db.pericrosseye.query

#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Tiago de Freitas Pereira <tiago.pereira@idiap.ch>
# Tue Aug 14 14:28:00 CEST 2015
#
# Copyright (C) 2012-2014 Idiap Research Institute, Martigny, Switzerland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

import os
import six
from bob.db.base import utils
from .models import *
from .models import PROTOCOLS, GROUPS, PURPOSES

from .driver import Interface

SQLITE_FILE = Interface().files()[0]


[docs]class Database(bob.db.base.SQLiteDatabase): """Wrapper class for the Periocular Recognition competition """ def __init__(self, original_directory=None, original_extension=None): # call base class constructors to open a session to the database super(Database, self).__init__(SQLITE_FILE, File, original_directory, original_extension)
[docs] def protocols(self): return PROTOCOLS
[docs] def purposes(self): return PURPOSES
[docs] def objects(self, groups=None, protocol=None, purposes=None, model_ids=None, **kwargs): """ This function returns lists of File objects, which fulfill the given restrictions. """ # Checking inputs groups = self.check_parameters_for_validity(groups, "group", GROUPS) protocols = self.check_parameters_for_validity(protocol, "protocol", PROTOCOLS) purposes = self.check_parameters_for_validity(purposes, "purpose", PURPOSES) # You need to select only one protocol if (len(protocols) > 1): raise ValueError("Please, select only one of the following protocols {0}".format(protocols)) # Querying query = self.query(bob.db.pericrosseye.File, bob.db.pericrosseye.Protocol_File_Association).join( bob.db.pericrosseye.Protocol_File_Association).join(bob.db.pericrosseye.Client) # filtering query = query.filter(bob.db.pericrosseye.Protocol_File_Association.group.in_(groups)) query = query.filter(bob.db.pericrosseye.Protocol_File_Association.protocol.in_(protocols)) query = query.filter(bob.db.pericrosseye.Protocol_File_Association.purpose.in_(purposes)) if model_ids is not None and not "probe" in purposes: if type(model_ids) is not list and type(model_ids) is not tuple: model_ids = [model_ids] # if you provide a client object as input and not the ids if type(model_ids[0]) is bob.db.pericrosseye.Client: model_aux = [] for m in model_ids: model_aux.append(m.id) model_ids = model_aux query = query.filter(bob.db.pericrosseye.Client.id.in_(model_ids)) raw_files = query.all() files = [] for f in raw_files: f[0].group = f[1].group f[0].purpose = f[1].purpose f[0].protocol = f[1].protocol files.append(f[0]) return files
[docs] def get_client_by_id(self, client_id): """ Get the client object from its ID """ query = self.query(bob.db.pericrosseye.Client).filter(bob.db.pericrosseye.Client.id == client_id) assert len(query.all()) == 1 return query.all()[0]
[docs] def model_ids(self, protocol=None, groups=None): # Checking inputs groups = self.check_parameters_for_validity(groups, "group", GROUPS) protocols = self.check_parameters_for_validity(protocol, "protocol", PROTOCOLS) # You need to select only one protocol if (len(protocols) > 1): raise ValueError("Please, select only one of the following protocols {0}".format(protocols)) # Querying query = self.query(bob.db.pericrosseye.Client).join(bob.db.pericrosseye.File).join(bob.db.pericrosseye.Protocol_File_Association) # filtering query = query.filter(bob.db.pericrosseye.Protocol_File_Association.group.in_(groups)) query = query.filter(bob.db.pericrosseye.Protocol_File_Association.protocol.in_(protocols)) return [c.id for c in query.all()]
[docs] def groups(self, protocol=None, **kwargs): """This function returns the list of groups for this database.""" return GROUPS
[docs] def clients(self, protocol=None, groups=None): # Checking inputs groups = self.check_parameters_for_validity(groups, "group", GROUPS) protocols = self.check_parameters_for_validity(protocol, "protocol", PROTOCOLS) # You need to select only one protocol if (len(protocols) > 1): raise ValueError("Please, select only one of the following protocols {0}".format(protocols)) # Querying query = self.query(bob.db.pericrosseye.Client).join(bob.db.pericrosseye.File).join(bob.db.pericrosseye.Protocol_File_Association) # filtering query = query.filter(bob.db.pericrosseye.Protocol_File_Association.group.in_(groups)) query = query.filter(bob.db.pericrosseye.Protocol_File_Association.protocol.in_(protocols)) return query.all()
####### score normalization methods
[docs] def zclients(self, protocol=None): """Returns a set of Z-Norm clients for the specific query by the user.""" return self.clients(protocol=protocol, groups="world")
[docs] def tclients(self, protocol=None): """Returns a set of T-Norm clients for the specific query by the user.""" return self.zclients(protocol=protocol)
[docs] def zobjects(self, protocol=None, groups=None): """Returns a set of Z-Norm objects for the specific query by the user.""" # Checking inputs protocols = self.check_parameters_for_validity(protocol, "protocol", PROTOCOLS) # You need to select only one protocol if (len(protocols) > 1): raise ValueError("Please, select only one of the following protocols {0}".format(protocols)) # Querying query = self.query(bob.db.pericrosseye.File).join(bob.db.pericrosseye.Protocol_File_Association) # filtering query = query.filter(bob.db.pericrosseye.Protocol_File_Association.protocol.in_(protocols)) query = query.filter(bob.db.pericrosseye.Protocol_File_Association.group == "world") ###### THE MOST IMPORTANT THING IN THE METHOD ### IF THE PROTOCOL IS PHOTO --> SKETCH, THE T-OBJECTS ARE PHOTOS ### IF THE PROTOCOL IS SKETCH --> PHOTO, THE T-OBJECTS ARE SKETCHES if "p2s" in protocol: query = query.filter(bob.db.pericrosseye.File.modality == "VIS") else: query = query.filter(bob.db.pericrosseye.File.modality == "NIR") return query.all()
[docs] def tobjects(self, protocol=None, model_ids=None, groups=None): """Returns a set of T-Norm objects for the specific query by the user.""" return self.zobjects(protocol=protocol)
[docs] def tmodel_ids(self, groups=None, protocol=None, **kwargs): """This function returns the ids of the T-Norm models of the given groups for the given protocol.""" return ["t_" + str(c.id) for c in self.tclients(protocol=protocol)]