Skip to content
Snippets Groups Projects
Commit cbe36aaf authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Annotations might not be ordered

parent 56451883
No related branches found
No related tags found
1 merge request!64Add support for external annotations in replaymobile
...@@ -4,6 +4,7 @@ from bob.io.video import reader ...@@ -4,6 +4,7 @@ from bob.io.video import reader
from bob.ip.base import scale, block, block_output_shape from bob.ip.base import scale, block, block_output_shape
from bob.ip.color import rgb_to_yuv, rgb_to_hsv from bob.ip.color import rgb_to_yuv, rgb_to_hsv
from bob.ip.facedetect import bounding_box_from_annotation from bob.ip.facedetect import bounding_box_from_annotation
from collections import OrderedDict
from functools import partial from functools import partial
import numpy import numpy
import six import six
...@@ -108,14 +109,12 @@ def yield_faces(database, padfile, cropper, normalizer=None): ...@@ -108,14 +109,12 @@ def yield_faces(database, padfile, cropper, normalizer=None):
if annotations is None: if annotations is None:
raise ValueError("No annotations were returned.") raise ValueError("No annotations were returned.")
if normalizer is None: if normalizer is not None:
annotations_gen = annotations.items() annotations = OrderedDict(normalizer(annotations))
else:
annotations_gen = normalizer(annotations)
# normalize annotations and crop faces # normalize annotations and crop faces
for _, annot in annotations_gen: for frame_id, frame in enumerate(frames_gen):
frame = six.next(frames_gen) annot = annotations.get(str(frame_id), None)
if annot is None: if annot is None:
continue continue
face = cropper(frame, annotations=annot) face = cropper(frame, annotations=annot)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment