未找到 Android 移动视觉 API 库

Posted

技术标签:

【中文标题】未找到 Android 移动视觉 API 库【英文标题】:Android Mobile Vision API library not found 【发布时间】:2019-10-09 04:30:36 【问题描述】:

我们开发了一个库,其中包括使用 android Mobile Vision API 来检测用户的面部。以下问题仅在 Lenovo Tab E7Billow X703 上出现。

    private void createCameraSource() 

        Context context = getApplicationContext();
        FaceDetector detector = new FaceDetector.Builder(context)
                .setProminentFaceOnly(true)
                .setTrackingEnabled(true)
                .setClassificationType(com.google.android.gms.vision.face.FaceDetector.ALL_CLASSIFICATIONS)
                .setMode(com.google.android.gms.vision.face.FaceDetector.ACCURATE_MODE)
                .setMinFaceSize(minFaceSize)
                .build();   // <--- HERE IS THE EXCEPTION

        detector.setProcessor(
                new MultiProcessor.Builder<>(new GraphicFaceTrackerFactory())
                        .build());

        if (!detector.isOperational()) 
            // Note: The first time that an app using face API is installed on a device, GMS will
            // download a native library to the device in order to do detection.  Usually this
            // completes before the app is run for the first time.  But if that download has not yet
            // completed, then the above call will not detect any faces.
            //
            // isOperational() can be used to check if the required native library is currently
            // available.  The detector will automatically become operational once the library
            // download completes on device.
            Log.w(TAG, "Face detector dependencies are not yet available.");

            // 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));
            
        

        mCameraSource = new CameraSource.Builder(context, detector)
                .setFacing(CameraSource.CAMERA_FACING_FRONT)
                .setRequestedFps(fps)
                .build();
    

当它即将构建人脸检测器时,会发生异常(见下文)。接下来,代码检查检测器 isOperational() 是否返回 false。显示的异常是:

2019-05-22 16:09:48.128 27557-27557/com.xxx.xxx.xxx W/DynamiteModule: Local module descriptor class for com.google.android.gms.vision.dynamite.face not found.
2019-05-22 16:09:48.134 25402-25415/? W/ProviderHelper: Unknown dynamite feature vision.dynamite.face
2019-05-22 16:09:48.140 27557-27557/com.xxx.xxx.xxx I/DynamiteModule: Considering local module com.google.android.gms.vision.dynamite.face:0 and remote module com.google.android.gms.vision.dynamite.face:0
2019-05-22 16:09:48.140 27557-27557/com.xxx.xxx.xxx D/FaceNativeHandle: Cannot load feature, fall back to load whole module.
2019-05-22 16:09:48.142 27557-27557/com.xxx.xxx.xxx W/DynamiteModule: Local module descriptor class for com.google.android.gms.vision.dynamite not found.
2019-05-22 16:09:48.144 25402-25415/? W/ProviderHelper: Unknown dynamite feature vision.dynamite
2019-05-22 16:09:48.149 27557-27557/com.xxx.xxx.xxx I/DynamiteModule: Considering local module com.google.android.gms.vision.dynamite:0 and remote module com.google.android.gms.vision.dynamite:0
2019-05-22 16:09:48.154 27557-27557/com.xxx.xxx.xxx E/FaceNativeHandle: Error Loading module
    com.google.android.gms.dynamite.DynamiteModule$LoadingException: No acceptable module found. Local version is 0 and remote version is 0.
        at com.google.android.gms.dynamite.DynamiteModule.load(Unknown Source:8)
        at com.google.android.gms.internal.vision.zzm.zzq(Unknown Source:28)
        at com.google.android.gms.vision.face.internal.client.zzc.<init>(Unknown Source:3)
        at com.google.android.gms.vision.face.FaceDetector$Builder.build(Unknown Source:40)
        at com.xxx.xxx.xxx.activities.Activity1.createCameraSource(Activity1.java:128)
        at com.xxx.xxx.xxx.activities.Activity1.onCreate(Activity1.java:111)
        at android.app.Activity.performCreate(Activity.java:7023)
        at android.app.Activity.performCreate(Activity.java:7014)
        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1214)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2758)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2883)
        at android.app.ActivityThread.-wrap11(Unknown Source:0)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1613)
        at android.os.Handler.dispatchMessage(Handler.java:106)
        at android.os.Looper.loop(Looper.java:164)
        at android.app.ActivityThread.main(ActivityThread.java:6523)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:857)
