Я пытаюсь скомпилировать OpenCV на нативном в Android Studio. Я пытаюсь следовать: https://sriraghu.com/2017/03/11/opencv-in-android-an-introduction-part-1/
Мне удалось это сделать, выполнив следующие действия в Windows. Однако на Ubuntu его не работает. Ошибка:
Не удалось выполнить задачу app: app: externalNativeBuildDebug ’.
Команда сборки не удалась. Ошибка при выполнении процесса /home/user/Android/Sdk/cmake/3.6.4111459/bin/cmake с аргументами {–build
/home/user/AndroidStudioProjects/project_folders/app/.externalNativeBuild/cmake/debug/arm64-v8a
–Target native-lib}
ниндзя: ошибка: ‘../../../../jniLibs/src/main/jniLibs/arm64-v8a/libopencv_java3.so’,
нужен
«../../../../Build/intermediates/cmake/debug/obj/arm64-v8a/libnative-lib.so»,
отсутствует и нет известного правила, чтобы сделать это
Файл CMakeLists.txt:
cmake_minimum_required(VERSION 3.4.1)
set(pathToOpenCV /media/user/Stuff/Softwares/OpenCV-android-sdk/sdk/native)
include_directories(${pathToOpenCV}/jni/include)
add_library( # Sets the name of the library.
native-lib
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
src/main/cpp/native-lib.cpp )
# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.
add_library(lib_opencv SHARED IMPORTED)
set_target_properties(lib_opencv PROPERTIES IMPORTED_LOCATIONS /home/user/cmu/android-apps/OpenCV_app_June23/OpenCV_Android/app/src/main/jniLibs/arm64-v8a/libopencv_java3.so)
find_library( # Sets the name of the path variable.
log-lib
# Specifies the name of the NDK library that
# you want CMake to locate.
log )
# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.
target_link_libraries( # Specifies the target library.
native-lib
# Links the target library to the log library
# included in the NDK.
${log-lib} lib_opencv)
В native-lib.cpp я могу добавить #include без каких-либо сообщений об ошибках в Android Studio.
Мои предыдущие поиски показывают, что с путями что-то не так. Я проверил, что пути правильные, или есть другой способ поместить путь в Ubuntu?