Last active
September 5, 2021 08:53
-
-
Save khalidmeister/a0a2f81c9cf5773a03930beb8729a753 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while True: | |
# Capture the image from the webcam | |
ret, image = cap.read() | |
# Convert the image color to grayscale | |
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) | |
# Detect the face | |
rects = detector(gray, 1) | |
# Detect landmarks for each face | |
for rect in rects: | |
# Get the landmark points | |
shape = predictor(gray, rect) | |
# Convert it to the NumPy Array | |
shape_np = np.zeros((68, 2), dtype="int") | |
for i in range(0, 68): | |
shape_np[i] = (shape.part(i).x, shape.part(i).y) | |
shape = shape_np | |
# Display the landmarks | |
for i, (x, y) in enumerate(shape): | |
# Draw the circle to mark the keypoint | |
cv2.circle(image, (x, y), 1, (0, 0, 255), -1) | |
# Display the image | |
cv2.imshow('Landmark Detection', image) | |
# Press the escape button to terminate the code | |
if cv2.waitKey(10) == 27: | |
break | |
cap.release() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment