X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkExtractSliceFilter.txx;h=af008ec3e9379e6d8f60bfd8cc51123285e26a64;hb=8786715f17744e1a8d97bdf4fec517d443875bb0;hp=e9c4aebb4ef33ed7273a48863b19ad109766ef42;hpb=14f79c6048942f31c8ec28831e8422f99debf54e;p=clitk.git diff --git a/itk/clitkExtractSliceFilter.txx b/itk/clitkExtractSliceFilter.txx index e9c4aeb..af008ec 100644 --- a/itk/clitkExtractSliceFilter.txx +++ b/itk/clitkExtractSliceFilter.txx @@ -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; }