<font style="font-family: arial,helvetica,sans-serif;" size="2">Hi all,<br><br>I am trying to write my own example to convert a collection of scalar images into a vector image. <br>I found an example on wiki, it uses itkComposeImageFilter.h, however, when I try to use cmake to compile my program, it is said that itkComposeImageFilter.h could not be found.<br>
My CMakeList as follows<br><br>CMAKE_MINIMUM_REQUIRED(VERSION 2.4)<br>IF(COMMAND CMAKE_POLICY)<br>  CMAKE_POLICY(SET CMP0003 NEW)<br>ENDIF(COMMAND CMAKE_POLICY)<br><br>PROJECT( test )<br><br>FIND_PACKAGE ( ITK REQUIRED )<br>
IF ( ITK_FOUND )<br>        INCLUDE( ${ITK_USE_FILE} )<br>ENDIF ( ITK_FOUND )<br><br>ADD_EXECUTABLE( test test.cxx )<br>TARGET_LINK_LIBRARIES( test ${ITK_LIBRARIES} )</font><br><br>Thx a lot<br><br>Mengqiu<br>