gpt4 book ai didi

Android Multi-tracker 示例项目运行但未显示任何形式的检测

转载 作者:行者123 更新时间:2023-11-29 20:25:09 26 4
gpt4 key购买 nike

我一直在尝试测试新的 Vision API,并让多跟踪器应用在 Android Studio 中运行。

我在手机上运行示例应用程序,但无法检测到任何条形码。我已经测试了 ISBN 码、QR 码和人脸。由于聚焦问题,两者都具有大图像;但是,我没有发现检测有任何变化。

我应该看到什么?如何从示例应用中检测到条形码?

最佳答案

我猜您未使用示例应用检测到任何内容的原因是视觉库未成功下载到您的设备。如果设备处于“低存储”状态,就会发生这种情况。我们最近更新了示例以检查这种情况并向用户提供反馈。例如:

// Check for low storage.  If there is low storage, the native library will not be
// downloaded, so detection will not become operational.
IntentFilter lowstorageFilter = new IntentFilter(Intent.ACTION_DEVICE_STORAGE_LOW);
boolean hasLowStorage = registerReceiver(null, lowstorageFilter) != null;

if (hasLowStorage) {
Toast.makeText(this, R.string.low_storage_error, Toast.LENGTH_LONG).show();
Log.w(TAG, getString(R.string.low_storage_error));
}

https://github.com/googlesamples/android-vision/blob/master/visionSamples/photo-demo/app/src/main/java/com/google/android/gms/samples/vision/face/photo/PhotoViewerActivity.java#L91

如果您遇到这种情况,释放设备上的空间应该可以解决问题。

关于Android Multi-tracker 示例项目运行但未显示任何形式的检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32652175/

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