【发布时间】:2017-11-29 21:18:31
【问题描述】:
我正在使用 Microsoft OCR 库,我想知道是否有某种方法可以改进我的语言的文本识别。我使用 OCR 库运行了一个程序,但对我提供的图像的某些单词的检测很差。
我已经知道 OCR 支持西班牙语,但它没有正确处理所有单词,例如:
我在 json 中得到的响应是:
...
"boundingBox": "358,180,271,278",
"lines": [
{
"boundingBox": "362,180,67,17",
"words": [
{
"boundingBox": "362,180,67,17",
"text": "Nonúre"
}
]
},
{
"boundingBox": "358,208,118,22",
"words": [
{
"boundingBox": "358,208,63,22",
"text": "tlgcT2"
},
{
"boundingBox": "428,217,7,4",
"text": "-"
},
{
"boundingBox": "441,210,35,16",
"text": "ED6"
}
]
},
...
将“Nombre”标识为“Nonúre”和“CT2”(来自 CT2 - ED6) “tlgcT2”
有什么办法可以提高文本识别率?
【问题讨论】:
标签: c# service ocr microsoft-cognitive