赞
踩
img2text图片识别商品接口API可以将图片中的文字提取出来,用于商品信息的自动录入、商品分类等场景。以下是一个接入演示:
选择图片识别的API。
调用API进行图片识别,将图片上传到API服务器,并使用API Key和Secret进行身份验证。
API服务器返回识别结果,包括文字内容和位置信息。
根据返回的结果,将文字内容录入到数据库或其他系统中。
如果需要,可以使用识别结果进行进一步的处理,如商品分类、价格比较等。
需要注意的是,不同的API可能有不同的接入方式和使用限制,需要根据实际情况进行选择和调整。同时,由于图片识别技术的复杂性,可能会出现识别错误或无法识别的情况,需要进行适当的容错处理。
公共参数
名称 | 类型 | 必须 | 描述 |
---|---|---|---|
key | String | 是 | 调用key(必须以GET方式拼接在URL中) |
secret | String | 是 | 调用密钥 |
api_name | String | 是 | API接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等] |
cache | String | 否 | [yes,no]默认yes,将调用缓存的数据,速度比较快 |
result_type | String | 否 | [json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读 |
lang | String | 否 | [cn,en,ru]翻译语言,默认cn简体中文 |
version | String | 否 | API版本 |
请求参数
请求参数:imgcode=http://g-search3.alicdn.com/img/bao/uploaded/i4/O1CN01IDpcD81zHbpHs1YgT_!!2200811456689.jpg
参数说明:imgcode:base64加密后的图片内容(post方式),或者是直接上传(file方式),或是淘宝图片 URL
响应参数
名称 | 类型 | 必须 | 示例值 | 描述 |
---|---|---|---|---|
items | String | 0 | ["女鞋", "鞋子", "高跟鞋", "凉鞋", "一字", "摄影", "高清", "高跟", "素材", "细高跟"] | 识别的图片内容列表 |
tags | String | 0 | 篮球 袜子 加厚 湖人 运动袜 毛巾 男款 穆斯特 杜兰特 高筒 | 识别的图片内容TAG |
find | String | 0 | 篮球袜 | [不通用] |
result | Mix | 0 | { "title": "篮球袜", "desc": [ "品牌:起之萌", "类别:运动配饰" ] } | [不通用] |
same_info | Mix | 0 | [ { "title": "男士运动袜_篮球袜 冬季男士运动袜 - 阿里巴巴", "link": "http://detail.1688.com/offer/562919120066.html", "text": "建议零售价 ¥28.00 货源类别 现货 货号 篮球袜 ", "img": "https://graph.baidu.com/thumb/v4/2398243139,4012709553.jpg" }] | [不通用] |
same_goods | Mix | 0 | [{ "title": "篮球袜 加厚毛巾底缓震运动袜子 篮球袜子 男 中筒 白蓝经典款1717 均码", "price": "https://graph.baidu.com/thumb/v2/3819723548,1832786620.jpg?goods_id=http://item.jd.com/32609582908.html", "url": "http://item.jd.com/32609582908.html", "source": "京东商城", "guessword": "篮球袜", "mypos": [ "运动户外", "运动服饰", "运动配饰", "起之萌" ], "img": "https://graph.baidu.com/thumb/v2/3819723548,1832786620.jpg?goods_id=http://item.jd.com/32609582908.html" }] | [不通用] |
same_similar | Mix | 0 | [不通用] | |
same_hotrecom | Mix | 0 | [不通用] | |
guesswords | String | 0 | [不通用] |
API接口请求接入示例
- # coding:utf-8
- """
- Compatible for python2.x and python3.x
- requirement: pip install requests
- """
- from __future__ import print_function
- import requests
- # 请求示例 url 默认请求参数已经做URL编码
- url = "https://img2text/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgcode=http://g-search3.alicdn.com/img/bao/uploaded/i4/O1CN01IDpcD81zHbpHs1YgT_!!2200811456689.jpg"
- headers = {
- "Accept-Encoding": "gzip",
- "Connection": "close"
- }
- if __name__ == "__main__":
- r = requests.get(url, headers=headers)
- json_obj = r.json()
- print(json_obj)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。