]> Creatis software - clitk.git/blobdiff - filters/clitkImageResampleGenericFilter.cxx
- new GF system
[clitk.git] / filters / clitkImageResampleGenericFilter.cxx
index 0187e493f9c76a2a83912a332a780e4d30994057..da510c6d1e50b712a3480fba1be7e92b668770c8 100644 (file)
 #include "clitkImageResampleGenericFilter.h"
 
 //--------------------------------------------------------------------
-clitk::ImageResampleGenericFilter::ImageResampleGenericFilter() {
+clitk::ImageResampleGenericFilter::ImageResampleGenericFilter():
+  ImageToImageGenericFilter<Self>("ImageResample") {
   mApplyGaussianFilterBefore = false;
   mDefaultPixelValue = 0.0;
   mInterpolatorName = "NN";
   mBSplineOrder=3;
+  InitializeImageTypeWithDim<2>();
+  InitializeImageTypeWithDim<3>();
+  InitializeImageTypeWithDim<4>();
 }
 //--------------------------------------------------------------------
 
+
+//--------------------------------------------------------------------
+template<unsigned int Dim>
+void clitk::ImageResampleGenericFilter::InitializeImageTypeWithDim() {      
+  ADD_IMAGE_TYPE(Dim, char);
+  ADD_IMAGE_TYPE(Dim, short);
+  ADD_IMAGE_TYPE(Dim, int);
+  ADD_IMAGE_TYPE(Dim, float);
+}
 //--------------------------------------------------------------------
-void clitk::ImageResampleGenericFilter::Update() {
 
-  // Determine dim, pixel type, number of components
-  this->GetInputImageDimensionAndPixelType(mDim,mPixelTypeName,mNbOfComponents);
 
-  // Switch by dimension
-  if (mDim == 2) { Update_WithDim<2>(); return; }
-  if (mDim == 3) { Update_WithDim<3>(); return; }
-  if (mDim == 4) { Update_WithDim<4>(); return; }
+//--------------------------------------------------------------------
+template<class InputImageType>
+void clitk::ImageResampleGenericFilter::UpdateWithInputImageType() {
+
+  // Some typedefs
+  typedef typename InputImageType::SizeType    SizeType;
+  typedef typename InputImageType::SpacingType SpacingType;
+  typedef typename InputImageType::PointType   PointType;
+  typedef typename InputImageType::PixelType   PixelType;
+  static unsigned int dim = InputImageType::ImageDimension;
+
+  // Reading input
+  typename InputImageType::Pointer input = this->GetInput<InputImageType>(0);
+
+  // Warning
+  if (!std::numeric_limits<PixelType>::is_signed) {
+    if ((mInterpolatorName == "bspline") || (mInterpolatorName == "blut")) {
+      std::cerr << "Warning : input pixel type is not signed, use bspline interpolation at your own risk ..." << std::endl;
+    }
+  }
+
+  // Check options
+  if (mOutputSize.size() != dim) {
+    std::cerr << "Please set size with " << dim << " dimensions." << std::endl;
+    return;
+  }
+  if (mOutputSpacing.size() != dim) {
+    std::cerr << "Please set spacing with " << dim << " dimensions." << std::endl;
+    return;
+  }
+  mOutputOrigin.resize(dim);
+
+  if (mApplyGaussianFilterBefore && mSigma.size() != dim) {
+    std::cerr << "Please set sigma with " << dim << " dimensions." << std::endl;
+    return;
+  }
+
+  // Create Image Filter
+  typedef itk::ResampleImageFilter<InputImageType,InputImageType> FilterType;
+  typename FilterType::Pointer filter = FilterType::New();
+    
+  // Instance of the transform object to be passed to the resample
+  // filter. By default, identity transform is applied
+  typedef itk::AffineTransform<double, InputImageType::ImageDimension> TransformType;
+  typename TransformType::Pointer transform =  TransformType::New();
+  filter->SetTransform(transform);
+
+  // Set filter's parameters
+  SizeType outputSize;
+  SpacingType outputSpacing;
+  PointType outputOrigin;
+  for(unsigned int i=0; i<InputImageType::ImageDimension; i++) {
+    outputSize[i] = mOutputSize[i];
+    outputSpacing[i] = mOutputSpacing[i];
+    outputOrigin[i] = input->GetOrigin()[i];
+  }
+
+  filter->SetSize(outputSize);
+  filter->SetOutputSpacing(outputSpacing);
+  filter->SetOutputOrigin(outputOrigin);
+  filter->SetDefaultPixelValue(static_cast<PixelType>(mDefaultPixelValue));//DS TODO//JV comme ça?
+
+  // Select interpolator
+  if (mInterpolatorName == "nn") {
+    typedef itk::NearestNeighborInterpolateImageFunction<InputImageType, double> InterpolatorType;     
+    typename InterpolatorType::Pointer interpolator = InterpolatorType::New();
+    filter->SetInterpolator(interpolator);
+  }
+  else { 
+    if (mInterpolatorName == "linear") {
+      typedef itk::LinearInterpolateImageFunction<InputImageType, double> InterpolatorType;     
+      typename InterpolatorType::Pointer interpolator =  InterpolatorType::New();
+      filter->SetInterpolator(interpolator);
+    }
+    else {
+      if (mInterpolatorName == "bspline") {
+       typedef itk::BSplineInterpolateImageFunction<InputImageType, double> InterpolatorType; 
+       typename InterpolatorType::Pointer interpolator = InterpolatorType::New();
+       interpolator->SetSplineOrder(mBSplineOrder);
+       filter->SetInterpolator(interpolator);
+      }
+      else {
+       if (mInterpolatorName == "blut") {
+         typedef itk::BSplineInterpolateImageFunctionWithLUT<InputImageType, double> InterpolatorType; 
+         typename InterpolatorType::Pointer interpolator = InterpolatorType::New();
+         interpolator->SetSplineOrder(mBSplineOrder);
+         interpolator->SetLUTSamplingFactor(mSamplingFactors[0]);
+         filter->SetInterpolator(interpolator);
+       }
+       else {
+         std::cerr << "Sorry, I do not know the interpolator '" << mInterpolatorName 
+                   << "'. Known interpolators are :  nn, linear, bspline, blut" << std::endl;
+         exit(0);
+       }
+      }
+    }
+  }
+
+  // Build initial Gaussian bluring (if needed)
+  typedef itk::RecursiveGaussianImageFilter<InputImageType, InputImageType> GaussianFilterType;
+  std::vector<typename GaussianFilterType::Pointer> gaussianFilters;
+  if (mApplyGaussianFilterBefore) {
+    for(unsigned int i=0; i<InputImageType::ImageDimension; i++) {
+      // Create filter
+      gaussianFilters.push_back(GaussianFilterType::New());
+      // Set options
+      gaussianFilters[i]->SetDirection(i);
+      gaussianFilters[i]->SetOrder(GaussianFilterType::ZeroOrder);
+      gaussianFilters[i]->SetNormalizeAcrossScale(false);
+      gaussianFilters[i]->SetSigma(mSigma[i]); // in millimeter !
+      // Set input
+      if (i==0) gaussianFilters[i]->SetInput(input);
+      else gaussianFilters[i]->SetInput(gaussianFilters[i-1]->GetOutput());
+    }
+    filter->SetInput(gaussianFilters[InputImageType::ImageDimension-1]->GetOutput());
+  }
+  else {
+    filter->SetInput(input);
+  }
+
+  // Go !
+  try { 
+    filter->Update();
+  }
+  catch( itk::ExceptionObject & err ) {
+    std::cerr << "Error while filtering " << mInputFilenames[0].c_str() 
+             << " " << err << std::endl;
+    exit(0);
+  }
+
+  // Get result
+   typename InputImageType::Pointer outputImage = filter->GetOutput();
+
+  // Write/save results
+  this->SetNextOutput<InputImageType>(outputImage);
 
-  std::cerr << "Error, dimension of input image is " << mDim << ", but I only work with 2,3,4." << std::endl;
-  exit(0);
 }
 //--------------------------------------------------------------------
 
+
 //--------------------------------------------------------------------
 void clitk::ImageResampleGenericFilter::SetOutputSize(const std::vector<int> & size) {
   mOutputSize.resize(size.size());