0

我已经编译了ANN 库,需要在 C++ 文件中使用它来进行分段评估

我已经设置了使用 ITK 和 ANN 库的 CMakeList.txt,如下所示:

PROJECT(EvaluateSegmentationResult)

cmake_minimum_required(VERSION 3.14)

set(ANN_LIB /home/user/tools/ann_1.1.2/lib/)
set(ANN_PATH /home/user/tools/ann_1.1.2/include/)

#FIND_PACKAGE(ITK)
find_package(ITK COMPONENTS
        ITKBinaryMathematicalMorphology
        ITKCommon
        ITKIOImageBase
        ITKImageFunction
        ITKImageGrid
        ITKImageIntensity
        ITKMathematicalMorphology
        ITKThresholding
        ITKImageIO
        )
IF(ITK_FOUND)
    INCLUDE(${ITK_USE_FILE})
ELSE(ITK_FOUND)
    MESSAGE(FATAL_ERROR
    "ITK not found. Please set ITK_DIR.")
ENDIF(ITK_FOUND)

FIND_PATH(ANN_PATH NAMES ANN)
FIND_LIBRARY(ANN_LIB NAMES ann PATHS ${ANN_PATH})

INCLUDE_DIRECTORIES(${ANN_PATH})

ADD_EXECUTABLE( EvaluateSegmentationResult EvaluateSegmentationResult.cpp)
#TARGET_LINK_LIBRARIES( EvaluateSegmentationResult ITKIO ITKBasicFilters ITKCommon ${ITK_LIBRARIES} ${ANN_LIB})
TARGET_LINK_LIBRARIES( EvaluateSegmentationResult ${ITK_LIBRARIES} ${ANN_LIB})

但是,一旦我编译 C++ 文件,它就会引发错误:

/home/user/tools/EvaluationSourceCode/EvaluateSegmentationResult.cpp:86: undefined reference to `annAllocPts(int, int)'
/home/user/tools/EvaluationSourceCode/EvaluateSegmentationResult.cpp:95: undefined reference to `ANNkd_tree::ANNkd_tree(double**, int, int, int, ANNsplitRule)'
/home/user/tools/EvaluationSourceCode/EvaluateSegmentationResult.cpp:135: undefined reference to `annAllocPts(int, int)'
/home/user/tools/EvaluationSourceCode/EvaluateSegmentationResult.cpp:144: undefined reference to `ANNkd_tree::ANNkd_tree(double**, int, int, int, ANNsplitRule)'
/home/user/tools/EvaluationSourceCode/EvaluateSegmentationResult.cpp:175: undefined reference to `annDeallocPts(double**&)'
/home/user/tools/EvaluationSourceCode/EvaluateSegmentationResult.cpp:176: undefined reference to `annDeallocPts(double**&)'
collect2: error: ld returned 1 exit status
CMakeFiles/EvaluateSegmentationResult.dir/build.make:128: recipe for target 'EvaluateSegmentationResult' failed
make[3]: *** [EvaluateSegmentationResult] Error 1
CMakeFiles/Makefile2:72: recipe for target 'CMakeFiles/EvaluateSegmentationResult.dir/all' failed
make[2]: *** [CMakeFiles/EvaluateSegmentationResult.dir/all] Error 2
CMakeFiles/Makefile2:84: recipe for target 'CMakeFiles/EvaluateSegmentationResult.dir/rule' failed
make[1]: *** [CMakeFiles/EvaluateSegmentationResult.dir/rule] Error 2
Makefile:118: recipe for target 'EvaluateSegmentationResult' failed
make: *** [EvaluateSegmentationResult] Error 2

似乎问题与链接库有关。我应该添加任何特定的行或模块CMakeList.txt吗?

4

2 回答 2

1

这些方法是在 ANN.lib 本身中定义的,因此您不会错过添加任何库。在 find_library 调用中作为 PATH 参数传递的 ${ANN_PATH} 变量指向标头包含文件夹。您应该让它指向包含该库的文件夹,并在继续调用 target_link_libraries 之前进行 if-check 以查看是否找到它。

于 2019-12-10T16:33:14.880 回答
1

-lANN -LlibANN我可以通过添加到target_link_libraries()调用来解决这个问题:

TARGET_LINK_LIBRARIES( EvaluateSegmentationResult ${ITK_LIBRARIES} -lANN -LlibANN)
于 2019-12-11T07:56:38.663 回答