From 736fdf4941f83b7276281b0908a9045e982ead2b Mon Sep 17 00:00:00 2001 From: Laurent COLBOIS <lcolbois@.idiap.ch> Date: Fri, 5 Feb 2021 15:16:59 +0100 Subject: [PATCH] [Fix][FaceCrop] Feed annotator with list of images --- bob/bio/face/preprocessor/FaceCrop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/bio/face/preprocessor/FaceCrop.py b/bob/bio/face/preprocessor/FaceCrop.py index 23cfc249..034938af 100644 --- a/bob/bio/face/preprocessor/FaceCrop.py +++ b/bob/bio/face/preprocessor/FaceCrop.py @@ -346,7 +346,7 @@ class FaceCrop(Base): and not self.fixed_positions and self.annotator is not None ): - annot = self.annotator(image, annotations=annot) + annot = self.annotator([image], annotations=[annot])[0] if not self.is_annotations_valid(annot): logger.warn( "The annotator failed and the annot are missing too" -- GitLab