OpenCV⚠️实战⚠️ 人脸识别 ☢️建议手收藏☢️

Posted 我是小白呀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenCV⚠️实战⚠️ 人脸识别 ☢️建议手收藏☢️相关的知识,希望对你有一定的参考价值。

【OpenCV】⚠️实战⚠️ 人脸识别 ☢️建议手收藏☢️

概述

OpenCV 是一个跨平台的计算机视觉库, 支持多语言, 功能强大. 今天小白就带大家来实战一下, 用 OpenCV 实现人脸识别.

模型获取

模型下载地址

detectMultiScale

格式:

cv2.detectMultiScale(self, image, scaleFactor=None, minNeighbors=None, flags=None, minSize=None, maxSize=None)

参数:

  • image: 输入图像, 灰度图
  • scaleFactor: 图像尺寸缩小比例, 决定两个不同大小的窗口扫描之间有多大的跳跃
  • minNeighbors: 被检测到几次才算目标
  • minSize: 目标最小尺寸
  • maxSize: 目标最大尺寸

图片人脸识别

原图:


代码:

import cv2


def face_detect(image):
    # 转换成灰度图
    image_gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

    # 实例化
    face_detector = cv2.CascadeClassifier(
        "C:/Users/Windows/Desktop/face/haarcascades/haarcascade_frontalface_alt_tree.xml")
    faces = face_detector.detectMultiScale(image_gray, 1.05, 3)

    # 遍历每个人脸
    for x, y, w, h in faces:
        cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 5)

    return image

if __name__ == "__main__":
    # 读取图片
    image = cv2.imread("face.jpg")

    # 人脸检测
    result = face_detect(image)

    # 图片展示
    cv2.imshow("result", image)
    cv2.waitKey(0)
    cv2.destroyAllWindows()

    # 保存结果
    cv2.imwrite("result.jpg", result)

输出结果:

视频人脸识别

代码:

import cv2


def face_detect(image):
    # 转换成灰度图
    image_gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

    # 实例化
    face_detector = cv2.CascadeClassifier(
        "C:/Users/Windows/Desktop/face/haarcascades/haarcascade_frontalface_alt_tree.xml")
    faces = face_detector.detectMultiScale(image_gray, 1.01, 1)

    # 遍历每个人脸
    for x, y, w, h in faces:
        cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 5)

    return image


if __name__ == "__main__":

    # 读取视频
    capture = cv2.VideoCapture(0)

    # 循环
    while (True):

        # 读取一帧
        ret, frame = capture.read()
        frame = cv2.flip(frame, 1)
        result = face_detect(frame)

        # 显示
        cv2.imshow("frame", result)

        # q键退出
        if cv2.waitKey(1) & 0XFF == ord("q"):
            break

以上是关于OpenCV⚠️实战⚠️ 人脸识别 ☢️建议手收藏☢️的主要内容,如果未能解决你的问题,请参考以下文章

OpenCV ⚠️实战⚠️ 女子深夜久久不能入眠,300行写出全能扫描王! ☢️建议手收藏☢️

Golang✔️实战✔️ 聊天室 ☢️建议手收藏☢️

Golang✔️实战✔️ 聊天室 ☢️建议手收藏☢️

Golang✔️实战✔️ 10 种加密方法实现 ☢️万字长文 建议手收藏☢️

Golang✔️实战✔️ 10 种加密方法实现 ☢️万字长文 建议手收藏☢️

OpenCV-Python实战——OpenCV中绘制图形与文本(万字总结,️❤️建议收藏️❤️)