Issue 8 remove database configuration
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
- bob/bio/face/database/__init__.py 0 → 100644
3 4 5 from .mobio import MobioBioDatabase 6 from .replay import ReplayBioDatabase 7 from .atnt import AtntBioDatabase 8 from .banca import BancaBioDatabase 9 from .gbu import GBUBioDatabase 10 from .arface import ARFaceBioDatabase 11 from .caspeal import CaspealBioDatabase 12 from .lfw import LFWBioDatabase 13 from .multipie import MultipieBioDatabase 14 from .ijba import IJBABioDatabase 15 from .xm2vts import XM2VTSBioDatabase 16 from .frgc import FRGCBioDatabase 17 from .cuhk_cufs import CUHK_CUFSBioDatabase 18 from .scface import SCFaceBioDatabase Maybe you can add
from .database import FaceBioFile
please?Edited by Amir MOHAMMADI
- bob/bio/face/database/database.py 0 → 100644
1 #!/usr/bin/env python 2 # vim: set fileencoding=utf-8 : 3 # Tiago de Freitas Pereira <tiago.pereira@idiap.ch> 4 # Wed 20 July 14:43:22 CEST 2016 5 6 """ 7 Verification API for bob.db.voxforge 8 """ 9 10 from bob.bio.base.database.file import BioFile 11 12 13 class FaceBioFile(BioFile): 14 def __init__(self, f): - bob/bio/face/database/database.py 0 → 100644
7 Verification API for bob.db.voxforge 8 """ 9 10 from bob.bio.base.database.file import BioFile 11 12 13 class FaceBioFile(BioFile): 14 def __init__(self, f): 15 """ 16 Initializes this File object with an File equivalent for 17 VoxForge database. 18 """ 19 super(FaceBioFile, self).__init__(client_id=f.client_id, path=f.path, file_id=f.id) 20 21 self.__f = f 22 Added 1 commit:
- 9981d93d - [refactoring2016] modifications in the contructor
Added 1 commit:
- a2460a0a - [refactoring2016] Fixed small bug
mentioned in commit 273a10a2
Milestone changed to %Refactoring 2016 and gitlab migration milestone
Please register or sign in to reply