Hi there,
Does anyone have an idea of how you could recognise the text in an image through the camera on the device and send back the return value as string?
Thanks.
Hello,
In general, you would need an OCR engine.
The OCR engine could be built into the mobile app or be cloud based. You could also have your own OCR engine and running it on your own servers (to meet security/privacy requirements).
For OpenEdge Mobile, you could add a PhoneGap plugin or add JavaScript code to call a REST/web service to extract the text from the image file. You would use the camera service to take the picture first.
Making it to work real time is not as easy.
For example, Google recently bought Word Lens that does real time OCR and translation.
I did some internet searches (OCR image, OCR iOS/Android, OCR PhoneGap plugin, OCR REST API).
I found some references to the Tesseract OCR engine.
Here are some links that might be useful:
github.com/.../PhonegapOCRPlugin
stackoverflow.com/.../free-phonegap-ocr-plugins-for-android
stackoverflow.com/.../android-phonegap-plugin-for-ocr
stackoverflow.com/.../ocr-web-service
www.aspose.com/.../ocr-api.aspx
www.aspose.com/.../Extract%20OCR%20or%20HOCR%20Text%20from%20Images
stamplin.com/.../extracttextpdf
www.onlineocr.net/.../ocrwebservice
I have not tried any of these plugins/web services myself.
I hope this helps.
Hello,
In general, you would need an OCR engine.
The OCR engine could be built into the mobile app or be cloud based. You could also have your own OCR engine and running it on your own servers (to meet security/privacy requirements).
For OpenEdge Mobile, you could add a PhoneGap plugin or add JavaScript code to call a REST/web service to extract the text from the image file. You would use the camera service to take the picture first.
Making it to work real time is not as easy.
For example, Google recently bought Word Lens that does real time OCR and translation.
I did some internet searches (OCR image, OCR iOS/Android, OCR PhoneGap plugin, OCR REST API).
I found some references to the Tesseract OCR engine.
Here are some links that might be useful:
github.com/.../PhonegapOCRPlugin
stackoverflow.com/.../free-phonegap-ocr-plugins-for-android
stackoverflow.com/.../android-phonegap-plugin-for-ocr
stackoverflow.com/.../ocr-web-service
www.aspose.com/.../ocr-api.aspx
www.aspose.com/.../Extract%20OCR%20or%20HOCR%20Text%20from%20Images
stamplin.com/.../extracttextpdf
www.onlineocr.net/.../ocrwebservice
I have not tried any of these plugins/web services myself.
I hope this helps.
thanks very much. i will have a look, hopefully i get this to work.