1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkGradientAnisotropicDiffusionImageFilterTest2.cxx,v $
Language: C++
Date: $Date: 2007-08-10 14:34:01 $
Version: $Revision: 1.8 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include <fstream>
#include "itkCastImageFilter.h"
#include "itkGradientAnisotropicDiffusionImageFilter.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
int itkGradientAnisotropicDiffusionImageFilterTest2(int ac, char* av[] )
{
if(ac < 3)
{
std::cerr << "Usage: " << av[0] << " InputImage OutputImage\n";
return -1;
}
typedef float PixelType;
typedef itk::Image<PixelType, 2> myFloatImage;
itk::ImageFileReader<myFloatImage>::Pointer input
= itk::ImageFileReader<myFloatImage>::New();
input->SetFileName(av[1]);
// Create a filter
itk::GradientAnisotropicDiffusionImageFilter<myFloatImage, myFloatImage>
::Pointer filter
= itk::GradientAnisotropicDiffusionImageFilter<myFloatImage, myFloatImage>
::New();
filter->SetNumberOfIterations(10);
filter->SetConductanceParameter(1.0f);
filter->SetTimeStep(0.125f);
filter->SetInput(input->GetOutput());
typedef itk::Image<unsigned char, 2> myUCharImage;
itk::CastImageFilter<myFloatImage, myUCharImage>::Pointer caster
= itk::CastImageFilter<myFloatImage, myUCharImage>::New();
caster->SetInput(filter->GetOutput());
try
{
caster->Update();
}
catch (itk::ExceptionObject& e)
{
std::cerr << "Exception detected: " << e.GetDescription();
return -1;
}
// Generate test image
itk::ImageFileWriter<myUCharImage>::Pointer writer;
writer = itk::ImageFileWriter<myUCharImage>::New();
writer->SetInput( caster->GetOutput() );
std::cout << "Writing " << av[2] << std::endl;
writer->SetFileName( av[2] );
writer->Update();
return EXIT_SUCCESS;
}
|