公式识别 API
POST
http[s]: //rest-api.xfyun.cn/v2/itr请求参数
Body 参数application/json
common
object
用于上传公共参数
app_id
string
必需
在平台申请的appid信息
business
object
用于上传业务参数
ent
string
必需
请求引擎类型,只支持math-arith
aue
string
必需
预留压缩格式,暂时只支持raw
data
object
必需
用于上传识别图像数据
image
string
必需
图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
示例
{
"common": {
"app_id": "xxxxxxxx"
},
"business": {
"ent": "teach-photo-print",
"aue": "raw"
},
"data": {
"image": "/9j/4AAQSkZJRgABAQAAAQABAAD/2..."
}
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
data
object
必需
_engine_info
object
必需
识别引擎相关信息,无需关注
protocol
string
协议版本号
region
array [object {3}]
必需
版面分析结果数组,数组中的每个元素为一个识别区域(文本行、图像),元素排序顺序为从上到下,从左至右
message
string
必需
sid
string
必需
示例
{
"code": 0,
"data": {
"_engine_info": {
"category": "teaching_assistance_photo",
"name": "iFlytek-Confucius Engine",
"version": "2.0.0.1101"
},
"protocol": "2.0",
"region": [
{
"coord": {
"x": [
"292",
"290",
"285",
"283",
"280",
"60",
"32",
"23",
"14",
"10",
"8",
"8",
"9",
"11",
"22",
"292"
],
"y": [
"18",
"48",
"51",
"52",
"52",
"45",
"44",
"43",
"41",
"40",
"38",
"35",
"7",
"5",
"4",
"4"
]
},
"recog": {
"content": "P(m-4,m+1)",
"element": [
{
"conf": 1,
"content": "P"
},
{
"conf": 1,
"content": "("
},
{
"conf": 1,
"content": "m"
},
{
"conf": 1,
"content": "-"
},
{
"conf": 1,
"content": "4"
},
{
"conf": 1,
"content": ","
},
{
"conf": 1,
"content": "m"
},
{
"conf": 1,
"content": "+"
},
{
"conf": 1,
"content": "1"
},
{
"conf": 1,
"content": ")"
}
],
"exception": 0
},
"type": "text"
},
{
"coord": {
"x": [
"302",
"298",
"297",
"296",
"291",
"290",
"290",
"293",
"297",
"299",
"302"
],
"y": [
"48",
"53",
"54",
"54",
"49",
"36",
"24",
"4",
"4",
"6",
"10"
]
},
"recog": {
"content": ".",
"element": [
{
"conf": 1,
"content": "."
}
],
"exception": 0
},
"type": "text"
},
{
"coord": {
"x": [
"243",
"238",
"227",
"217",
"203",
"212",
"243"
],
"y": [
"54",
"55",
"56",
"56",
"54",
"53",
"53"
]
},
"recog": {
"content": "1.",
"element": [
{
"conf": 1,
"content": "1"
},
{
"conf": 1,
"content": "."
}
],
"exception": 0
},
"type": "text"
}
]
},
"message": "success",
"sid": "itrXXXXXXXXXXXXXXX"
}
最后修改时间: 1 年前