[Insight-users] Re : (no subject)
Luis Ibanez
luis.ibanez at kitware.com
Wed Jun 17 13:54:32 EDT 2009
Hi Syrine,
The error means that your configuration is not including
the paths for finding all ITK header files.
This is most likely a problem with your CMakeLists.txt file,
or with an incorrectly build ITK.
....
Again,
Your best course of action would be to follow the
step-by-step instructions of the tutorial.
Regards,
Luis
--------------------
Syrine Sahmim wrote:
>
> the error is
> DicomImageReadWrite.cxx
> .\DicomImageReadWrite.cxx(8) : fatal error C1083: Impossible d'ouvrir le
> fichier include : 'itkImageFileReader.h' : No such file or directory"
> what does it mean?
> thanks
> ------------------------------------------------------------------------
> *De :* John Drescher <drescherjm at gmail.com>
> *À :* Syrine Sahmim <syrine.sahmim at yahoo.fr>; Insight Users
> <insight-users at itk.org>
> *Envoyé le :* Mercredi, 17 Juin 2009, 14h17mn 31s
> *Objet :* Re: [Insight-users] (no subject)
>
> this program also gives errors in compilation phase
> i joined the cmakelists file
> Can help me to find error
> thanks
>
>
> void main()
> {
> // Definition of stuctures
> typedef unsigned char PixelType;
> const unsigned int Dimension = 2;
> typedef itk::Image< PixelType, Dimension > ImageType;
>
> typedef itk::ImageFileReader< ImageType > ReaderType;
> typedef itk::ImageFileWriter< ImageType > WriterType;
>
> // Create a object of reader and read the image
> ReaderType::Pointer reader = ReaderType::New();
> WriterType::Pointer writer = WriterType::New();
>
> const char pInputfileName[] = "003F87DA.jpg";
> const char pOutputfileName[] = "003F87DA.jpg";
>
> reader->SetFileName( pInputfileName );
> reader->Update();
>
> ImageType::Pointer image = reader->GetOutput();
>
>
> writer->SetFileName( pOutputfileName );
>
> writer->SetInput( reader->GetOutput() );
>
> try
> {
> writer->Update();
> }
>
> catch( itk::ExceptionObject & err )
> {
> std::cout << "ExceptionObject caught !" << std::endl;
> std::cout << err << std::endl;
> exit(-1);
> }
>
>
> Please post the compile error.
>
> John
>
>
> ------------------------------------------------------------------------
>
> _____________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ
>
> Follow this link to subscribe/unsubscribe:
> http://www.itk.org/mailman/listinfo/insight-users
More information about the Insight-users
mailing list