]> Creatis software - creaContours.git/blob - lib/kernel_ManagerContour_NDimensions/itkVTKImageToImageFilter.txx
Feature #1772 Add licence terms for all files.
[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   m_Exporter->SetInput( inputImage );
107 }
108
109
110
111 /**
112  * Get an itk::Image as output
113  */
114 template <class TOutputImage>
115 const typename VTKImageToImageFilter<TOutputImage>::OutputImageType *
116 VTKImageToImageFilter<TOutputImage>
117 ::GetOutput() const
118 {
119   return m_Importer->GetOutput();
120 }
121
122
123
124
125 /**
126  * Get the exporter filter
127  */
128 template <class TOutputImage>
129 vtkImageExport *
130 VTKImageToImageFilter<TOutputImage>
131 ::GetExporter() const
132 {
133   return m_Exporter;
134 }
135
136
137
138 /**
139  * Get the importer filter
140  */
141 template <class TOutputImage>
142 typename VTKImageToImageFilter<TOutputImage>::ImporterFilterType *
143 VTKImageToImageFilter<TOutputImage>
144 ::GetImporter() const
145 {
146   return m_Importer;
147 }
148
149
150
151
152 /**
153  * Delegate the Update to the importer
154  */
155 template <class TOutputImage>
156 void
157 VTKImageToImageFilter<TOutputImage>
158 ::Update()
159 {
160   m_Importer->Update();
161 }
162
163
164
165
166 } // end namespace itk
167
168 #endif
169