Windows 安装itk

来源:互联网 发布:电脑连不上网络错误711 编辑:程序博客网 时间:2024/06/05 05:01

安装参考:

http://blog.csdn.net/wenqian1991/article/details/21281119

编译helloWord的时候出错。

CMake Error at CMakeLists.txt:4 (find_package):  By not providing "FindITK.cmake" in CMAKE_MODULE_PATH this project has  asked CMake to find a package configuration file provided by "ITK", but  CMake did not find one.  Could not find a package configuration file provided by "ITK" with any of  the following names:    ITKConfig.cmake    itk-config.cmake  Add the installation prefix of "ITK" to CMAKE_PREFIX_PATH or set "ITK_DIR"  to a directory containing one of the above files.  If "ITK" provides a  separate development package or SDK, be sure it has been installed.-- Configuring incomplete, errors occurred!
原因很简单,就是将cmake_install_prefix 的路径设置为和编译之前itk的时候的路径相同。就是该路径下要包含问题中所述的两个文件中的任一个.cmake

    ITKConfig.cmake    itk-config.cmake

改路径:


原创粉丝点击