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