]> Creatis software - creaImageIO.git/blob - appli/TestWxSimpleView/itkVTKImageToImageFilter.txx
*** empty log message ***
[creaImageIO.git] / appli / TestWxSimpleView / itkVTKImageToImageFilter.txx
1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkVTKImageToImageFilter.txx,v $
5   Language:  C++
6   Date:      $Date: 2011/05/04 15:17:04 $
7   Version:   $Revision: 1.1 $
8
9   Copyright (c) 2002 Insight Consortium. All rights reserved.
10   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
11
12      This software is distributed WITHOUT ANY WARRANTY; without even 
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14      PURPOSE.  See the above copyright notices for more information.
15
16 =========================================================================*/
17 #ifndef _itkVTKImageToImageFilter_txx
18 #define _itkVTKImageToImageFilter_txx
19
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     {
66     m_Exporter->Delete();
67     m_Exporter = 0;
68     }
69 }
70
71
72
73 /**
74  * Set a vtkImageData as input 
75  */
76 template <class TOutputImage>
77 void
78 VTKImageToImageFilter<TOutputImage>
79 ::SetInput( vtkImageData * inputImage )
80 {
81   m_Exporter->SetInput( inputImage );
82 }
83
84
85
86 /**
87  * Get an itk::Image as output
88  */
89 template <class TOutputImage>
90 const 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