我在Android应用中使用了两个库:
Apparently,第二个仅具有 libuvcNative.so 的 armeabi 版本。结果,我做了this。
另一方面,TensorFlow没有为该体系结构提供预构建的二进制文件。尝试使用TensorFlow时,这给了我以下错误:
java.lang.RuntimeException: Native TF methods not found; check that the correct native libraries are present in the APK.
要纠正此问题,根据this的帖子,我必须自己为 armeabi 版本构建TensorFlow。由于以前没有做过,所以按照各种说明遇到了很多问题。
所以我的问题是:这是唯一的方法吗?由于我将不得不在构建过程中花费大量时间,因此我想确保没有其他解决方案。
谢谢!