当前位置:   article > 正文

深度学习项目演练:如何使用Python和OpenCV进行人脸识别_small_frame = cv2.resize(frame, (0, 0), fx=0.25, f

small_frame = cv2.resize(frame, (0, 0), fx=0.25, fy=0.25)

本文将和大家一起分享如何使用 Python 进行人脸识别 - 在实时实时视频中检测和识别出一个人。

在这个深度学习项目中,我们将学习如何使用 Python 识别实时视频中的人脸。我们将使用 python dlib 的面部识别网络构建这个项目。Dlib 是一个通用的软件库。 使用 dlib 工具包,我们可以制作真实世界的机器学习应用程序。

在这个项目中,我们将首先了解人脸识别器的工作原理,然后我们将使用 Python 构建人脸识别。

使用 Python、OpenCV 和深度学习进行人脸识别

关于dlib的人脸识别:

Python 提供了 face_recognition API,它是通过 dlib 的人脸识别算法构建的。 这个 face_recognition API 允许我们实现人脸检测、实时人脸跟踪和人脸识别应用。

项目准备:

首先,你需要从 PyPI 安装 dlib 库和 face_recognition API:

  1. pip3 install dlib
  2. pip3 install face_recognition

下载源代码:

人脸识别源代码(评论区)

用Python实现人脸识别的步骤:

我们将分两部分构建这个 python 项目。 首先,为这两部分构建两个不同的python文件:

  • embedding.py:在这一步中,我们将以人的图像作为输入。 我们将对这些图像进行人脸嵌入。
  • recognition.py:现在,我们将从相机帧中识别出那个特定的人。

1. embedding.py:

首先,在您的工作目录中创建一个文件 embedding.py。 在此文件中,我们将创建特定人脸的人脸嵌入。 使用 face_recognition.face_encodings 方法制作人脸嵌入。这些人脸嵌入是一个 128 维的向量。 在这个向量空间中,同一个人图像的不同向量彼此靠近。 进行人脸嵌入后,我们将它们存储在一个pickle文件中。

将以下代码粘贴到此 embedding.py 文件中。

  • 导入相关的库:
  1. import sys
  2. import cv2
  3. import face_recognition
  4. import pickle
  • 要识别 pickle 文件中的人,请将其姓名和唯一 id 作为输入:
  1. name=input("enter name")
  2. ref_id=input("enter id")
  • 创建一个pickle文件和字典来存储人脸编码:
  1. try:
  2. f=open("ref_name.pkl","rb")
  3. ref_dictt=pickle.load(f)
  4. f.close()
  5. except:
  6. ref_dictt={}
  7. ref_dictt[ref_id]=name
  8. f=open("ref_name.pkl","wb")
  9. pickle.dump(ref_dictt,f)
  10. f.close()
  11. try:
  12. f=open("ref_embed.pkl","rb")
  13. embed_dictt=pickle.load(f)
  14. f.close()
  15. except:
  16. embed_dictt={}
  • 打开网络摄像头和一个人的 5 张照片作为输入并创建其嵌入:

在这里,我们将特定人的嵌入存储在 embed_dictt 字典中。 我们已经在之前的状态中创建了 embed_dictt。 在这本字典中,我们将使用那个人的 ref_id 作为键。

要拍摄图像,请按“s”五次。 如果要停止相机,请按“q”:

  1. for i in range(5):
  2. key = cv2. waitKey(1)
  3. webcam = cv2.VideoCapture(0)
  4. while True:
  5. check, frame = webcam.read()
  6. cv2.imshow("Capturing", frame)
  7. small_frame = cv2.resize(frame, (0, 0), fx=0.25, fy=0.25)
  8. rgb_small_frame = small_frame[:, :, ::-1]
  9. key = cv2.waitKey(1)
  10. if key == ord('s') :
  11. face_locations = face_recognition.face_locations(rgb_small_frame)
  12. if face_locations != []:
  13. face_encoding = face_recognition.face_encodings(frame)[0]
  14. if ref_id in embed_dictt:
  15. embed_dictt[ref_id]+=[face_encoding]
  16. else:
  17. embed_dictt[ref_id]=[face_encoding]
  18. webcam.release()
  19. cv2.waitKey(1)
  20. cv2.destroyAllWindows()
  21. break
  22. elif key == ord('q'):
  23. print("Turning off camera.")
  24. webcam.release()
  25. print("Camera off.")
  26. print("Program ended.")
  27. cv2.destroyAllWindows()
  28. break

  • 使用面部嵌入更新 pickle 文件。

在这里,我们将 embed_dictt 存储在 pickle 文件中。 因此,为了识别那个人,我们可以直接从这个文件中加载它的嵌入:

  1. f=open("ref_embed.pkl","wb")
  2. pickle.dump(embed_dictt,f)
  3. f.close()
  • 现在是时候执行 python 项目的第一部分了。

运行 python 文件并使用人名及其 ref_id 获取五个图像输入:

python3 embedding.py

2.recognition.py:

在这里,我们将再次从相机帧创建人物嵌入。然后,我们将新的嵌入与 pickle 文件中存储的嵌入进行匹配。同一个人的新嵌入将接近其在向量空间中的嵌入。因此,我们将能够识别出这个人。

现在,创建一个新的 python 文件识别.py 并粘贴以下代码:

  • 导入库:
  1. import face_recognition
  2. import cv2
  3. import numpy as np
  4. import glob
  5. import pickle
  • 加载存储的 pickle 文件:
  1. f=open("ref_name.pkl","rb")
  2. ref_dictt=pickle.load(f)
  3. f.close()
  4. f=open("ref_embed.pkl","rb")
  5. embed_dictt=pickle.load(f)
  6. f.close()
  • 创建两个列表,一个用于存储 ref_id,另一个用于各自的嵌入:
  1. known_face_encodings = []
  2. known_face_names = []
  3. for ref_id , embed_list in embed_dictt.items():
  4. for my_embed in embed_list:
  5. known_face_encodings +=[my_embed]
  6. known_face_names += [ref_id]
  • 启动网络摄像头以识别此人:
  1. video_capture = cv2.VideoCapture(0)
  2. face_locations = []
  3. face_encodings = []
  4. face_names = []
  5. process_this_frame = True
  6. while True :
  7. ret, frame = video_capture.read()
  8. small_frame = cv2.resize(frame, (0, 0), fx=0.25, fy=0.25)
  9. rgb_small_frame = small_frame[:, :, ::-1]
  10. if process_this_frame:
  11. face_locations = face_recognition.face_locations(rgb_small_frame)
  12. face_encodings = face_recognition.face_encodings(rgb_small_frame, face_locations)
  13. face_names = []
  14. for face_encoding in face_encodings:
  15. matches = face_recognition.compare_faces(known_face_encodings, face_encoding)
  16. name = "Unknown"
  17. face_distances = face_recognition.face_distance(known_face_encodings, face_encoding)
  18. best_match_index = np.argmin(face_distances)
  19. if matches[best_match_index]:
  20. name = known_face_names[best_match_index]
  21. face_names.append(name)
  22. process_this_frame = not process_this_frame
  23. for (top_s, right, bottom, left), name in zip(face_locations, face_names):
  24. top_s *= 4
  25. right *= 4
  26. bottom *= 4
  27. left *= 4
  28. cv2.rectangle(frame, (left, top_s), (right, bottom), (0, 0, 255), 2)
  29. cv2.rectangle(frame, (left, bottom - 35), (right, bottom), (0, 0, 255), cv2.FILLED)
  30. font = cv2.FONT_HERSHEY_DUPLEX
  31. cv2.putText(frame, ref_dictt[name], (left + 6, bottom - 6), font, 1.0, (255, 255, 255), 1)
  32. font = cv2.FONT_HERSHEY_DUPLEX
  33. cv2.imshow('Video', frame)
  34. if cv2.waitKey(1) & 0xFF == ord('q'):
  35. break
  36. video_capture.release()
  37. cv2.destroyAllWindows()

现在运行项目的第二部分来识别这个人:

python3 recognise.py

概括:

今天分享的这个深度学习项目教你如何使用python库dlib和face_recognition APIs(OpenCV的)开发人脸识别项目。它介绍了 face_recognition API。 我们分两部分实现了这个python项目:

  • 在第一部分中,我们已经看到了如何存储有关人脸结构的信息,即人脸嵌入。 然后我们学习如何存储这些嵌入。
  • 在第二部分中,我们已经看到了如何通过将新的人脸嵌入与存储的人脸嵌入进行比较来识别人。

人脸识别技术的应用

目前,从我国人脸识别技术应用来看,主要集中在三大领域:考勤门禁、安防以及金融。具体如:安防监控、视频中的人脸检测、人脸识别、人流量统计等,广泛应用在小区、楼宇的智能门禁,周界可疑人员徘徊检测、景区人流量统计等等。

TSINGSEE青犀视频基于多年视频领域的技术经验积累,将AI检测、智能识别技术融合到各个应用场景中,典型的示例如EasyCVR视频融合云服务,具有AI人脸识别、车牌识别、语音对讲、云台控制、声光告警、监控视频分析与数据汇总的能力。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/85258
推荐阅读
相关标签
  

闽ICP备14008679号