]> Creatis software - clitk.git/blob - itk/itkImageToVTKImageFilter.txx
Ensure compatibility with VTK6 for Image2DicomRTStruct tool
[clitk.git] / itk / itkImageToVTKImageFilter.txx
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 _itkImageToVTKImageFilter_txx
19 #define _itkImageToVTKImageFilter_txx
20 #include "itkImageToVTKImageFilter.h"
21
22 namespace itk
23 {
24
25
26
27 /**
28  * Constructor
29  */
30 template <class TInputImage>
31 ImageToVTKImageFilter<TInputImage>
32 ::ImageToVTKImageFilter()
33 {
34
35   m_Importer = vtkImageImport::New();
36
37   m_Exporter = ExporterFilterType::New();
38
39   m_Importer->SetUpdateInformationCallback(m_Exporter->GetUpdateInformationCallback());
40   m_Importer->SetPipelineModifiedCallback(m_Exporter->GetPipelineModifiedCallback());
41   m_Importer->SetWholeExtentCallback(m_Exporter->GetWholeExtentCallback());
42   m_Importer->SetSpacingCallback(m_Exporter->GetSpacingCallback());
43   m_Importer->SetOriginCallback(m_Exporter->GetOriginCallback());
44   m_Importer->SetScalarTypeCallback(m_Exporter->GetScalarTypeCallback());
45   m_Importer->SetNumberOfComponentsCallback(m_Exporter->GetNumberOfComponentsCallback());
46   m_Importer->SetPropagateUpdateExtentCallback(m_Exporter->GetPropagateUpdateExtentCallback());
47   m_Importer->SetUpdateDataCallback(m_Exporter->GetUpdateDataCallback());
48   m_Importer->SetDataExtentCallback(m_Exporter->GetDataExtentCallback());
49   m_Importer->SetBufferPointerCallback(m_Exporter->GetBufferPointerCallback());
50   m_Importer->SetCallbackUserData(m_Exporter->GetCallbackUserData());
51
52 }
53
54
55
56
57 /**
58  * Destructor
59  */
60 template <class TInputImage>
61 ImageToVTKImageFilter<TInputImage>
62 ::~ImageToVTKImageFilter()
63 {
64   if ( m_Importer ) {
65     m_Importer->Delete();
66     m_Importer = 0;
67   }
68 }
69
70
71
72 /**
73  * Set an itk::Image as input
74  */
75 template <class TInputImage>
76 void
77 ImageToVTKImageFilter<TInputImage>
78 ::SetInput( const InputImageType * inputImage )
79 {
80   m_Exporter->SetInput( inputImage );
81 }
82
83
84
85 /**
86  * Get a vtkImage as output
87  */
88 template <class TInputImage>
89 vtkImageData *
90 ImageToVTKImageFilter<TInputImage>
91 ::GetOutput() const
92 {
93   return m_Importer->GetOutput();
94 }
95
96
97
98
99 /**
100  * Get the importer filter
101  */
102 template <class TInputImage>
103 vtkImageImport *
104 ImageToVTKImageFilter<TInputImage>
105 ::GetImporter() const
106 {
107   return m_Importer;
108 }
109
110
111
112 /**
113  * Get the exporter filter
114  */
115 template <class TInputImage>
116 typename ImageToVTKImageFilter<TInputImage>::ExporterFilterType *
117 ImageToVTKImageFilter<TInputImage>
118 ::GetExporter() const
119 {
120   return m_Exporter.GetPointer();
121 }
122
123
124
125 /**
126  * Delegate the Update to the importer
127  */
128 template <class TInputImage>
129 void
130 ImageToVTKImageFilter<TInputImage>
131 ::Update()
132 {
133   m_Importer->Update();
134 }
135
136
137
138
139
140 } // end namespace itk
141
142 #endif
143