Windows下如何运行mediapipe(极简版)

硬件准备:一个USB摄像头

必备库:

1.安装opencv-python库(win下安装opencv非常简单,此处不再赘述)

2.安装mediapipe库

pip install mediapipe

打开vscode,随便新建一个空的.py文件,将示例代码复制进去,这里以face_detection举例:

示例代码网址 :Face Detection | mediapipe (google.github.io)

代码内容如下:

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)

# 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()

注意代码中间有一行需要选择摄像头(这是唯一可能需要修改的地方)

(括号内参数默认为0,表示第一个视频设备),如果代码运行后显示如下图所示(此处为我的虚拟摄像头软件,它占用了设备0),说明需要改,改成1大概率可以解决(其顺序为电脑设备管理器中的视频设备的顺序):

完成,选择合适的解释器运行该Python文件即可(Run Python file)

文档地址如下:Python只能运行所选的7个应用

Solutions | mediapipe (google.github.io)

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
要在Windows上安装MediaPipe,您可以按照以下步骤进行操作: 1. 首先,确保您的计算机上已经安装了Python 3.7或更高本,并且已经配置好了环境变量。您可以从Python官方网站下载并安装Python:https://www.python.org/downloads/ 2. 打开命令提示符(Command Prompt)或者使用Anaconda Prompt(如果您使用Anaconda作为Python环境管理器)。 3. 在命令提示符中,输入以下命令来安装MediaPipe的依赖项: ``` pip install mediapipe ``` 这将会自动下载并安装MediaPipe所需的所有依赖库。 4. 安装完成后,您就可以开始在Python中使用MediaPipe了。您可以编写代码来处理图像、视频或摄像头输入,并使用MediaPipe提供的功能。 这是一个单的示例代码,用于检测人脸并标记关键点: ```python import cv2 import mediapipe as mp # 初始化MediaPipe人脸检测模型 mp_face_detection = mp.solutions.face_detection # 初始化摄像头 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: break # 转换图像颜色空间 image_rgb = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) # 进行人脸检测 results = face_detection.process(image_rgb) # 绘制人脸框和关键点 if results.detections: for detection in results.detections: mp_face_detection.draw_detection(image, detection) cv2.imshow('MediaPipe Face Detection', image) if cv2.waitKey(1) & 0xFF == ord('q'): break cap.release() cv2.destroyAllWindows() ``` 请注意,这只是一个单示例,您可以根据您的需求进行修改和扩展。希望这对您有帮助!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

天翼冰霜

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

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

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

打赏作者

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

抵扣说明:

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

余额充值