Skip to content

Commit

Permalink
Fixed bug in . Preparing for v0.5.4 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Rosebrock committed Jan 15, 2021
1 parent df65a77 commit c12f153
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion imutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion imutils/face_utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
Expand Down

0 comments on commit c12f153

Please sign in to comment.