]> Creatis software - clitk.git/blobdiff - tools/clitkMergeSequenceGenericFilter.txx
Change tab to spaces
[clitk.git] / tools / clitkMergeSequenceGenericFilter.txx
index 9eac7011ae2c944eb52940533085d509d810d9fa..300c8216183854bbfb914c834a08431b90866abc 100644 (file)
@@ -72,14 +72,14 @@ namespace clitk
     //Define the input and output image type
     typedef itk::Image<PixelType, Dimension> InputImageType;
     typedef itk::Image<PixelType, Dimension+1> OutputImageType;
-    
+
     //Read the input image series
     typedef itk::ImageSeriesReader<OutputImageType> ImageReaderType;
     typename  ImageReaderType::Pointer reader= ImageReaderType::New();
     reader->SetFileNames(m_InputNames);
     reader->Update();
     typename OutputImageType::Pointer image =reader->GetOutput();
+
     //Set the spacing
     typename OutputImageType::SpacingType spacing=image->GetSpacing();
     spacing[Dimension]=m_Spacing;