diff --git a/bob/pad/face/database/mifs.py b/bob/pad/face/database/mifs.py index b373bd7c3448b42e88cadc3ac08be2db5349c51b..0b9314fe07c2edbb3aabb96c7ab82123d65aacfd 100644 --- a/bob/pad/face/database/mifs.py +++ b/bob/pad/face/database/mifs.py @@ -105,8 +105,10 @@ class MIFSPadDatabase(FileListPadDatabase): annotations = {} # dictionary to return - topleft = (bbox[1], bbox[0]) - bottomright = (bbox[1] + bbox[3], bbox[0] + bbox[2]) + topleft = (bbox[0], bbox[1]) + bottomright = (bbox[0] + bbox[2], bbox[1] + bbox[3]) + #topleft = (bbox[1], bbox[0]) + #bottomright = (bbox[1] + bbox[3], bbox[0] + bbox[2]) annotations['0'] = {'topleft': topleft, 'bottomright': bottomright}