我使用 Google vision API 从任何对象(如报纸或墙上的文字)中读取文本。我从 Google 开发者网站尝试过相同的示例,但我的文本识别器总是在IsOperational
函数上返回 false。我在 Blackberry keyone 上进行了测试,还在 Moto x 上进行了测试,可以正常工作。
摇篮文件:
compile 'com.google.android.gms:play-services-vision:11.0.4'
谁可以帮我这个事。提前致谢
TextRecognizer textRecognizer = new TextRecognizer.Builder(context).build();
textRecognizer.setProcessor(new OcrDetectorProcessor(mGraphicOverlay, OcrCaptureActivity.this));
if(!textRecognizer.isOperational()) {
Log.e("TextRecog","Not Operational"); IntentFilter lowstorageFilter = new
IntentFilter(Intent.ACTION_DEVICE_STORAGE_LOW); boolean hasLowStorage = registerReceiver(null, lowstorageFilter) != null;
}