Module vipy.data.fddb

Expand source code Browse git
import os
import vipy
from vipy.util import readcsv, tocache
from vipy.image import Scene
from vipy.object import Detection

URL = 'http://vis-www.cs.umass.edu/fddb/originalPics.tar.gz'
FOLDS_URL = 'http://vis-www.cs.umass.edu/fddb/FDDB-folds.tgz'
FOLDS_SHA1 = '94ce19ba3348425dfbb8bcbe55802490f8f152f8'


class FDDB(object):
    """Manages the FDDB dataset: http://vis-www.cs.umass.edu/fddb"""

    def __init__(self, datadir=None, redownload=False):
        datadir = tocache('fddb') if datadir is None else datadir
        
        self._datadir = vipy.util.remkdir(datadir)
        self._folds_dir = vipy.util.remkdir(os.path.join(self._datadir, 'FDDB-folds'))

        if redownload or os.path.exists(os.path.join(self._datadir, '.complete')):
            vipy.downloader.download_and_unpack(URL, self._datadir)                        
            #raise ValueError('Download FDDB dataset manually, with "wget %s -O %s; cd %s; tar zxvf %s"' % (URL, os.path.join(self._datadir, 'originalPics.tar.gz'), self._datadir, 'originalPics.tar.gz'))

            vipy.downloader.download_and_unpack(FOLDS_URL, self._folds_dir)
            #raise ValueError('Download FDDB-folds dataset manually, with "wget %s -O %s; cd %s; tar zxvf %s"' % (FOLDS_URL, os.path.join(self._datadir, 'FDDB-folds.tgz'), self._datadir, 'FDDB-folds.tgz'))

        open(os.path.join(self._datadir, '.complete'), 'a').close()
            
    def __repr__(self):
        return str("<vipy.dataset.fddb: '%s'>" % self._datadir)

    def fold(self, foldnum=1):
        """Return the foldnum as a list of vipy.image.Scene objects, each containing all vipy.object.Detection faces in the current image"""
        # fold_file = os.path.join(self._folds_dir, 'FDDB-fold-%02d.txt' % foldnum)
        k = 0
        rows = readcsv(os.path.join(self._folds_dir, 'FDDB-fold-%02d-ellipseList.txt' % foldnum), separator=' ')
        imscenes = []
        while k < len(rows):
            filename = rows[k][0]
            num_faces = int(rows[k + 1][0])
            bbox = [rows[j] for j in range(k + 2, k + 2 + num_faces)]
            k = k + 2 + len(bbox)

            # This ignores the rotation
            ims = Scene(filename=os.path.join(self._datadir, '%s.jpg' % filename), objects=[Detection('face', xcentroid=bb[3], ycentroid=bb[4], width=2 * float(bb[1]), height=2 * float(bb[0])) for bb in bbox])
            imscenes.append(ims)
        return imscenes

Classes

class FDDB (datadir=None, redownload=False)

Manages the FDDB dataset: http://vis-www.cs.umass.edu/fddb

Expand source code Browse git
class FDDB(object):
    """Manages the FDDB dataset: http://vis-www.cs.umass.edu/fddb"""

    def __init__(self, datadir=None, redownload=False):
        datadir = tocache('fddb') if datadir is None else datadir
        
        self._datadir = vipy.util.remkdir(datadir)
        self._folds_dir = vipy.util.remkdir(os.path.join(self._datadir, 'FDDB-folds'))

        if redownload or os.path.exists(os.path.join(self._datadir, '.complete')):
            vipy.downloader.download_and_unpack(URL, self._datadir)                        
            #raise ValueError('Download FDDB dataset manually, with "wget %s -O %s; cd %s; tar zxvf %s"' % (URL, os.path.join(self._datadir, 'originalPics.tar.gz'), self._datadir, 'originalPics.tar.gz'))

            vipy.downloader.download_and_unpack(FOLDS_URL, self._folds_dir)
            #raise ValueError('Download FDDB-folds dataset manually, with "wget %s -O %s; cd %s; tar zxvf %s"' % (FOLDS_URL, os.path.join(self._datadir, 'FDDB-folds.tgz'), self._datadir, 'FDDB-folds.tgz'))

        open(os.path.join(self._datadir, '.complete'), 'a').close()
            
    def __repr__(self):
        return str("<vipy.dataset.fddb: '%s'>" % self._datadir)

    def fold(self, foldnum=1):
        """Return the foldnum as a list of vipy.image.Scene objects, each containing all vipy.object.Detection faces in the current image"""
        # fold_file = os.path.join(self._folds_dir, 'FDDB-fold-%02d.txt' % foldnum)
        k = 0
        rows = readcsv(os.path.join(self._folds_dir, 'FDDB-fold-%02d-ellipseList.txt' % foldnum), separator=' ')
        imscenes = []
        while k < len(rows):
            filename = rows[k][0]
            num_faces = int(rows[k + 1][0])
            bbox = [rows[j] for j in range(k + 2, k + 2 + num_faces)]
            k = k + 2 + len(bbox)

            # This ignores the rotation
            ims = Scene(filename=os.path.join(self._datadir, '%s.jpg' % filename), objects=[Detection('face', xcentroid=bb[3], ycentroid=bb[4], width=2 * float(bb[1]), height=2 * float(bb[0])) for bb in bbox])
            imscenes.append(ims)
        return imscenes

Methods

def fold(self, foldnum=1)

Return the foldnum as a list of vipy.image.Scene objects, each containing all vipy.object.Detection faces in the current image

Expand source code Browse git
def fold(self, foldnum=1):
    """Return the foldnum as a list of vipy.image.Scene objects, each containing all vipy.object.Detection faces in the current image"""
    # fold_file = os.path.join(self._folds_dir, 'FDDB-fold-%02d.txt' % foldnum)
    k = 0
    rows = readcsv(os.path.join(self._folds_dir, 'FDDB-fold-%02d-ellipseList.txt' % foldnum), separator=' ')
    imscenes = []
    while k < len(rows):
        filename = rows[k][0]
        num_faces = int(rows[k + 1][0])
        bbox = [rows[j] for j in range(k + 2, k + 2 + num_faces)]
        k = k + 2 + len(bbox)

        # This ignores the rotation
        ims = Scene(filename=os.path.join(self._datadir, '%s.jpg' % filename), objects=[Detection('face', xcentroid=bb[3], ycentroid=bb[4], width=2 * float(bb[1]), height=2 * float(bb[0])) for bb in bbox])
        imscenes.append(ims)
    return imscenes