faceEncoded=face_recognition.face_encodings(frameRGB,facesLocate) #遍历检测的人脸和库中读取的图片进行对比,计算其相似度 for(top,right,bottom,left),face_encodinginzip(facesLocate,faceEncoded): #进行匹配 matchs=face_recognition.compare_faces(existsEncodeingList,face_encoding) #计算相似度 distance=face_...
facesLocate=face_recognition.face_locations(frameRGB) #进行特征编码 faceEncoded=face_recognition.face_encodings(frameRGB,facesLocate) #遍历检测的人脸和库中读取的图片进行对比,计算其相似度 for(top,right, bottom,left),face_encodinginzip(facesLocate,faceEncoded): #进行匹配 matchs=face_recognition.compare...
与上篇通过摄像头动态识别人脸一样,先下载好opencv-python、face-recognition,这里因为使用的是照片对比的方式,特意使用tkinter画了一个简单的GUI方便操作。 在python 3以上版本tkinter是环境自带的,所以这里不需要安装 2.代码示例 importos importcv2 importnumpyasnp ...