使用 Google Cloud Vision 对手写文本进行分类
Classify handwritten text using Google Cloud Vision
我正在探索 Google Cloud Vision 来检测文本中的手写内容。
我看到该模型在阅读手写文本时非常准确。
我正在遵循此指南:https://cloud.google.com/vision/docs/handwriting
这是我的问题:有没有办法在回复中发现文本是手写的还是打字的?
响应中对图像分类有用的参数或其他内容?
请求如下:
{
"requests": [
{
"features": [
{
"type": "DOCUMENT_TEXT_DETECTION"
}
],
"image": {
"source": {
"imageUri": "gs://cloud-samples-data/vision/handwriting_image.png"
}
}
}
]
}
这是回复:
{
"responses": [
{
"textAnnotations": [
{
"locale": "en",
"description": "Google Cloud\nPlatform\n",
"boundingPoly": {
"vertices": [
{
"x": 380,
"y": 66
},
{
"x": 714,
"y": 66
},
{
"x": 714,
"y": 257
},
{
"x": 380,
"y": 257
}
]
}
},
{
"description": "Google",
"boundingPoly": {
"vertices": [
{
"x": 380,
"y": 69
},
{
"x": 544,
"y": 67
},
{
"x": 545,
"y": 185
},
{
"x": 381,
"y": 187
}
]
}
},
...
Thank you
似乎已经与 Google 团队进行了公开讨论以解决此功能请求:
https://issuetracker.google.com/154156890
我建议您对 Public 问题跟踪器发表评论,并指出“您受到此问题的影响”以获得知名度并推动完成此更改。
我不确定是否可以在本地实施。
我正在探索 Google Cloud Vision 来检测文本中的手写内容。 我看到该模型在阅读手写文本时非常准确。
我正在遵循此指南:https://cloud.google.com/vision/docs/handwriting
这是我的问题:有没有办法在回复中发现文本是手写的还是打字的?
响应中对图像分类有用的参数或其他内容?
请求如下:
{
"requests": [
{
"features": [
{
"type": "DOCUMENT_TEXT_DETECTION"
}
],
"image": {
"source": {
"imageUri": "gs://cloud-samples-data/vision/handwriting_image.png"
}
}
}
]
}
这是回复:
{
"responses": [
{
"textAnnotations": [
{
"locale": "en",
"description": "Google Cloud\nPlatform\n",
"boundingPoly": {
"vertices": [
{
"x": 380,
"y": 66
},
{
"x": 714,
"y": 66
},
{
"x": 714,
"y": 257
},
{
"x": 380,
"y": 257
}
]
}
},
{
"description": "Google",
"boundingPoly": {
"vertices": [
{
"x": 380,
"y": 69
},
{
"x": 544,
"y": 67
},
{
"x": 545,
"y": 185
},
{
"x": 381,
"y": 187
}
]
}
},
...
Thank you
似乎已经与 Google 团队进行了公开讨论以解决此功能请求:
https://issuetracker.google.com/154156890
我建议您对 Public 问题跟踪器发表评论,并指出“您受到此问题的影响”以获得知名度并推动完成此更改。
我不确定是否可以在本地实施。