diff --git a/imutils/__init__.py b/imutils/__init__.py index 3da0b0f..e5643ca 100755 --- a/imutils/__init__.py +++ b/imutils/__init__.py @@ -2,7 +2,7 @@ # website: http://www.pyimagesearch.com # set the version number -__version__ = "0.5.3" +__version__ = "0.5.4" # import the necessary packages from .convenience import translate diff --git a/imutils/face_utils/helpers.py b/imutils/face_utils/helpers.py index 4889019..b736edc 100644 --- a/imutils/face_utils/helpers.py +++ b/imutils/face_utils/helpers.py @@ -64,7 +64,7 @@ def visualize_facial_landmarks(image, shape, colors=None, alpha=0.75): if colors is None: colors = [(19, 199, 109), (79, 76, 240), (230, 159, 23), (168, 100, 168), (158, 163, 32), - (163, 38, 32), (180, 42, 220)] + (163, 38, 32), (180, 42, 220), (0, 0, 255)] # loop over the facial landmark regions individually for (i, name) in enumerate(FACIAL_LANDMARKS_IDXS.keys()): diff --git a/setup.py b/setup.py index 543ce72..9c5b381 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='imutils', packages=['imutils', 'imutils.video', 'imutils.io', 'imutils.feature', 'imutils.face_utils'], - version='0.5.3', + version='0.5.4', description='A series of convenience functions to make basic image processing functions such as translation, rotation, resizing, skeletonization, displaying Matplotlib images, sorting contours, detecting edges, and much more easier with OpenCV and both Python 2.7 and Python 3.', author='Adrian Rosebrock', author_email='adrian@pyimagesearch.com',