]> Creatis software - clitk.git/blob - tools/clitkComposeVFGenericFilter.cxx
526a2ec2071925da75aee5dae275c199b914de1e
[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://oncora1.lyon.fnclcc.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   }
29
30
31   void clitk::ComposeVFGenericFilter::Update()
32   {
33     //Get the image Dimension and PixelType
34     int Dimension;
35     std::string PixelType;
36
37     clitk::ReadImageDimensionAndPixelType(m_InputName1, Dimension, PixelType);
38
39     if(Dimension==2) UpdateWithDim<2>(PixelType);
40     else if(Dimension==3) UpdateWithDim<3>(PixelType);
41     else 
42       {
43         std::cout<<"Error, Only for 2 and 3 Dimensions!!!"<<std::endl ;
44         return;
45       }
46
47   }
48 } //end namespace
49
50 #endif