forked from ANTsX/ANTs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateWarpedGridImage.cxx
201 lines (186 loc) · 6.05 KB
/
CreateWarpedGridImage.cxx
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkVectorImageFileReader.h"
#include "itkVector.h"
#include "itkMatrixOffsetTransformBase.h"
#include "itkWarpImageMultiTransformFilter.h"
#include "itkGridImageSource.h"
template <class TValue>
TValue Convert( std::string optionString )
{
TValue value;
std::istringstream iss( optionString );
iss >> value;
return value;
}
template <class TValue>
std::vector<TValue> ConvertVector( std::string optionString )
{
std::vector<TValue> values;
std::string::size_type crosspos = optionString.find( 'x', 0 );
if( crosspos == std::string::npos )
{
values.push_back( Convert<TValue>( optionString ) );
}
else
{
std::string element = optionString.substr( 0, crosspos );
TValue value;
std::istringstream iss( element );
iss >> value;
values.push_back( value );
while( crosspos != std::string::npos )
{
std::string::size_type crossposfrom = crosspos;
crosspos = optionString.find( 'x', crossposfrom + 1 );
if( crosspos == std::string::npos )
{
element = optionString.substr( crossposfrom + 1, optionString.length() );
}
else
{
element = optionString.substr( crossposfrom + 1, crosspos );
}
std::istringstream iss( element );
iss >> value;
values.push_back( value );
}
}
return values;
}
template <unsigned int ImageDimension>
int CreateWarpedGridImage( int argc, char *argv[] )
{
typedef float RealType;
typedef itk::Image<RealType, ImageDimension> RealImageType;
typedef itk::Vector<RealType, ImageDimension> VectorType;
typedef itk::Image<VectorType, ImageDimension> VectorImageType;
/**
* Read in vector field
*/
typedef itk::VectorImageFileReader<RealImageType, VectorImageType> ReaderType;
typename ReaderType::Pointer reader = ReaderType::New();
reader->SetFileName( argv[2] );
reader->Update();
typedef itk::GridImageSource<RealImageType> GridSourceType;
typename GridSourceType::Pointer gridder = GridSourceType::New();
gridder->SetSpacing( reader->GetOutput()->GetSpacing() );
gridder->SetOrigin( reader->GetOutput()->GetOrigin() );
gridder->SetSize( reader->GetOutput()->GetLargestPossibleRegion().GetSize() );
typename GridSourceType::ArrayType gridSpacing;
typename GridSourceType::ArrayType gridSigma;
typename GridSourceType::BoolArrayType which;
which.Fill( false );
for( unsigned int i = 0; i < 2; i++ )
{
which[i] = true;
}
if( argc > 4 )
{
std::vector<unsigned int> directions
= ConvertVector<unsigned int>( std::string( argv[4] ) );
if( directions.size() != ImageDimension )
{
std::cerr << "Incorrect direction size." << std::endl;
return EXIT_FAILURE;
}
else
{
for( unsigned int i = 0; i < ImageDimension; i++ )
{
which[i] = static_cast<bool>( directions[i] );
}
}
}
for( unsigned int i = 0; i < ImageDimension; i++ )
{
gridSpacing[i] = reader->GetOutput()->GetLargestPossibleRegion().GetSize()[i]
* reader->GetOutput()->GetSpacing()[i] / 25.0;
gridSigma[i] = gridSpacing[i] / 10.0;
}
if( argc > 5 )
{
std::vector<RealType> spacing
= ConvertVector<RealType>( std::string( argv[5] ) );
if( spacing.size() != ImageDimension )
{
std::cerr << "Incorrect spacing size." << std::endl;
return EXIT_FAILURE;
}
else
{
for( unsigned int i = 0; i < ImageDimension; i++ )
{
gridSpacing[i] = spacing[i];
gridSigma[i] = gridSpacing[i] / 10.0;
}
}
}
if( argc > 6 )
{
std::vector<RealType> sigma
= ConvertVector<RealType>( std::string( argv[6] ) );
if( sigma.size() != ImageDimension )
{
std::cerr << "Incorrect sigma size." << std::endl;
return EXIT_FAILURE;
}
else
{
for( unsigned int i = 0; i < ImageDimension; i++ )
{
gridSigma[i] = sigma[i] / 10.0;
}
}
}
gridder->SetGridSpacing( gridSpacing );
gridder->SetSigma( gridSigma );
gridder->SetWhichDimensions( which );
gridder->Update();
typename RealImageType::Pointer grid = gridder->GetOutput();
grid->SetDirection(reader->GetOutput()->GetDirection() );
grid->SetOrigin(reader->GetOutput()->GetOrigin() );
grid->SetSpacing(reader->GetOutput()->GetSpacing() );
typedef itk::MatrixOffsetTransformBase<double, ImageDimension,
ImageDimension> TransformType;
typedef itk::WarpImageMultiTransformFilter<RealImageType, RealImageType, VectorImageType, TransformType> WarperType;
typename WarperType::Pointer warper = WarperType::New();
warper->SetInput(grid);
warper->SetEdgePaddingValue( 0);
warper->SetSmoothScale(1);
warper->PushBackDeformationFieldTransform(reader->GetOutput() );
warper->SetOutputOrigin(reader->GetOutput()->GetOrigin() );
warper->SetOutputSize(reader->GetOutput()->GetLargestPossibleRegion().GetSize() );
warper->SetOutputSpacing(reader->GetOutput()->GetSpacing() );
warper->SetOutputDirection(reader->GetOutput()->GetDirection() );
warper->Update();
std::string file = std::string( argv[3] );
typedef itk::ImageFileWriter<RealImageType> ImageWriterType;
typename ImageWriterType::Pointer gridWriter = ImageWriterType::New();
gridWriter->SetFileName( file.c_str() );
gridWriter->SetInput( warper->GetOutput() );
gridWriter->Update();
return 0;
}
int main( int argc, char *argv[] )
{
if( argc < 4 )
{
std::cout << "Usage: " << argv[0] << " ImageDimension deformationField "
<< "outputImage [directions,e.g. 1x0x0] [gridSpacing] [gridSigma]"
<< std::endl;
exit( 1 );
}
switch( atoi( argv[1] ) )
{
case 2:
CreateWarpedGridImage<2>( argc, argv );
break;
case 3:
CreateWarpedGridImage<3>( argc, argv );
break;
default:
std::cerr << "Unsupported dimension" << std::endl;
exit( EXIT_FAILURE );
}
}