在Android Studio中使用OpenCV Android库时出错

时间:2015-02-24 00:21:12

标签: android opencv

我已经跟着this堆栈溢出回答尝试让OpenCV android在Android Studio中运行。我遵循了以下警告的指示:

  • opencv build.gradle中的构建工具版本是19.1.0而不是19.0.1
  • 我的项目结构不是看起来像是在gradle sync之后提供的图片,而是看起来像这样: enter image description here
  • 当我打开模块对话框时,opencv显示为模型,以及app

项目构建并自动完成。但是,当调用需要OpenCV的代码时,我收到以下错误:

    java.lang.UnsatisfiedLinkError: Native method not found: org.opencv.core.Mat.n_Mat:()

我不知道我做错了什么。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

您必须使用LoadLibrary显式加载库:

http://developer.android.com/reference/java/lang/System.html