【2】MediaPipe面部识别

上次因为课设写了MediaPipe的手势识别后就一直没有更新,今天写一下人脸检测
网页参考:https://google.github.io/mediapipe/solutions/face_detection.html

MediaPipe 人脸检测是一种超快的人脸检测解决方案,具有 6 个特征点和多面支持。它基于BlazeFace,是一种轻量级且性能良好的人脸检测器。

接口:

MODEL_SELECTION
整数索引或 .用于选择最适合距相机 2 米以内的人脸的短距离型号,以及最适合 5 米以内人脸的全范围型号。
MIN_DETECTION_CONFIDENCE
人脸检测模型中的最小置信度值 (),用于将检测视为成功。缺省值为0.5。

输出

检测到的人脸的集合,其中每张人脸都表示为一个检测原型消息,其中包含一个边界框和 6 个关键点(右眼、左眼、鼻尖、嘴巴中心、右耳垂体和左耳垂体)。

运行实例代码

!!!注意:

mediapipe版本:0.8.3.1
python版本:3.7.11

import cv2
import mediapipe as mp
mp_face_detection = mp.solutions.face_detection
mp_drawing = mp.solutions.drawing_utils

# For webcam input:
cap = cv2.VideoCapture(0)
with mp_face_detection.FaceDetection(
    model_selection=0, min_detection_confidence=0.5) as face_detection:
  while cap.isOpened():
    success, image = cap.read()
    if not success:
      print("Ignoring empty camera frame.")
      # If loading a video, use 'break' instead of 'continue'.
      continue

    # To improve performance, optionally mark the image as not writeable to
    # pass by reference.
    image.flags.writeable = False
    image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
    results = face_detection.process(image)

    # Draw the face detection annotations on the image.
    image.flags.writeable = True
    image = cv2.cvtColor(image, cv2.COLOR_RGB2BGR)
    if results.detections:
      for detection in results.detections:
        mp_drawing.draw_detection(image, detection)
    # Flip the image horizontally for a selfie-view display.
    cv2.imshow('MediaPipe Face Detection', cv2.flip(image, 1))
    if cv2.waitKey(5) & 0xFF == 27:
      break
cap.release()

当然我们运行时候不出意外会报错

TypeError: __init__() got an unexpected keyword argument 'model_selection'

此时我们将

  with mp_face_detection.FaceDetection(model_selection=1, 
                                       min_detection_confidence=0.5) as face_detection:

中的model_selection删除或者注释掉即可,因为0.8.3的mediapipe不支持。

---------------------手动分隔符------------------

我们随意在网上找一个图片来尝试效果:

import cv2
import mediapipe as mp
mp_face_detection = mp.solutions.face_detection
mp_drawing = mp.solutions.drawing_utils

# For static images:
IMAGE_FILES = []
with mp_face_detection.FaceDetection(
    model_selection=1, min_detection_confidence=0.5) as face_detection:
  for idx, file in enumerate(IMAGE_FILES):
    image = cv2.imread(file)
    # Convert the BGR image to RGB and process it with MediaPipe Face Detection.
    results = face_detection.process(cv2.cvtColor(image, cv2.COLOR_BGR2RGB))

    # Draw face detections of each face.
    if not results.detections:
      continue
    annotated_image = image.copy()
    for detection in results.detections:
      print('Nose tip:')
      print(mp_face_detection.get_key_point(
          detection, mp_face_detection.FaceKeyPoint.NOSE_TIP))
      mp_drawing.draw_detection(annotated_image, detection)
    cv2.imwrite('/tmp/annotated_image' + str(idx) + '.png', annotated_image)

结果如下:
请添加图片描述
请添加图片描述
可以看到虽然右耳朵被遮挡但是依然被很好地推理出来了。

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
好的,基于mediapipe468人脸关键点的面部面具特效,可以使用Pythonmediapipe和OpenCV库来实现。 具体实现过程如下: 1. 首先需要安装mediapipe和OpenCV库,可以使用pip install mediapipe和pip install opencv-python命令来安装。 2. 使用mediapipe库中的FaceMesh模块来获取人脸关键点的位置坐标。 3. 使用OpenCV库来加载图片和绘制面具特效。 下面是一个简单的示例代码,实现在图片中绘制基于mediapipe468人脸关键点的面具特效: ``` import cv2 import mediapipe as mp # 加载图片 image = cv2.imread("test.jpg") # 初始化FaceMesh模块 mp_face_mesh = mp.solutions.face_mesh face_mesh = mp_face_mesh.FaceMesh() # 获取人脸关键点的位置坐标 results = face_mesh.process(image) if results.multi_face_landmarks: for face_landmarks in results.multi_face_landmarks: for i, landmark in enumerate(face_landmarks.landmark): x = int(landmark.x * image.shape[1]) y = int(landmark.y * image.shape[0]) # 在关键点位置绘制面具特效 if i in [33, 133, 234]: cv2.circle(image, (x, y), 10, (255, 0, 0), -1) elif i in [61, 185, 280]: cv2.circle(image, (x, y), 10, (0, 255, 0), -1) elif i in [1, 15, 269]: cv2.circle(image, (x, y), 10, (0, 0, 255), -1) # 显示绘制后的图片 cv2.imshow("result", image) cv2.waitKey(0) cv2.destroyAllWindows() ``` 这样就可以实现简单的基于mediapipe468人脸关键点的面部面具特效了。当然,你也可以根据需求自定义绘制的面具特效,比如使用OpenCV库的矩形、椭圆等函数来绘制不同形状的面具特效。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

风间野鹤

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值