14 Star 188 Fork 30

花开富贵 / FaceMaster

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
face_recognition_demo.py 924 Bytes
一键复制 编辑 原始数据 按行查看 历史
花开富贵 提交于 2024-04-23 12:52 . 【优化】代码规范
import cv2
import face_recognition
def main():
# 读取图片
image_path = 'images/002.jpg'
image = cv2.imread(image_path)
# 缩放图片
# image = cv2.resize(image, None, fx=0.8, fy=0.8)
# 在图像中检测人脸
face_locations = face_recognition.face_locations(image)
# 绘制人脸框
for top, right, bottom, left in face_locations:
cv2.rectangle(image, (left, top), (right, bottom), (0, 255, 0), 2)
# 在图像中标识人脸关键点
face_landmarks_list = face_recognition.face_landmarks(image)
for face_landmarks in face_landmarks_list:
for facial_feature in face_landmarks.keys():
for point in face_landmarks[facial_feature]:
cv2.circle(image, point, 2, (255, 0, 0), -1)
# 显示结果
cv2.imshow('Face Detection', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
if __name__ == '__main__':
main()
1
https://gitee.com/qq153128151/FaceMaster.git
git@gitee.com:qq153128151/FaceMaster.git
qq153128151
FaceMaster
FaceMaster
master

搜索帮助