Skip to content
Snippets Groups Projects
Commit 3c7f94f5 authored by Laurent EL SHAFEY's avatar Laurent EL SHAFEY
Browse files

Fix bug (no method overload in python)

parent 0a9a72d7
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ from xbob.extension import Extension, build_ext ...@@ -13,7 +13,7 @@ from xbob.extension import Extension, build_ext
setup( setup(
name="xbob.flandmark", name="xbob.flandmark",
version="1.0.8", version="1.0.9",
description="Python bindings to the flandmark keypoint localization library", description="Python bindings to the flandmark keypoint localization library",
license="GPLv3", license="GPLv3",
author='Andre Anjos', author='Andre Anjos',
......
...@@ -89,7 +89,7 @@ class Localizer(_flandmark.Localizer): ...@@ -89,7 +89,7 @@ class Localizer(_flandmark.Localizer):
else: else:
raise TypeError, "Localizer accepts images as numpy.ndarray objects with either 2 or 3 dimensions" 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. """Localizes facial keypoints on all faces detected at the input image.
Keyword parameters: Keyword parameters:
......
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