在 python 中使用 Microsoft 的 FaceApi 比较人脸

Compare faces using Microsoft's FaceApi in python

我是 python 编程的新手,只是想知道我们是否可以使用 Python(3.6) 中的 Microsoft FaceApi 来比较两张脸,使用他们的 faceIds 或 facelandmarks?如果是,请举例说明如何使用它。非常感谢。

如果你想知道两张图片是不是同一个人,你可以先调用detect再调用verify。您可以像这样使用 cognitive_face 包:

import cognitive_face as CF

key = 'YOUR_KEY_HERE'  # Replace with a valid Subscription Key here.
CF.Key.set(key)

base_url = 'https://westus.api.cognitive.microsoft.com/face/v1.0/'  # Replace with your regional Base URL
CF.BaseUrl.set(base_url)

img_urls = [
    'https://images-na.ssl-images-amazon.com/images/M/MV5BMTczNzE3Njk4MV5BMl5BanBnXkFtZTcwOTU1ODk5NQ@@._V1_UY317_CR7,0,214,317_AL_.jpg',
    'https://images-na.ssl-images-amazon.com/images/M/MV5BMzIwMDgzMTE5M15BMl5BanBnXkFtZTcwNTg4OTgwOA@@._V1_UY317_CR15,0,214,317_AL_.jpg' ]

faces = [CF.face.detect(img_url) for img_url in img_urls]

# Assume that each URL has at least one face, and that you're comparing the first face in each URL
# If not, adjust the indices accordingly.
similarity = CF.face.verify(faces[0][0]['faceId'], faces[1][0]['faceId'])
print similarity