Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/Nonunit/Review/GeometricPropertiesOfRegion/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@ cmake_minimum_required(VERSION 3.22.1)

project(GeometricPropertiesOfRegion)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKCommon
ITKIOImageBase
ITKImageFusion
ITKImageIO
ITKImageStatistics
ITKLabelMap
)
itk_generate_factory_registration()

if(ENABLE_QUICKVIEW)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ cmake_minimum_required(VERSION 3.22.1)

project(MultiphaseChanAndVeseSparseFieldLevelSetSegmentation)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKCommon
ITKIOImageBase
ITKImageIO
ITKReview
)
itk_generate_factory_registration()

add_executable(${PROJECT_NAME} Code.cxx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ cmake_minimum_required(VERSION 3.22.1)

project(SegmentBloodVesselsWithMultiScaleHessianBasedMeasure)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKIOImageBase
ITKImageFeature
ITKImageIO
ITKImageIntensity
)
itk_generate_factory_registration()

add_executable(${PROJECT_NAME} Code.cxx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@ cmake_minimum_required(VERSION 3.22.1)

project(SinglephaseChanAndVeseDenseFieldLevelSetSegmentation)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKCommon
ITKFastMarching
ITKIOImageBase
ITKImageIO
ITKReview
)
itk_generate_factory_registration()

add_executable(${PROJECT_NAME} Code.cxx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@ cmake_minimum_required(VERSION 3.22.1)

project(SinglephaseChanAndVeseSparseFieldLevelSetSegmentation)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKCommon
ITKFastMarching
ITKIOImageBase
ITKImageIO
ITKReview
)
itk_generate_factory_registration()

add_executable(${PROJECT_NAME} Code.cxx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ cmake_minimum_required(VERSION 3.22.1)

project(CustomUserMatrixToAlignImageWithDICOM)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKTestKernel
ITKVtkGlue
)

add_executable(${PROJECT_NAME} Code.cxx)
target_link_libraries(
Expand Down
10 changes: 9 additions & 1 deletion src/Remote/WikiExamples/DisplayITKImage/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ cmake_minimum_required(VERSION 3.22.1)

project(DisplayITKImage)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKCommon
ITKIOImageBase
ITKImageIO
ITKVtkGlue
)
itk_generate_factory_registration()

add_executable(${PROJECT_NAME} Code.cxx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ cmake_minimum_required(VERSION 3.22.1)

project(ConvertAnITKGrayScaleImageToCVMat)

find_package(ITK REQUIRED)
find_package(
ITK
REQUIRED
COMPONENTS
ITKCommon
ITKIOImageBase
ITKImageIO
ITKVideoBridgeOpenCV
)
itk_generate_factory_registration()

add_executable(${PROJECT_NAME} Code.cxx)
Expand Down
Loading