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...