-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFaceMeshBasics.py
More file actions
31 lines (26 loc) · 970 Bytes
/
FaceMeshBasics.py
File metadata and controls
31 lines (26 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import cv2
import mediapipe as mp
import time
cap = cv2.VideoCapture("Poses/guyinhoodie.mp4")
pTime = 0
mpDraw = mp.solutions.drawing_utils
mpFaceMesh = mp.solutions.face_mesh
faceMesh = mpFaceMesh.FaceMesh(max_num_faces=2)
drawSpec = mpDraw.DrawingSpec(thickness=1, circle_radius=1)
while True:
success, img = cap.read()
imgRGB = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
results = faceMesh.process(imgRGB)
if results.multi_face_landmarks:
for faceLms in results.multi_face_landmarks:
mpDraw.draw_landmarks(img, faceLms, mpFaceMesh.FACEMESH_CONTOURS,
drawSpec, drawSpec)
for lm in faceLms.landmark:
print(lm)
cTime = time.time()
fps = 1/(cTime - pTime)
pTime = cTime
cv2.putText(img, f'FPS: {int(fps)}', (20, 70), cv2.FONT_HERSHEY_PLAIN,
3, (112, 255, 90), 3)
cv2.imshow("Image", img)
cv2.waitKey(1)