如何安装ConvNet库?

时间:2015-08-20 00:03:21

标签: c++ linux cmake

我正在尝试安装ConvNet库,它通过卷积神经网络实现数据传播,但是我遇到了这个错误。如何修复?

CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
LIBCV
    linked by target "testimg" in directory /home/damian/trunk
    linked by target "testmnist" in directory /home/damian/trunk
LIBHIGHGUI
    linked by target "testimg" in directory /home/damian/trunk
    linked by target "testmnist" in directory /home/damian/trunk

1 个答案:

答案 0 :(得分:0)

CMake具有在您的系统上查找库的逻辑,如果您实际上缺少这些库,则NOTFOUND是该逻辑的预期结果。所以,显然你只需安装OpenCV,包括OpenCV-HighGUI。