致命错误:使用 OpenCV 2.4.11 找不到"ext/atomicity.h"文件

Fatal error: 'ext/atomicity.h' file not found using OpenCV 2.4.11

本文关键字:ext atomicity 文件 找不到 使用 OpenCV 致命错误      更新时间:2023-10-16

我发现问题可能出在标准库上......但是我不知道如何使用Cmake更改它。 我尝试了很多选择,但没有工作。

Mybuild.gradle

apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "com.test"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags "-frtti -fexceptions"
abiFilters "armeabi-v7a"
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "src/main/cpp/CMakeLists.txt"
}
}
sourceSets { main { jni.srcDirs = ['src/main/cpp', 'src/main/jniLib/'] } }
}
dependencies {
implementation project(':openCVLibrary2411')
}

我的CMAkeList.txt看起来像这样:

cmake_minimum_required(VERSION 3.4.1)
#set(ANDROID_STL "c++_shared")
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# OpenCV IMPORT
include_directories(C:/OpenCV-android-sdk_2_4_11/sdk/native/jni/include)
add_library( lib-opencv SHARED IMPORTED )
set_target_properties(lib-opencv PROPERTIES IMPORTED_LOCATION  ${CMAKE_SOURCE_DIR}/../jniLibs/${ANDROID_ABI}/libopencv_java.so)
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).
native-lib.cpp
main.cpp
)
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 )
target_link_libraries( # Specifies the target library.
native-lib
# Links the target library to the log library
# included in the NDK.
${log-lib} )

我检查了这个链接,但用于 ndk 构建...但我正在使用cmake(Android Studio 3+(

你对的问题是因为 stl [libc++]

https://stackoverflow.com/a/13037661/5052296

要更改build.gradle中的 STL,请执行以下操作:

externalNativeBuild {
cmake {
arguments '-DANDROID_STL=gnustl_shared'
}
}

https://developer.android.com/ndk/guides/cmake


另一种选择:

编辑"include/opencv2/core/operations.hpp"文件。