]> Creatis software - clitk.git/blob - common/clitkImage2DicomRTStructFilter.txx
Merge branch 'master' of /home/dsarrut/clitk3.server
[clitk.git] / common / clitkImage2DicomRTStructFilter.txx
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 // std
21 #include <iterator>
22 #include <algorithm>
23
24 // clitk
25 #include "clitkImage2DicomRTStructFilter.h"
26 #include "clitkImageCommon.h"
27
28 // vtk
29 #include <vtkPolyDataToImageStencil.h>
30 #include <vtkSmartPointer.h>
31 #include <vtkImageStencil.h>
32 #include <vtkLinearExtrusionFilter.h>
33 #include <vtkMetaImageWriter.h>
34 #include <vtkImageData.h>
35 #include <itkImage.h>
36 #include <itkVTKImageToImageFilter.h>
37
38 //--------------------------------------------------------------------
39 template<class PixelType>
40 clitk::Image2DicomRTStructFilter<PixelType>::Image2DicomRTStructFilter()
41 {
42   DD("Image2DicomRTStructFilter Const");
43 }
44 //--------------------------------------------------------------------
45
46
47 //--------------------------------------------------------------------
48 template<class PixelType>
49 clitk::Image2DicomRTStructFilter<PixelType>::~Image2DicomRTStructFilter()
50 {
51   DD("Image2DicomRTStructFilter Destructor");
52 }
53 //--------------------------------------------------------------------
54
55
56 //--------------------------------------------------------------------
57 template<class PixelType>
58 void clitk::Image2DicomRTStructFilter<PixelType>::Update() 
59 {
60   DD("Image2DicomRTStructFilter::Update");
61
62
63 }
64 //--------------------------------------------------------------------
65
66
67
68