]> Creatis software - clitk.git/blobdiff - itk/clitkExtractSliceFilter.txx
Debug clitkNormalizeImage
[clitk.git] / itk / clitkExtractSliceFilter.txx
index e9c4aebb4ef33ed7273a48863b19ad109766ef42..af008ec3e9379e6d8f60bfd8cc51123285e26a64 100644 (file)
@@ -3,7 +3,7 @@
 
   Authors belong to: 
   - University of LYON              http://www.universite-lyon.fr/
-  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - Léon Bérard cancer center       http://www.centreleonberard.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
 
   This software is distributed WITHOUT ANY WARRANTY; without even
@@ -14,7 +14,7 @@
 
   - BSD        See included LICENSE.txt file
   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-  ======================================================================-====*/
+  ===========================================================================**/
 
 // clitk
 #include "clitkCommon.h"
@@ -105,7 +105,7 @@ GenerateData() {
   m_size[GetDirection()] = 0;
   m_region.SetSize(m_size);
   int start = m_index[GetDirection()];
-  this->SetNumberOfOutputs(m_NumberOfSlices);
+  this->SetNumberOfIndexedInputs(m_NumberOfSlices);
 
   //--------------------------------------------------------------------
   // loop ExtractImageFilter with region updated, push_back
@@ -118,8 +118,9 @@ GenerateData() {
     m_index[GetDirection()] = start + i;
     m_region.SetIndex(m_index);
     extract->SetExtractionRegion(m_region);
+    extract->SetDirectionCollapseToSubmatrix();
     extract->Update();
-    SetNthOutput(i, extract->GetOutput());
+    this->SetNthOutput(i, extract->GetOutput());
   }
   return;
 }