]> Creatis software - clitk.git/blob - itk/itkVTKImageToImageFilter.txx
merge cvs -> git
[clitk.git] / itk / itkVTKImageToImageFilter.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://oncora1.lyon.fnclcc.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 _itkVTKImageToImageFilter_txx
19 #define _itkVTKImageToImageFilter_txx
20 #include "itkVTKImageToImageFilter.h"
21
22 namespace itk
23 {
24
25
26
27 /**
28  * Constructor
29  */
30 template <class TOutputImage>
31 VTKImageToImageFilter<TOutputImage>
32 ::VTKImageToImageFilter()
33 {
34
35   m_Exporter = vtkImageExport::New();
36
37   m_Importer = ImporterFilterType::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 TOutputImage>
61 VTKImageToImageFilter<TOutputImage>
62 ::~VTKImageToImageFilter()
63 {
64   if ( m_Exporter ) {
65     m_Exporter->Delete();
66     m_Exporter = 0;
67   }
68 }
69
70
71
72 /**
73  * Set a vtkImageData as input
74  */
75 template <class TOutputImage>
76 void
77 VTKImageToImageFilter<TOutputImage>
78 ::SetInput( vtkImageData * inputImage )
79 {
80   m_Exporter->SetInput( inputImage );
81 }
82
83
84
85 /**
86  * Get an itk::Image as output
87  */
88 template <class TOutputImage>
89 //const 
90 typename VTKImageToImageFilter<TOutputImage>::OutputImageType *
91 VTKImageToImageFilter<TOutputImage>
92 ::GetOutput() const
93 {
94   return m_Importer->GetOutput();
95 }
96
97
98
99
100 /**
101  * Get the exporter filter
102  */
103 template <class TOutputImage>
104 vtkImageExport *
105 VTKImageToImageFilter<TOutputImage>
106 ::GetExporter() const
107 {
108   return m_Exporter;
109 }
110
111
112
113 /**
114  * Get the importer filter
115  */
116 template <class TOutputImage>
117 typename VTKImageToImageFilter<TOutputImage>::ImporterFilterType *
118 VTKImageToImageFilter<TOutputImage>
119 ::GetImporter() const
120 {
121   return m_Importer;
122 }
123
124
125
126
127 /**
128  * Delegate the Update to the importer
129  */
130 template <class TOutputImage>
131 void
132 VTKImageToImageFilter<TOutputImage>
133 ::Update()
134 {
135   m_Importer->Update();
136 }
137
138
139
140
141 } // end namespace itk
142
143 #endif
144