]> Creatis software - clitk.git/blob - tools/clitkRelativePositionAnalyzerGenericFilter.h
itk4 migration
[clitk.git] / tools / clitkRelativePositionAnalyzerGenericFilter.h
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
19 #ifndef CLITKRELATIVEPOSITIONANALYZERGENERICFILTER_H
20 #define CLITKRELATIVEPOSITIONANALYZERGENERICFILTER_H
21
22 // clitk 
23 #include "clitkIO.h"
24 #include "clitkImageToImageGenericFilter.h"
25 #include "clitkRelativePositionAnalyzerFilter.h"
26 #include "clitkSliceBySliceRelativePositionFilter.h"
27
28 //--------------------------------------------------------------------
29 namespace clitk 
30 {
31
32   template<class ArgsInfoType>
33   class ITK_EXPORT RelativePositionAnalyzerGenericFilter:
34     public ImageToImageGenericFilter<RelativePositionAnalyzerGenericFilter<ArgsInfoType> >
35   {
36   public:
37     //--------------------------------------------------------------------
38     RelativePositionAnalyzerGenericFilter();
39     ~RelativePositionAnalyzerGenericFilter() {}
40   
41     //--------------------------------------------------------------------
42     typedef ImageToImageGenericFilter<RelativePositionAnalyzerGenericFilter<ArgsInfoType> > Superclass;
43     typedef RelativePositionAnalyzerGenericFilter Self;
44     typedef itk::SmartPointer<Self>       Pointer;
45     typedef itk::SmartPointer<const Self> ConstPointer;
46    
47     //--------------------------------------------------------------------
48     itkNewMacro(Self);  
49     itkTypeMacro(RelativePositionAnalyzerGenericFilter, LightObject);
50
51     //--------------------------------------------------------------------
52     void SetArgsInfo(const ArgsInfoType & a);
53     template<class FilterType> 
54       void SetOptionsFromArgsInfoToFilter(FilterType * f) ;
55
56     //--------------------------------------------------------------------
57     // Main function called each time the filter is updated
58     template<class ImageType>  
59     void UpdateWithInputImageType();
60
61   protected:
62     template<unsigned int Dim> void InitializeImageType();
63       ArgsInfoType mArgsInfo;
64
65   private:
66     RelativePositionAnalyzerGenericFilter(const Self&); //purposely not implemented
67     void operator=(const Self&); //purposely not implemented
68     
69   };// end class
70   //--------------------------------------------------------------------
71 } // end namespace clitk
72
73 #ifndef ITK_MANUAL_INSTANTIATION
74 #include "clitkRelativePositionAnalyzerGenericFilter.txx"
75 #endif
76
77 #endif // #define CLITKRELATIVEPOSITIONANALYZERGENERICFILTER_H