]> Creatis software - creaContours.git/blob - lib/kernel_ManagerContour_NDimensions/itkVTKImageToImageFilter.txx
#3216 creaContours Feature New Normal - vtk8itk4wx3-mingw64
[creaContours.git] / lib / kernel_ManagerContour_NDimensions / itkVTKImageToImageFilter.txx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 /*=========================================================================
27
28   Program:   Insight Segmentation & Registration Toolkit
29   Module:    $RCSfile: itkVTKImageToImageFilter.txx,v $
30   Language:  C++
31   Date:      $Date: 2012/11/15 15:49:54 $
32   Version:   $Revision: 1.2 $
33
34   Copyright (c) 2002 Insight Consortium. All rights reserved.
35   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
36
37      This software is distributed WITHOUT ANY WARRANTY; without even 
38      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
39      PURPOSE.  See the above copyright notices for more information.
40
41 =========================================================================*/
42 #ifndef _itkVTKImageToImageFilter_txx
43 #define _itkVTKImageToImageFilter_txx
44
45 #include "itkVTKImageToImageFilter.h"
46
47 namespace itk
48 {
49
50
51
52 /**
53  * Constructor
54  */
55 template <class TOutputImage>
56 VTKImageToImageFilter<TOutputImage>
57 ::VTKImageToImageFilter()
58 {
59
60   m_Exporter = vtkImageExport::New();
61
62   m_Importer = ImporterFilterType::New();
63
64   m_Importer->SetUpdateInformationCallback( m_Exporter->GetUpdateInformationCallback());
65   m_Importer->SetPipelineModifiedCallback( m_Exporter->GetPipelineModifiedCallback());
66   m_Importer->SetWholeExtentCallback( m_Exporter->GetWholeExtentCallback());
67   m_Importer->SetSpacingCallback( m_Exporter->GetSpacingCallback());
68   m_Importer->SetOriginCallback( m_Exporter->GetOriginCallback());
69   m_Importer->SetScalarTypeCallback( m_Exporter->GetScalarTypeCallback());
70   m_Importer->SetNumberOfComponentsCallback( m_Exporter->GetNumberOfComponentsCallback());
71   m_Importer->SetPropagateUpdateExtentCallback( m_Exporter->GetPropagateUpdateExtentCallback());
72   m_Importer->SetUpdateDataCallback( m_Exporter->GetUpdateDataCallback());
73   m_Importer->SetDataExtentCallback( m_Exporter->GetDataExtentCallback());
74   m_Importer->SetBufferPointerCallback( m_Exporter->GetBufferPointerCallback());
75   m_Importer->SetCallbackUserData( m_Exporter->GetCallbackUserData());
76
77 }
78
79
80
81
82 /**
83  * Destructor
84  */
85 template <class TOutputImage>
86 VTKImageToImageFilter<TOutputImage>
87 ::~VTKImageToImageFilter()
88 {
89   if( m_Exporter )
90     {
91     m_Exporter->Delete();
92     m_Exporter = 0;
93     }
94 }
95
96
97
98 /**
99  * Set a vtkImageData as input 
100  */
101 template <class TOutputImage>
102 void
103 VTKImageToImageFilter<TOutputImage>
104 ::SetInput( vtkImageData * inputImage )
105 {
106 //EED 2017-01-01 Migration VTK7
107 #if VTK_MAJOR_VERSION <= 5
108   m_Exporter->SetInput( inputImage );
109 #else
110   m_Exporter->SetInputData( inputImage );
111 #endif
112 }
113
114
115
116 /**
117  * Get an itk::Image as output
118  */
119 template <class TOutputImage>
120 const typename VTKImageToImageFilter<TOutputImage>::OutputImageType *
121 VTKImageToImageFilter<TOutputImage>
122 ::GetOutput() const
123 {
124   return m_Importer->GetOutput();
125 }
126
127
128
129
130 /**
131  * Get the exporter filter
132  */
133 template <class TOutputImage>
134 vtkImageExport *
135 VTKImageToImageFilter<TOutputImage>
136 ::GetExporter() const
137 {
138   return m_Exporter;
139 }
140
141
142
143 /**
144  * Get the importer filter
145  */
146 template <class TOutputImage>
147 typename VTKImageToImageFilter<TOutputImage>::ImporterFilterType *
148 VTKImageToImageFilter<TOutputImage>
149 ::GetImporter() const
150 {
151   return m_Importer;
152 }
153
154
155
156
157 /**
158  * Delegate the Update to the importer
159  */
160 template <class TOutputImage>
161 void
162 VTKImageToImageFilter<TOutputImage>
163 ::Update()
164 {
165   m_Importer->Update();
166 }
167
168
169
170
171 } // end namespace itk
172
173 #endif
174