]> Creatis software - clitk.git/blob - tools/clitkComposeVFGenericFilter.cxx
Debug vvMainWinsow.ui
[clitk.git] / tools / clitkComposeVFGenericFilter.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 CLITKCOMPOSEVFGENERICFILTER_CXX
19 #define CLITKCOMPOSEVFGENERICFILTER_CXX
20 #include "clitkComposeVFGenericFilter.h"
21
22
23 namespace clitk {
24
25   clitk::ComposeVFGenericFilter::ComposeVFGenericFilter()
26   {
27     m_Verbose=false;
28     m_Type = 0;
29   }
30
31
32   void clitk::ComposeVFGenericFilter::Update()
33   {
34     //Get the image Dimension and PixelType
35     int Dimension;
36     std::string PixelType;
37
38     clitk::ReadImageDimensionAndPixelType(m_InputName1, Dimension, PixelType);
39
40     if(Dimension==2) UpdateWithDim<2>(PixelType);
41     else if(Dimension==3) UpdateWithDim<3>(PixelType);
42     else 
43       {
44         std::cout<<"Error, Only for 2 and 3 Dimensions!!!"<<std::endl ;
45         return;
46       }
47
48   }
49 } //end namespace
50
51 #endif