OCR 图片识别
POST
/ocr_image
请求参数
Body 参数application/json
image
string
必需
示例
{
"image": "https://greasyfork.org/vite/assets/blacklogo96-CxYTSM_T.png"
// 本地路径
//"image": "file://D:/a.jpg"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/ocr_image' \
--header 'Content-Type: application/json' \
--data-raw '{
"image": "https://greasyfork.org/vite/assets/blacklogo96-CxYTSM_T.png"
// 本地路径
//"image": "file://D:/a.jpg"
}'
返回响应
🟢200成功
application/json
Body
status
enum<string>
必需
枚举值:
ok
retcode
number
必需
data
array [object {7}]
必需
text
string
该行文本总和
pt1
object
顶点坐标
pt2
object
顶点坐标
pt3
object
顶点坐标
pt4
object
顶点坐标
charBox
array [object {2}]
拆分
score
string
必需
message
string
必需
wording
string
必需
echo
string | null
必需
示例
{
"status": "ok",
"retcode": 0,
"data": [
{
"text": "nU",
"pt1": {
"x": "25.930853",
"y": "1.711797"
},
"pt2": {
"x": "72.461205",
"y": "2.745806"
},
"pt3": {
"x": "72.193184",
"y": "14.806514"
},
"pt4": {
"x": "25.662836",
"y": "13.772506"
},
"charBox": [
{
"charText": "nU",
"charBox": {
"pt1": {
"x": "41.186707",
"y": "2.050816"
},
"pt2": {
"x": "56.442558",
"y": "2.389835"
},
"pt3": {
"x": "56.182915",
"y": "14.073647"
},
"pt4": {
"x": "40.927063",
"y": "13.734628"
}
}
}
],
"score": ""
},
{
"text": "yion in",
"pt1": {
"x": "40.310081",
"y": "19.155090"
},
"pt2": {
"x": "92.413017",
"y": "17.004047"
},
"pt3": {
"x": "93.224297",
"y": "36.654957"
},
"pt4": {
"x": "41.121365",
"y": "38.806000"
},
"charBox": [
{
"charText": "yion",
"charBox": {
"pt1": {
"x": "40.310081",
"y": "19.155090"
},
"pt2": {
"x": "66.660988",
"y": "18.067207"
},
"pt3": {
"x": "67.446922",
"y": "37.104027"
},
"pt4": {
"x": "41.096012",
"y": "38.191910"
}
}
},
{
"charText": " ",
"charBox": {
"pt1": {
"x": "66.660988",
"y": "18.067207"
},
"pt2": {
"x": "73.847603",
"y": "17.770512"
},
"pt3": {
"x": "74.633530",
"y": "36.807331"
},
"pt4": {
"x": "67.446922",
"y": "37.104027"
}
}
},
{
"charText": "in",
"charBox": {
"pt1": {
"x": "73.847603",
"y": "17.770512"
},
"pt2": {
"x": "85.825287",
"y": "17.276018"
},
"pt3": {
"x": "86.611214",
"y": "36.312836"
},
"pt4": {
"x": "74.633530",
"y": "36.807331"
}
}
}
],
"score": ""
},
{
"text": "mlHttp.",
"pt1": {
"x": "6.956338",
"y": "61.610126"
},
"pt2": {
"x": "72.331848",
"y": "65.844292"
},
"pt3": {
"x": "71.104248",
"y": "84.798470"
},
"pt4": {
"x": "5.728738",
"y": "80.564301"
},
"charBox": [
{
"charText": "mlHttp",
"charBox": {
"pt1": {
"x": "9.230268",
"y": "61.757401"
},
"pt2": {
"x": "61.530674",
"y": "65.144737"
},
"pt3": {
"x": "60.341438",
"y": "83.506592"
},
"pt4": {
"x": "8.041031",
"y": "80.119255"
}
}
},
{
"charText": ".",
"charBox": {
"pt1": {
"x": "63.804607",
"y": "65.292007"
},
"pt2": {
"x": "70.626396",
"y": "65.733833"
},
"pt3": {
"x": "69.437164",
"y": "84.095695"
},
"pt4": {
"x": "62.615368",
"y": "83.653870"
}
}
}
],
"score": ""
}
],
"message": "",
"wording": "",
"echo": null
}
修改于 2024-10-27 13:18:44