Replies: 1 comment 6 replies
|
Sure, we'll take a look at it but why didn't you file an RFE in the issue tracker? |
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment





Uh oh!
There was an error while loading. Please reload this page.
Motivation
The new built-in on-device vision APIs introduced in #5467 look very useful, and I would like to use
com.codename1.ai.vision.TextRecognizerfor OCR of Japanese text.At the moment, however, the portable API doesn't seem to provide a way to select the recognition language or writing system.
In particular, the current Android implementation uses ML Kit's Latin
TextRecognizerOptions.DEFAULT_OPTIONS, so the built-inTextRecognizercannot be used for Japanese OCR on Android.This appears to be mainly a missing portable API/configuration option rather than a limitation of the underlying native frameworks. ML Kit Text Recognition v2 provides dedicated recognizers for Latin, Chinese, Devanagari, Japanese, and Korean scripts. Apple Vision also provides language configuration for text recognition.
Request
Could Codename One expose a portable way to configure the language or writing system used by
TextRecognizer?Thank you!
All reactions