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 &quot;.h&quot; from ITK in my source code in this <br>
way,<br><br>#include &quot;RegionGrowing.h&quot;<br><br>#include &quot;itkConnectedThresholdImageFilter.h&quot;<br>#include &quot;itkImage.h&quot;<br>#include &quot;itkCastImageFilter.h&quot;<br>#include &quot;itkCurvatureFlowImageFilter.h&quot;<br>
#include &quot;itkImageFileReader.h&quot;<br>#include &quot;itkImageFileWriter.h&quot;<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: &#39;itkConnectedThresholdImageFilter.h&#39;: No such file or directory<br>
make: *** [.release-nt5-msvc.obj/RegionGrowing.obj] Error 2<br><br>I know that I have to include &#39;itkConnectedThresholdImageFilter.h&#39; in my project directory but I need to <br>include a lot of them... Is there any way to reference &quot;.h&quot;? Must I include &quot;CMakelists.txt&quot; in<br>
my project ?<br><br>note: I have built my project with make.exe not Cmake.exe.<br><br>Thankss!<br>