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