gpt4 book ai didi

android - Google Vision API 文本识别器不工作

转载 作者:太空狗 更新时间:2023-10-29 14:41:26 26 4
gpt4 key购买 nike

我使用 Google 视觉 API 从任何对象(如报纸或墙上的文字)中读取文本。我尝试过来自 Google 开发者网站的相同示例,但我的文本识别器在 IsOperational 函数上始终返回 false。我在 Blackberry keyone 上进行了测试,也在 Moto x 上进行了测试,可以正常工作。

Gradle file : 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;
}

最佳答案

在您的 App manifest 中添加 vision api 的元数据

 <meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.gms.vision.DEPENDENCIES"
android:value="ocr"/>

关于android - Google Vision API 文本识别器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47570243/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com