[Insight-users] (no subject)

John Drescher drescherjm at gmail.com
Wed Jun 17 09:17:31 EDT 2009


>
> 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/78344262/attachment.htm>


More information about the Insight-users mailing list