Google Play Vision:定义OCR字符范围?
Google Play Vision: Define OCR Character Range?
我正在使用 Google 的 play-services-vision
在 Android 平台上使用 TextRecognizer
class 执行光学字符识别 (OCR)。
为了性能,我想将可识别的字符范围限制在我的应用程序的预期范围内。我不知道如何通知 TextRecognizer
这件事。
目前,我使用的是一个非常基本的实现:
TextRecognizer t = new TextRecognizer.Builder(getActivity()).build();
我希望功能让人联想到以下内容,其中 TextRecognizer
只能返回 01234abc
:
范围内的字符
t.setCharacterRange("01234abc");
如果完全可以定义这个白名单,有没有人知道是否也可以配置特殊字符进行检测?
目前没有白名单功能只有您希望通过TextRecognizer
. You'll have to implement your own checker/verifier on the TextBlock
返回的字符串值识别的特定字符。
P.S。 - 是的。我也认为这是很多工作。
我正在使用 Google 的 play-services-vision
在 Android 平台上使用 TextRecognizer
class 执行光学字符识别 (OCR)。
为了性能,我想将可识别的字符范围限制在我的应用程序的预期范围内。我不知道如何通知 TextRecognizer
这件事。
目前,我使用的是一个非常基本的实现:
TextRecognizer t = new TextRecognizer.Builder(getActivity()).build();
我希望功能让人联想到以下内容,其中 TextRecognizer
只能返回 01234abc
:
t.setCharacterRange("01234abc");
如果完全可以定义这个白名单,有没有人知道是否也可以配置特殊字符进行检测?
目前没有白名单功能只有您希望通过TextRecognizer
. You'll have to implement your own checker/verifier on the TextBlock
返回的字符串值识别的特定字符。
P.S。 - 是的。我也认为这是很多工作。