美文网首页
人脸检测简易代码

人脸检测简易代码

作者: 圣_狒司机 | 来源:发表于2019-08-22 23:24 被阅读0次
import matplotlib.pyplot as plt
import face_recognition

img = face_recognition.load_image_file('131331w8joym8to6bmvz6t.jpg')
plt.imshow(img)

face_count = len(face_recognition.face_locations(img))

for index,(a,b,c,d) in enumerate(face_recognition.face_locations(img)):
    face = img[a:c,d:b]
    ax = plt.subplot(1,face_count,index+1)
    ax.imshow(face)
    ax.set_xticks([])
    ax.set_yticks([])


相关文章

网友评论

      本文标题:人脸检测简易代码

      本文链接:https://www.haomeiwen.com/subject/jssasctx.html