]> Creatis software - clitk.git/blob - segmentation/clitkMorphoMathGenericFilter.cxx
option to auto-detect motion mask's initial ellipse
[clitk.git] / segmentation / clitkMorphoMathGenericFilter.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 clitkMorphoMathGenericFilter_cxx
19 #define clitkMorphoMathGenericFilter_cxx
20
21 /**
22  * @file   clitkMorphoMathGenericFilter.cxx
23  * @author Jef Vandemeulebroucke <jef@creatis.insa-lyon.fr>
24  * @date   May 5  13:47:57 2009
25  * 
26  * @brief  
27  * 
28  * 
29  */
30
31 #include "clitkMorphoMathGenericFilter.h"
32
33 namespace clitk
34 {
35
36   //====================================================================
37   // Constructor
38   MorphoMathGenericFilter::MorphoMathGenericFilter()
39   {
40     m_Verbose=false;
41     m_InputFileName="";
42   }
43
44   //====================================================================
45   // Update
46   void MorphoMathGenericFilter::Update()
47   {
48
49     //Read the PixelType and dimension of the input image
50     int Dimension;
51     std::string PixelType;
52     ReadImageDimensionAndPixelType(m_InputFileName, Dimension, PixelType);
53
54     if(Dimension==2) UpdateWithDim<2>(PixelType);
55     else if(Dimension==3) UpdateWithDim<3>(PixelType);
56     else if (Dimension==4)UpdateWithDim<4>(PixelType); 
57     else 
58       {
59         std::cout<<"Error, Only for 2, 3 or 4  Dimensions!!!"<<std::endl ;
60         return;
61       }
62   }
63
64
65   //====================================================================
66
67 } //end namespace
68
69 #endif  //#define clitkMorphoMathGenericFilter_cxx