美文网首页python初学者
python百度AI人脸识别API测试

python百度AI人脸识别API测试

作者: 爱猫猫的老狗 | 来源:发表于2019-11-26 22:40 被阅读0次

    1、注册账号
    2、创建应用
    3、得到AK和SK
    4、用AK SK获取access_token
    可用下面的代码:

    #!/usr/bin/python3.5
    # encoding:utf-8
    import requests 
    
    # client_id= 你的AK client_secret =你的SK
    host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=4nKZkrripftqdC1Xi&client_secret=oHm8FkEZwYhTussP'
    response = requests.get(host)
    if response:
        print(response.json())
    

    在返回结果里面找access_token,后面的键值就是。

    5、测试
    网上截图一个小一点的人脸

    深度linux截图_选择区域_20191126211541.png
    6、上传到base64网站转码
    http://imgbase64.duoshitong.com/
    转好之后删除头部! image.png

    7、测试程序
    https://ai.baidu.com/docs#/Face-Detect-V3/top

    先把里面的access_token换成你的。

    然后用转换好的代码替换Demo代码 image.png
    特别注意!

    把FACE_TOKEN修改为


    image.png
    image.png

    8、添加参数

    把想获取的都写在这里,用逗号隔开。


    image.png
    参考: image.png

    8、附自己修改的完整代码

    #!/usr/bin/python3.5
    # encoding:utf-8
    
    import requests
    
    '''
    人脸检测与属性分析
    '''
    
    request_url = "https://aip.baidubce.com/rest/2.0/face/v3/detect"
    
    params = "{\"image\":\"iVBORw0KGgoAAAANSUhEUgAAAEIAAAA8CAIAAABdHvsOAAAACX......此处省略......BIWXMAAA7EAAAOxAGVKw4bAAAb6UlEQVRogZ16S6xl2XnW/AAASUVORK5CYII=\",\"image_type\":\"BASE64\",\"face_field\":\"gender,age,beauty\"}"
    access_token = '24.bb796f574e5c000.1577364642.282335-17856885'
    request_url = request_url + "?access_token=" + access_token
    headers = {'content-type': 'application/json'}
    response = requests.post(request_url, data=params, headers=headers)
    if response:
        print (response.json())
    

    相关文章

      网友评论

        本文标题:python百度AI人脸识别API测试

        本文链接:https://www.haomeiwen.com/subject/wlfuwctx.html