2021
03-17
03-17
python 使用百度AI接口进行人脸对比的步骤
1.注册百度云账号注册百度智能云,提交申请。创建应用获取AppID,APIKey,SecretKey。2.安装baidupythonapi人脸对比API文档pipinstallbaidu-aip调用:importbase64fromaipimportAipFaceAPP_ID='你的AppID'API_KEY='你的ApiKey'SECRET_KEY='你的SecretKey'client=AipFace(APP_ID,API_KEY,SECRET_KEY)result=client.match([{'image':str(base64.b64encode(open('D:/chenjy/1.png','rb').read()...
继续阅读 >