MacOs - 编译 c++ OpenCv returns 未找到架构符号 x86_64

MacOs - Compiling c++ OpenCv returns symbol(s) not found for architecture x86_64

我想在 MacO 上试用 this OpenCv code

我已按照 this tutorial 在 MacO 上安装 OpenCv。 (在我尝试使用自制软件安装之前)

我有以下CMakeLists.txt

cmake_minimum_required(VERSION 3.1)
# Enable C++11
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
SET(OpenCV_DIR <path>/installation/OpenCV-master/lib/cmake/opencv4)

# Find OpenCV, you may need to set OpenCV_DIR variable
# to the absolute path to the directory containing OpenCVConfig.cmake file
# via the command line or GUI
find_package(OpenCV REQUIRED)

# If the package has been found, several variables will
# be set, you can find the full list with descriptions
# in the OpenCVConfig.cmake file.
# Print some message showing some of them
message(STATUS "OpenCV library status:")
message(STATUS "    config: ${OpenCV_DIR}")
message(STATUS "    version: ${OpenCV_VERSION}")
message(STATUS "    libraries: ${OpenCV_LIBS}")
message(STATUS "    include path: ${OpenCV_INCLUDE_DIRS}")

# Declare the executable target built from your sources
#add_executable(opencv_example example.cpp)
project(intro_PCA)
add_executable(myapp introduction_to_pca.cpp)

# Link your application with OpenCV libraries
#target_link_libraries(opencv_example ${OpenCV_LIBS})

include_directories(
        <path>/installation/OpenCV-master/include/opencv4
    )

install(TARGETS myapp DESTINATION ../0-BRIQUE_PCA/briquepca/)

从文件夹 build 我使用以下命令编译代码:

$ cmake ..
$ cmake --build . --config Release

编译结束,出现以下错误:

ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [myapp] Error 1
make[1]: *** [CMakeFiles/myapp.dir/all] Error 2
make: *** [all] Error 2

我发现 here 应该添加以下内容:

-libopencv_core \
-libopencv_imgproc \
-libopencv_features2d \
-libopencv_highgui

但我不明白我必须在 CMakeLists.txt

中的什么地方添加这些行

有人有想法吗?

您可以使用命令 link 库 target_link_libraries(myapp ${OpenCV_LIBS}),它将 link myappfind_package(OpenCV REQUIRED) 定义的所有 OpenCV 库。