opencv在cmake时加上aruco
时间: 2023-07-07 07:27:53 浏览: 159
OpenCV 编译流程.rar_cmake_opencv_编译
要在 CMake 中加入 ArUco,需要进行以下步骤:
1. 确保已经安装了 ArUco 库和 OpenCV 库。
2. 打开 CMakeLists.txt 文件并添加以下代码:
```
find_package(aruco REQUIRED)
include_directories(${aruco_INCLUDE_DIRS})
```
3. 请确保在项目中包含 ArUco 头文件,例如:
```
#include <aruco/aruco.h>
```
4. 请确保在链接过程中包含 ArUco 库,例如:
```
target_link_libraries(my_project ${aruco_LIBS})
```
上述步骤应该可以帮助你在 CMake 中加入 ArUco。
阅读全文