Questions tagged [facial-landmark-alignment]

24 questions
0
votes
1 answer

Is there a way to select a specific point at the face after detecting facial landmarks using dlib?

I am using Dlib's 68 point face landmark predictor, which has 68 points that are marked on various regions of the face shown in the picture below: I have managed to access particular points from the predicted landmarks, for example, I can select a…
0
votes
1 answer

How to convert 106 into 68 landmark points

Are 68 landmark points used in dlib https://towardsdatascience.com/facial-mapping-landmarks-with-dlib-python-160abcf7d672 a subset of 106 landmark points used in JD challenge https://facial-landmarks-localization-challenge.github.io/? If it is a…
genawas
  • 28
  • 3
0
votes
1 answer

Face landmarks detection with dlib

I have the following code: image_1 = cv2.imread('headshot13-14-2.jpg') image_1_rgb = cv2.cvtColor(image_1, cv2.COLOR_BGR2RGB) image_1_gray = cv2.cvtColor(image_1_rgb, cv2.COLOR_BGR2GRAY) p = "shape_predictor_68_face_landmarks.dat" detector =…
0
votes
1 answer

Finding co-ordinates of all points in JavaScript Based facial landmark detection

I have to detect the facial landmarks using the JavaScript programming language. For this, I have seen this video tutorial. Also, I am successfully able to execute the code of the video provided at. Now I have display the co-ordinates values of each…
Mayank Tiwari
  • 2,974
  • 5
  • 30
  • 52
0
votes
0 answers

Is there any way we can detect more than 12 landmark points in google face detection ML Kit

I am trying to detect upper lip coordinate from google ml kit api, but according to google vision api, i can only detect 12 landmark position on face ,, can someone help me out with this problem.
0
votes
1 answer

how to mesure the distance between 2 points in the facial landmarks from dlib 68 x- y-coordinates

i am working in a python code that take a picture if the distance between some facial landmarks(dlib's ones) has a condition, indeed if the distance between the point 1 and the point 29, divided by the distance of the point 17 and the 29 is between…
mimus
  • 367
  • 4
  • 21
0
votes
1 answer

image aling with cv2 instead of HOG

Hi I am working on facial recognition. To increase performance I want to use facial alignment. When I use the HOG face identifier, described e.g., by Adrian I get an aligned image out. from imutils.face_utils import rect_to_bb from dlib import…
0
votes
1 answer

Open Cv assertion failed

trying to detect face landmarks using openCv, the error is : Traceback (most recent call last): File "/Users/aksheenmalhotra/Desktop/gaze controlled/gazecontrolledkeys.py", line 13, in gray =…
-1
votes
1 answer

Keypoint detection when target appears multiple times

I am implementing a keypoint detection algorithm to recognize biomedical landmarks on images. I only have one type of landmark to detect. But in a single image, 1-10 of these landmarks can be present. I'm wondering what's the best way to organize…
1
2