creaContours_lib
itkVTKImageToImageFilter.txx
Go to the documentation of this file.
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 
46 
47 namespace itk
48 {
49 
50 
51 
55 template <class TOutputImage>
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 
85 template <class TOutputImage>
88 {
89  if( m_Exporter )
90  {
91  m_Exporter->Delete();
92  m_Exporter = 0;
93  }
94 }
95 
96 
97 
101 template <class TOutputImage>
102 void
104 ::SetInput( vtkImageData * inputImage )
105 {
106  m_Exporter->SetInput( inputImage );
107 }
108 
109 
110 
114 template <class TOutputImage>
117 ::GetOutput() const
118 {
119  return m_Importer->GetOutput();
120 }
121 
122 
123 
124 
128 template <class TOutputImage>
129 vtkImageExport *
132 {
133  return m_Exporter;
134 }
135 
136 
137 
141 template <class TOutputImage>
145 {
146  return m_Importer;
147 }
148 
149 
150 
151 
155 template <class TOutputImage>
156 void
159 {
160  m_Importer->Update();
161 }
162 
163 
164 
165 
166 } // end namespace itk
167 
168 #endif
169