- 1.2 基本概念
- 1.3 Galaxy Vision Service简介
- 1.3.1 集群地址
- 1.4 SDK
- 1.4.1 获取SDK
- 1.4.2 SDK发布和历史
- 1.5 快速开始
- 1.6 Galaxy Vision Service API
- 1.6.1 VisionClient
- 1.6.1.1 analysis_faces()
- 1.6.1.2 detect_labels()
- 1.6.1.3 match_faces()
- 1.6.1.4 Image
- 1.6.1.5 nlp_translation()
- 1.6.1.6 ocr_detection()
- 1.6.1.7 ocr_image_translation()
- 1.6.1.8 Label
- 1.6.1.9 OcrLine
- 1.6.1.10 OcrTranslateLine
- 1.6.1.11 OcrRegion
- 1.6.1.12 DetectLabelsParam
- 1.6.1.13 DetectFacesRequest
- 1.6.1.14 DetectLabelsRequest
- 1.6.1.15 FaceCompareRequest
- 1.7 FAQ
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
1.6.1.6 ocr_detection()
ocr_detection(self, *args, **kwargs) 方法
Ocr光学字符识别接口,返回识别文本结果
request syntax
ocr_request = OcrRequest(image=image)
ocr_result = vision_client.ocr_detection(ocr_request)
parameters
image :Image 类型,必须, 待识别的带有文本信息的图片
支持的语言代号列表
简体中文 | 英文 | 法语 | 德语 | 西班牙语 | 日语 | 韩语 | 印地语 |
---|---|---|---|---|---|---|---|
zh-chs | en | fr | de | es | ja | ko | hi |
返回结果: OcrResult 类型
Field Summary
name | type | meaning |
---|---|---|
textAngle | int | 待识别文字与中轴线所成的角度 |
statusCode | int | 状态码,0表示正常 |
orientation | string | 文字朝向(UP, DOWN, LEFT, RIGHT) |
language | string | 所识别出的语言代码,对应关系见上表 |
regions | OcrRegion 类型数组 | 识别出的文本结果,包括文本内容以及坐标位置信息 |
样例
{
"regions":[
{
"boundingBox":"142,196,306,300",
"lines":[
{
"boundingBox":"237,196,164,16",
"text":"COMPANY NAME "
},
{
"boundingBox":"244,220,144,6",
"text":"SLOGAN OF THE GOES HERE "
},
{
"boundingBox":"142,441,138,14",
"text":"DWYANE CLARK "
},
{
"boundingBox":"184,464,95,8",
"text":"GRAPHIC DESIGNER "
},
{
"boundingBox":"375,479,32,6",
"text":"AD DRESS "
},
{
"boundingBox":"364,489,84,7",
"text":"LOcanON, USA "
}
]
}
],
"statusCode":0,
"textAngle":0,
"orientation":"UP",
"language":"en"
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论