diff --git a/setup.py b/setup.py index 1ff89aaa5c3eba8f8697b1396cb79379ca9496ac..1d13d762eab41cf5c09a1013fe0b1dac94acb16f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from xbob.extension import Extension, build_ext setup( name="xbob.flandmark", - version="1.0.8", + version="1.0.9", description="Python bindings to the flandmark keypoint localization library", license="GPLv3", author='Andre Anjos', diff --git a/xbob/flandmark/__init__.py b/xbob/flandmark/__init__.py index 8e637dc3857288e46c6f9002b15282e4b2e89f45..355796ad3db2e77673c367a816d0efb03547cdf9 100644 --- a/xbob/flandmark/__init__.py +++ b/xbob/flandmark/__init__.py @@ -89,7 +89,7 @@ class Localizer(_flandmark.Localizer): else: raise TypeError, "Localizer accepts images as numpy.ndarray objects with either 2 or 3 dimensions" - def __call__(self, image, b_y, b_x, b_height, b_width): + def localize(self, image, b_y, b_x, b_height, b_width): """Localizes facial keypoints on all faces detected at the input image. Keyword parameters: