无
import cv2
import mediapipe as mp
model=mp.solutions.face_mesh.FaceMesh(
static_image_mode=False,
refine_landmarks=True,
max_num_faces=5,
min_detection_confidence=0.5,
min_tracking_confidence=0.5,
)
img = cv2.imread("0242030801.jpg")
img_RGB = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
results = model.process(img_RGB)
if results.multi_face_landmarks:
for faceLms in results.multi_face_landmarks:
mp.solutions.drawing_utils.draw_landmarks(
image=img,
landmark_list=faceLms,
connections=mp.solutions.face_mesh.FACEMESH_CONTOURS,
landmark_drawing_spec=None,
connection_drawing_spec=mp.solutions.drawing_styles.get_default_face_mesh_contours_style() )
cv2.imshow("img",img)
cv2.waitKey(0)
cv2.destroyAllWindows()