• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

python 使用百度AI接口进行人脸对比的步骤

python 搞代码 4年前 (2022-01-07) 33次浏览 已收录 0个评论
文章目录[隐藏]

这篇文章主要介绍了python 使用百度AI接口进行人脸对比的步骤,帮助大家更好的理解和学习使用python,感兴趣的朋友可以了解下

1. 注册百度云账号

注册百度智能云,提交申请。

创建应用获取AppID,API Key,Secret Key。

2. 安装baidu python api

人脸对比 API 文档

pip install baidu-aip

调用:

 import base64 from aip import AipFace APP_ID = '你的 App ID' API_KEY = '你的 Api Key' SECRET_KEY = '你的 Secret Key' client = AipFace(APP_ID, API_KEY, SECRET_KEY) result = client.match([ { 'image': str(base64.b64encode(open('D:/chenjy/1.png-600', 'rb').read()), 'utf-8'), 'image_type': 'BASE64', }, { 'image': str(base64.b64encode(open('D:/chenjy/2.png-600', 'rb').read()), 'utf-8'), 'image_type': 'BASE64', } ]) print(result)

返回值:

返回主要参数说明:

参数名 必选 类型 说明
score float 人脸相似度得分,推荐阈值80分
face_list array 人脸信息列表
face_token string 人脸的唯一标志

3.调用摄像头

 import cv2 cap = cv2.VideoCapture(0) # 打开摄像头 while True: ret, frame = cap.read() frame = cv2.flip(frame, 1) cv2.imshow('window', frame) cv2.imwrite('D:/chenjy/2.png-600', frame) # 保存路径 cv2.waitKey(2000) cap.release() cv2.destroyAllWindows()

4.完整测试程序

 import cv2 import base64 from aip import AipFace APP_ID = '你的 App ID' API_KEY = '你的 Api Key' SECRET_KEY = '你的 Secret Key' client = AipFace(APP_ID, API_KEY,<div style="color:transparent">来源gaodai.ma#com搞#代!码网</div> SECRET_KEY) def get_result(): result = client.match([ { 'image': str(base64.b64encode(open('D:/chenjy/1.png-600', 'rb').read()), 'utf-8'), 'image_type': 'BASE64', }, { 'image': str(base64.b64encode(open('D:/chenjy/2.png-600', 'rb').read()), 'utf-8'), 'image_type': 'BASE64', } ]) if result['error_msg'] == 'SUCCESS': score = result['result']['score'] print(result) print('相似度:'+str(score)) else: print('服务器错误') cap = cv2.VideoCapture(0) # 打开摄像头 while True: ret, frame = cap.read() frame = cv2.flip(frame, 1) cv2.imshow('window', frame) cv2.imwrite('D:/chenjy/2.png-600', frame) # 保存路径 cv2.waitKey(2000) get_result() cap.release() cv2.destroyAllWindows()

结果:

照片加了模糊处理

以上就是python 使用百度AI接口进行人脸对比的步骤的详细内容,更多关于python 人脸对比的资料请关注gaodaima搞代码网其它相关文章!

以上就是python 使用百度AI接口进行人脸对比的步骤的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:python 使用百度AI接口进行人脸对比的步骤

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址