2019-05-22 16:09:48.154 27557-27557/com.xxx.xxx.xxx W/FaceNativeHandle: Native handle not yet available. Reverting to no-op handle.

在手机上安装应用程序后,AndroidManifest.xml 中的一行应通知移动应用程序为特定设备下载适当的人脸检测库。但是,这似乎仅在设备重置为出厂设置和首次安装应用程序时才会发生。例如,如果我通过 Android Studio 重新安装应用程序,则应用程序无法找到特定模块。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.xxx.xxx.xxx"
    android:installLocation="auto">

    <uses-permission
        android:name="android.permission.INTERNET"
        android:required="true" />

    <uses-permission-sdk-23
        android:name="android.permission.WRITE_EXTERNAL_STORAGE"
        android:required="true" />
    <uses-permission-sdk-23
        android:name="android.permission.READ_EXTERNAL_STORAGE"
        android:required="true" />

    <uses-permission
        android:name="android.permission.CAMERA"
        android:required="true" />
    <uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION" />

    <uses-feature android:name="android.hardware.camera" />
    <uses-feature android:name="android.hardware.camera.front" />
    <uses-feature android:name="android.hardware.camera.autofocus" />

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:supportsRtl="true">
        <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="face" />

        <activity
            android:name=".activities.Activity1"
            android:screenOrientation="portrait" />
        <activity
            android:name=".activities.Activity2"
            android:screenOrientation="portrait" />
        <activity
            android:name=".activities.Activity3"
            android:screenOrientation="portrait" />
    </application>

</manifest>

我们正在使用 Google Play 服务 17.0.2

implementation 'com.google.android.gms:play-services-vision:17.0.2'

我们已经检查并尝试了以下方法:

清除 Google Play 服务/Google Play 商店/移动应用的数据和缓存可用空间。该设备有 8GB 内存,其中 3.82GB 是可用空间。 存储权限。该应用程序具有存储权限和android:installLocation="auto" 互联网连接。该设备具有有效的 WiFi 互联网连接和适当的互联网权限。

该库在任何情况下都可以在其他设备上完美运行。在上述设备上,它仅在恢复出厂设置后首次部署应用程序时工作。

【问题讨论】:

我在某些设备上遇到了条码库下载甚至无法启动的问题,并且清除 Google Play 服务数据的技巧也没有效果。我在这些设备上找到的唯一解决方法(实际上并不实用)是降级设备上的 Google Play 服务版本。 firebase github 上有一些关于此的问题(例如this one)。但到目前为止,我还没有听到任何关于潜在修复的消息。 非常感谢您@Michael 的回复。我希望有一种解决方法或解决方法。我们使用 17.0.2 和 11.6.0 版本的 Google Play 服务对其进行了测试,但问题仍然存在。 有什么消息吗?更新 ?我有同样的问题 【参考方案1】:

我使用的是华为 P30 pro,遇到了同样的问题。尝试了网上找到的所有方法后,发现问题是由于Google Play Services版本不是最新的。 Google Play Services version 20.18.17,应用找不到 Android Vision 模块,但更新到 version 20.36.15 后,它可以工作了!

【讨论】:

以上是关于未找到 Android 移动视觉 API 库的主要内容,如果未能解决你的问题,请参考以下文章

谷歌移动视觉库没有下载

Android(移动)视觉相机亮度非常低

谷歌移动视觉api相机源暗帧

适用于 Android 的计算机视觉和 AR 库?

Android - Things Raspberry Pi - Google 移动视觉支持

Android - Things Raspberry Pi - Google移动视觉支持