已安装OpenCV,但是代码无法识别?

时间:2020-09-20 04:57:06

标签: java android-studio opencv

我尝试使用this教程安装OpenCV,但是它始终使我的代码出现错误(粘贴在下面)。我花了几个小时尝试查找此问题的解决方案,但没有发现任何问题。除了无法导入整个OpenCV文件夹的模块(我刚刚导入了SDK)之外,我与该视频中的人员几乎完全匹配该教程,但是我认为这不会引起如此大的问题。这个问题有解决办法吗?

private static String TAG = "MainActivity";

static
{
    //OpenCVLoader symbol cannot be resolved.
    if (OpenCVLoader.initDebug())
    {
        Log.d(TAG, "OpenCV is Configured or Connected Successfully.");
    }
    else
    {
        Log.d(TAG, "OpenCV not working or Loaded.");
    }
}

0 个答案:

没有答案