Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix 5-landmark dlib eye points #249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
goigle wants to merge 1 commit into PyImageSearch:master
base: master
Choose a base branch
Loading
from goigle:master

Conversation

@goigle
Copy link

@goigle goigle commented Jun 1, 2021
edited
Loading

Currently, the points for the 5 landmark dlib model are wrong. The range uses 1 point for each eye, when it should be two points. The range for dlib 68 for the eyes are 36-42 (6 pts) and 42-48 (6pts). For dlib 5, it's 0-1 (1pt) and 2-3 (1pt) respectively. Changing the range to 0-2 and 2-4 correctly gives 2 pts for each eye and allows properly calculating the centerpoint of the eye.

This fix makes the face aligner work identically for both dlib models, like intended:

 			if (len(shape)==68):
 			# extract the left and right eye (x, y)-coordinates
 			(lStart, lEnd) = FACIAL_LANDMARKS_68_IDXS["left_eye"]
 			(rStart, rEnd) = FACIAL_LANDMARKS_68_IDXS["right_eye"]
 		else:
 			(lStart, lEnd) = FACIAL_LANDMARKS_5_IDXS["left_eye"]
 			(rStart, rEnd) = FACIAL_LANDMARKS_5_IDXS["right_eye"]
 		leftEyePts = shape[lStart:lEnd]
 		rightEyePts = shape[rStart:rEnd]

Here's a chart showing the proper indexes for dlib's 5 and 68 face landmark models

Copy link

Hey @goigle

Thanks for the PR! We are looking into this 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

2 participants

AltStyle によって変換されたページ (->オリジナル) /