[Insight-users] Re : (no subject)
Syrine Sahmim
syrine.sahmim at yahoo.fr
Wed Jun 17 10:13:30 EDT 2009
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.itk.org/pipermail/insight-users/attachments/20090617/93c1030d/attachment-0001.htm>
More information about the Insight-users
mailing list