获得百度智能云access token

百度智能云管理中心网址:https://console.bce.baidu.com/

  1. 创建账户,完整身份认证
  2. 创建应用,获得API key与Secret Key:https://console.bce.baidu.com/ai/?fromai=1#/ai/ocr/app/list
  3. 获得access token:https://ai.baidu.com/ai-doc/REFERENCE/Ck3dwjhhu,可以参考下面的代码,token可以在使用的时候随时产生,但是一个token有效期是1个月,千万别在代码里写死了
def get_baidu_token() -> str:
    """获得百度的token"""
    import requests
    ak = "jSr......" # 第2步中的API Key
    sk = "Qef....." # 第2步中的Secret Key
    # client_id 为官网获取的AK, client_secret 为官网获取的SK
    host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id={0}&client_secret={1}'.format(
        ak, sk)
    response = requests.get(host)
    if response:
        # print(response.json()) # 这是返回的字段
        # print('token:', response.json()['refresh_token'])
        # print('有效期:', response.json()['expires_in'])
        return response.json()['access_token']
  1. 得到access token后就可以根据具体的业务调用API了

API文档首页:https://ai.baidu.com/ai-doc/REFERENCE/7krq2erzw

百度智能提供了丰富的图像识别API,包括OCR文字识别和图像识别等。可以使用Python的requests库和百度智能提供的API接口进行图像识别。 具体步骤如下: 1. 在百度智能控制台创建应用,获取API Key和Secret Key。 2. 安装requests库,使用API Key和Secret Key生成Access Token。 3. 使用Access TokenAPI接口对图像进行识别,获取识别结果。 示例代码如下: ```python import requests import base64 # 获取Access Token def get_access_token(api_key, secret_key): url = 'https://aip.baidubce.com/oauth/2.0/token' params = { 'grant_type': 'client_credentials', 'client_id': api_key, 'client_secret': secret_key, } response = requests.post(url, params=params) if response: access_token = response.json()['access_token'] return access_token else: return None # OCR文字识别 def ocr_text_recognition(image_path, access_token): url = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic' with open(image_path, 'rb') as f: image_data = f.read() image_base64 = base64.b64encode(image_data).decode('utf-8') data = {'image': image_base64} headers = {'Content-Type': 'application/x-www-form-urlencoded'} params = {'access_token': access_token} response = requests.post(url, params=params, headers=headers, data=data) if response: result = response.json()['words_result'] return result else: return None # 物体识别 def object_detection(image_path, access_token): url = 'https://aip.baidubce.com/rest/2.0/image-classify/v2/advanced_general' with open(image_path, 'rb') as f: image_data = f.read() image_base64 = base64.b64encode(image_data).decode('utf-8') data = {'image': image_base64} headers = {'Content-Type': 'application/x-www-form-urlencoded'} params = {'access_token': access_token} response = requests.post(url, params=params, headers=headers, data=data) if response: result = response.json()['result'] return result else: return None if __name__ == '__main__': # 替换为自己的API Key和Secret Key api_key = 'your_api_key' secret_key = 'your_secret_key' # 获取Access Token access_token = get_access_token(api_key, secret_key) # 图像识别 image_path = 'test.jpg' text_result = ocr_text_recognition(image_path, access_token) object_result = object_detection(image_path, access_token) # 输出识别结果 print(text_result) print(object_result) ``` 以上代码演示了如何使用Python百度智能API实现OCR文字识别和物体识别。可以根据自己的需求修改API接口和参数,实现更多功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

呆萌的代Ma

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值