1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
set(DOCUMENTATION "This module contains classes that compute image features. In
particular you will find here: Canny edge detection, Sobel, ZeroCrossings,
Hough transform for lines and circles, Hessian filters, Vesselness, and
Fractional anisotropy for tensor images.")
itk_module(ITKImageFeature
COMPILE_DEPENDS
ITKImageGradient
ITKImageSources
COMPILE_DEPENDS
ITKMesh
ITKImageStatistics
ITKSmoothing
TEST_DEPENDS
ITKTestKernel
ITKThresholding
DESCRIPTION
"${DOCUMENTATION}"
)
# Extra test dependency on ITKThresholding is introduced by itkHoughTransform2DCirclesImageTest.
|