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