Hi,<br>I´m Elena. I´m starting with ITK libraries and i have this problem:<br>I have created a project in VS2008 and I want to use ITK functions,<br>so after building succesfully the ITK libraries (with Cmake), I´m<br>trying to reference the ".h" from ITK in my source code in this <br>
way,<br><br>#include "RegionGrowing.h"<br><br>#include "itkConnectedThresholdImageFilter.h"<br>#include "itkImage.h"<br>#include "itkCastImageFilter.h"<br>#include "itkCurvatureFlowImageFilter.h"<br>
#include "itkImageFileReader.h"<br>#include "itkImageFileWriter.h"<br><br><br> but appear this error after building my project:<br><br>cl -c RegionGrowing.cc (nt-win32)<br>RegionGrowing.cc<br>RegionGrowing.cc(16) : fatal error C1083: Cannot open include file: 'itkConnectedThresholdImageFilter.h': No such file or directory<br>
make: *** [.release-nt5-msvc.obj/RegionGrowing.obj] Error 2<br><br>I know that I have to include 'itkConnectedThresholdImageFilter.h' in my project directory but I need to <br>include a lot of them... Is there any way to reference ".h"? Must I include "CMakelists.txt" in<br>
my project ?<br><br>note: I have built my project with make.exe not Cmake.exe.<br><br>Thankss!<br>