【发布时间】:2017-05-24 17:32:03
【问题描述】:
由于 iOS 上的 Google Cloud Platform 愿景目前仅支持人脸识别。 是不是在iOS上使用google cloud platform api Optical Character Recognition (OCR)的另一种方式?
祝你好运,
大卫
【问题讨论】:
标签: ios objective-c google-cloud-platform ocr google-cloud-vision
由于 iOS 上的 Google Cloud Platform 愿景目前仅支持人脸识别。 是不是在iOS上使用google cloud platform api Optical Character Recognition (OCR)的另一种方式?
祝你好运,
大卫
【问题讨论】:
标签: ios objective-c google-cloud-platform ocr google-cloud-vision
您可以使用其余 API [1],因为没有用于 Objective-C 的库。
POST 请求示例:
{
"requests": [
{
"image": {
"source": {
"imageUri": "https://s3.amazonaws.com/com.dataturks.test/testocr.png"
}
},
"features": [
{
"type": "TEXT_DETECTION"
}
]
}
]
}
【讨论】: