当前位置:   article > 正文

python+opencv最简单的人脸识别_face_recongition openccv

face_recongition openccv

python+opencv最简单的人脸识别

最近一直在学习opencv,忽然发现一个很神奇的模块{face_recognition},face_recognition是一个解析人脸的模块,核心大家可以pip 下载后自己研究 哈。
接下来时一个摸鱼小助手,欢迎大家参考。

import face_recognition
import cv2
import os
import time

# 调用摄像头,外部摄像头为:1
cap = cv2.VideoCapture(0)

while True:

    # 按帧读取视频
    # 其中ret是布尔值,如果读取帧是正确的则返回 True,
    # frame就是每一帧的图像
    ret, frame = cap.read()

    # 进行面部编码
    face_locations = face_recognition.face_locations(frame)
    face_encodings = face_recognition.face_encodings(frame, face_locations)

    for face_encoding in face_encodings:
        # 人脸对比
        results = face_recognition.compare_faces([boss_face_encoding], face_encoding)

        if results[0]:
            print("boss来了,快别摸鱼了")

            os.system('open /Applications/PyCharm.app')
            time.sleep(300)
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/173584
推荐阅读
相关标签
  

闽ICP备14008679号