-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitkVTKImageToImageFilter.txx
144 lines (104 loc) · 3.1 KB
/
itkVTKImageToImageFilter.txx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkVTKImageToImageFilter.txx
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Insight Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef _itkVTKImageToImageFilter_txx
#define _itkVTKImageToImageFilter_txx
#include "itkVTKImageToImageFilter.h"
namespace itk
{
/**
* Constructor
*/
template <class TOutputImage>
VTKImageToImageFilter<TOutputImage>
::VTKImageToImageFilter()
{
m_Exporter = vtkImageExport::New();
m_Importer = ImporterFilterType::New();
m_Importer->SetUpdateInformationCallback( m_Exporter->GetUpdateInformationCallback());
m_Importer->SetPipelineModifiedCallback( m_Exporter->GetPipelineModifiedCallback());
m_Importer->SetWholeExtentCallback( m_Exporter->GetWholeExtentCallback());
m_Importer->SetSpacingCallback( m_Exporter->GetSpacingCallback());
m_Importer->SetOriginCallback( m_Exporter->GetOriginCallback());
m_Importer->SetScalarTypeCallback( m_Exporter->GetScalarTypeCallback());
m_Importer->SetNumberOfComponentsCallback( m_Exporter->GetNumberOfComponentsCallback());
m_Importer->SetPropagateUpdateExtentCallback( m_Exporter->GetPropagateUpdateExtentCallback());
m_Importer->SetUpdateDataCallback( m_Exporter->GetUpdateDataCallback());
m_Importer->SetDataExtentCallback( m_Exporter->GetDataExtentCallback());
m_Importer->SetBufferPointerCallback( m_Exporter->GetBufferPointerCallback());
m_Importer->SetCallbackUserData( m_Exporter->GetCallbackUserData());
}
/**
* Destructor
*/
template <class TOutputImage>
VTKImageToImageFilter<TOutputImage>
::~VTKImageToImageFilter()
{
if( m_Exporter )
{
m_Exporter->Delete();
m_Exporter = 0;
}
}
/**
* Set a vtkImageData as input
*/
template <class TOutputImage>
void
VTKImageToImageFilter<TOutputImage>
::SetInput( vtkImageData * inputImage )
{
m_Exporter->SetInput( inputImage );
}
/**
* Get an itk::Image as output
*/
template <class TOutputImage>
const typename VTKImageToImageFilter<TOutputImage>::OutputImageType *
VTKImageToImageFilter<TOutputImage>
::GetOutput() const
{
return m_Importer->GetOutput();
}
/**
* Get the exporter filter
*/
template <class TOutputImage>
vtkImageExport *
VTKImageToImageFilter<TOutputImage>
::GetExporter() const
{
return m_Exporter;
}
/**
* Get the importer filter
*/
template <class TOutputImage>
typename VTKImageToImageFilter<TOutputImage>::ImporterFilterType *
VTKImageToImageFilter<TOutputImage>
::GetImporter() const
{
return m_Importer;
}
/**
* Delegate the Update to the importer
*/
template <class TOutputImage>
void
VTKImageToImageFilter<TOutputImage>
::Update()
{
m_Importer->Update();
}
} // end namespace itk
#endif