0

我想安装 ridgerun sdk 在 Leopardboard DM365 上构建和运行应用程序。我是新手,我已按照 ridgerun sdk 入门指南执行步骤 - https://www.ridgerun.com/developer/wiki/index.php/DM365_Leopard_SDK_2011Q2_Getting_Started_Guide

我已经按照指南安装了 sdk。然后按照指南我配置 sdk 来构建它 - “make configure”。在配置中,我选择了对 opencv-2.1.0 的支持。然后,当我“制作”sdk 时,出现以下错误:

Checking dependencies for OpenCV-2.1.0
Compiling and installing OpenCV-2.1.0...
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named numpy.distutils
CMake Warning: The variable, 'BUILD_DOXYGEN_DOCS', specified manually, was not used during the generation.
CMake Warning: The variable, 'BUILD_PYTHON_SUPPORT', specified manually, was not used during the generation.
CMake Warning: The variable, 'CMAKE_TOOLCHAIN_FILE', specified manually, was not used during the generation.
make[3]: *** [cmake_built] Error 2
Error building OpenCV-2.1.0
make[2]: *** [dependency_build] Error 1
make[1]: *** [apps_build] Error 1
make: *** [fs_build] Error 2

我被困在这一点上。我搜索了很多,但找不到任何东西。请指导我必须做什么。谢谢,马兹

4

1 回答 1

2

您必须禁用 OpenCV 并重新编译。

转到 RRSDK 的根目录并运行:

make config

转到“文件系统配置--->选择目标的文件系统软件

取消选择“OpenCV”。

退出并运行:

make
make install

众所周知,OpenCV 在此版本的 RRSDK 中存在配置错误。

于 2012-10-28T08:44:02.667 回答