]> Creatis software - clitk.git/blob - common/clitkImage2DicomRTStructFilter.h
motion masks with and without bands
[clitk.git] / common / clitkImage2DicomRTStructFilter.h
1 /*=========================================================================
2   Program:         vv http://www.creatis.insa-lyon.fr/rio/vv
3   Main authors :   XX XX XX
4
5   Authors belongs to: 
6   - University of LYON           http://www.universite-lyon.fr/
7   - Léon Bérard cancer center    http://www.centreleonberard.fr
8   - CREATIS CNRS laboratory      http://www.creatis.insa-lyon.fr
9
10   This software is distributed WITHOUT ANY WARRANTY; without even
11   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12   PURPOSE.  See the copyright notices for more information.
13
14   It is distributed under dual licence
15   - BSD       http://www.opensource.org/licenses/bsd-license.php
16   - CeCILL-B  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17
18   =========================================================================*/
19
20 #ifndef CLITKIMAGE2DICOMRTSTRUCTFILTER_H
21 #define CLITKIMAGE2DICOMRTSTRUCTFILTER_H
22
23 // clitk
24 #include "clitkDicomRT_ROI.h"
25 #include "clitkImageCommon.h"
26 #include "clitkFilterBase.h"
27 #include "clitkDicomRT_StructureSet.h"
28
29 namespace clitk {
30
31   //--------------------------------------------------------------------
32   template<class PixelType>
33   class Image2DicomRTStructFilter: public clitk::FilterBase {
34     
35   public:
36     Image2DicomRTStructFilter();
37     ~Image2DicomRTStructFilter();
38
39     typedef itk::Image<PixelType, 3> ImageType;
40     typedef typename ImageType::Pointer ImagePointer;
41     typedef typename clitk::DicomRT_StructureSet::Pointer DicomRTStructPointer;
42
43     // Set inputs
44     itkSetMacro(Input, ImagePointer);
45     itkGetConstMacro(Input, ImagePointer);
46     
47     // Run filter
48     void Update();    
49     
50     // Get output
51     itkGetConstMacro(DicomRTStruct, DicomRTStructPointer);
52
53   protected:
54     ImagePointer m_Input;
55     DicomRTStructPointer m_DicomRTStruct;
56   };
57   //--------------------------------------------------------------------
58
59 } // end namespace clitk
60
61 #include "clitkImage2DicomRTStructFilter.txx"
62
63 #endif // CLITKIMAGE2DICOMRTSTRUCTFILTER_H
64