Since the Google Cloud Platform vision on iOS only supports Face Recognition for now. Is it another way to use google cloud platform api Optical Character Recognition (OCR) on iOS?
Best wishes,
David
Since the Google Cloud Platform vision on iOS only supports Face Recognition for now. Is it another way to use google cloud platform api Optical Character Recognition (OCR) on iOS?
Best wishes,
David
You can use the rest API [1] as there are no libraries for objective-C.
A POST request example:
{
"requests": [
{
"image": {
"source": {
"imageUri": "https://s3.amazonaws.com/com.dataturks.test/testocr.png"
}
},
"features": [
{
"type": "TEXT_DETECTION"
}
]
}
]
}