]> Creatis software - clitk.git/blob - tools/clitkMergeSequenceGenericFilter.cxx
Change tab to spaces
[clitk.git] / tools / clitkMergeSequenceGenericFilter.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #ifndef CLITKMERGESEQUENCEGENERICFILTER_CXX
19 #define CLITKMERGESEQUENCEGENERICFILTER_CXX
20 #include "clitkMergeSequenceGenericFilter.h"
21
22
23 namespace clitk {
24
25   clitk::MergeSequenceGenericFilter::MergeSequenceGenericFilter()
26   {
27     m_Verbose=false;
28     m_Spacing=1;
29   }
30
31
32   void clitk::MergeSequenceGenericFilter::Update()
33   {
34     //Get the image Dimension and PixelType
35     int Dimension, Components;
36     std::string PixelType;
37
38     clitk::ReadImageDimensionAndPixelType(m_InputNames[0], Dimension, PixelType, Components);
39
40     if(Dimension==2) UpdateWithDim<2>(PixelType, Components);
41     else if(Dimension==3) UpdateWithDim<3>(PixelType, Components);
42     else {
43       std::cout<<"Error, Only for 2 and 3 Dimensions!!!"<<std::endl ;
44       return;
45     }
46   }
47 } //end namespace
48
49 #endif