gpt4 book ai didi

c++ - 配置itkvtkglue时CMake报错

转载 作者:行者123 更新时间:2023-11-30 04:18:26 26 4
gpt4 key购买 nike

我的问题类似于Emre's question .我正在尝试构建 itkImageToVTKImageFilter example from the wiki .我希望将它用于我计划应用于图像的高斯低通滤波器。下载 itkvtkglue 后,将其解压到一个文件夹,然后在 Cmake 中按配置,我收到以下错误消息:

Check for working C compiler using: Visual Studio 9 2008
Check for working C compiler using: Visual Studio 9 2008 -- works
Detecting C compiler ABI info
Detecting C compiler ABI info - done
Check for working CXX compiler using: Visual Studio 9 2008
Check for working CXX compiler using: Visual Studio 9 2008 -- works
Detecting CXX compiler ABI info
Detecting CXX compiler ABI info - done
CMake Error at F:/ITK/ItkVtkGlue/bin/UseItkVtkGlue.cmake:10 (include):
include could not find load file:

G:/VTK/UseVTK.cmake
Call Stack (most recent call first):
CMakeLists.txt:13 (include)


Configuring incomplete, errors occurred!

我不确定是什么导致了错误,但我怀疑它与我的 Windows 系统路径有关。但是,它似乎也指向正确的文件夹(PATH 转到 F: 驱动器)。该错误表明 Cmake 出于某种未知原因正在 G: 驱动器中查找。

这是 itkImageToVTKImageFilter 的 CMakeLists.txt:

cmake_minimum_required(VERSION 2.8)

project(DiscreteGaussianImageFilter)

find_package(ITK REQUIRED)
include(${ITK_USE_FILE})
if (ITKVtkGlue_LOADED)
find_package(VTK REQUIRED)
include(${VTK_USE_FILE})
else()
find_package(ItkVtkGlue REQUIRED)
include(${ItkVtkGlue_USE_FILE})
set(Glue ItkVtkGlue)
endif()

add_executable(DiscreteGaussianImageFilter MACOSX_BUNDLE DiscreteGaussianImageFilter.cxx)
target_link_libraries(DiscreteGaussianImageFilter
${Glue} ${VTK_LIBRARIES} ${ITK_LIBRARIES})

我读到这是一个非常普遍的问题,但我不确定如何纠正它。任何帮助将不胜感激!我对 Stackoverflow 还是很陌生,所以如果我需要提供更多信息,请告诉我。

最佳答案

现在工作。我需要使用 ITK_BUILD_ALL_MODULES 重建 ITK,并检查我之前没有做过的 Module_ITKVtkGlue。

关于c++ - 配置itkvtkglue时CMake报错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16429640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com