forked from ANTsX/ANTs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReorientTensorImage.cxx
245 lines (209 loc) · 7.56 KB
/
ReorientTensorImage.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*=========================================================================1
Program: Advanced Normalization Tools
Copyright (c) ConsortiumOfANTS. All rights reserved.
See accompanying COPYING.txt or
https://github.com/stnava/ANTs/blob/master/ANTSCopyright.txt 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.
=========================================================================*/
#include "antsUtilities.h"
#include "antsUtilities.h"
#include "ReadWriteData.h"
#include "itkPreservationOfPrincipalDirectionTensorReorientationImageFilter.h"
#include "itkImageRegionIteratorWithIndex.h"
#include "itkWarpTensorImageMultiTransformFilter.h"
#include "itkTransformFileReader.h"
#include "itkTransformFactory.h"
namespace ants
{
static bool
ReorientTensorImage_ParseInput(int argc,
char ** argv,
char *& moving_image_filename,
char *& output_image_filename,
TRAN_OPT_QUEUE & opt_queue)
{
opt_queue.clear();
opt_queue.reserve(argc - 2);
moving_image_filename = argv[0];
output_image_filename = argv[1];
int ind = 2;
while (ind < argc)
{
TRAN_OPT opt;
opt.filename = argv[ind];
opt.file_type = CheckFileType(opt.filename.c_str());
opt.do_affine_inv = false;
if (strcmp(argv[ind], "-i") == 0)
{
std::cout << "ERROR - inverse transforms not yet supported\n" << std::endl;
return false;
}
else
{
bool set_current_affine_inv = false;
if (opt.file_type == AFFINE_FILE)
{
SetAffineInvFlag(opt, set_current_affine_inv);
}
else
{
if (opt.file_type == DEFORMATION_FILE && set_current_affine_inv)
{
std::cout << "Ignore inversion of non-affine file type! " << std::endl;
std::cout << "opt.do_affine_inv:" << opt.do_affine_inv << std::endl;
}
}
opt_queue.push_back(opt);
DisplayOpt(opt);
}
++ind;
}
return true;
}
template <int ImageDimension>
void
ReorientTensorImage(char * moving_image_filename, char * output_image_filename, TRAN_OPT_QUEUE & opt_queue)
{
using PixelType = itk::DiffusionTensor3D<double>;
using TensorImageType = itk::Image<PixelType, ImageDimension>;
using ImageType = itk::Image<float, ImageDimension>;
using VectorType = itk::Vector<double, ImageDimension>;
using DisplacementFieldType = itk::Image<VectorType, ImageDimension>;
using AffineTransformType = itk::MatrixOffsetTransformBase<double, ImageDimension, ImageDimension>;
itk::TransformFactory<AffineTransformType>::RegisterTransform();
using ImageFileReaderType = itk::ImageFileReader<ImageType>;
typename TensorImageType::Pointer img_mov;
// No reason to use log-euclidean space
ReadTensorImage<TensorImageType>(img_mov, moving_image_filename, false);
typename ImageType::Pointer img_ref = nullptr;
typename ImageFileReaderType::Pointer reader_img_ref = ImageFileReaderType::New();
using TranReaderType = itk::TransformFileReader;
using FieldReaderType = itk::ImageFileReader<DisplacementFieldType>;
typename DisplacementFieldType::Pointer field = nullptr;
typename AffineTransformType::Pointer aff = nullptr;
const int kOptQueueSize = opt_queue.size();
if (kOptQueueSize > 1)
{
std::cout << "ERROR: Only 1 input transform is permitted" << std::endl;
return;
}
using PPDReorientType =
itk::PreservationOfPrincipalDirectionTensorReorientationImageFilter<TensorImageType, DisplacementFieldType>;
typename PPDReorientType::Pointer reo = PPDReorientType::New();
reo->SetInput(img_mov);
const TRAN_OPT & opt = opt_queue[0];
switch (opt.file_type)
{
case AFFINE_FILE:
{
typename TranReaderType::Pointer tran_reader = TranReaderType::New();
tran_reader->SetFileName(opt.filename);
tran_reader->Update();
aff = dynamic_cast<AffineTransformType *>((tran_reader->GetTransformList())->front().GetPointer());
reo->SetAffineTransform(aff);
std::cout << "Affine transform" << std::endl;
}
break;
case DEFORMATION_FILE:
{
typename FieldReaderType::Pointer field_reader = FieldReaderType::New();
field_reader->SetFileName(opt.filename);
field_reader->Update();
// field = field_reader->GetOutput();
reo->SetDisplacementField(field_reader->GetOutput());
std::cout << "Warp transform" << std::endl;
}
break;
default:
{
std::cout << "Unknown file type!" << std::endl;
}
}
reo->Update();
typename TensorImageType::Pointer img_output = reo->GetOutput();
// No reason to use log-euclidean space here
WriteTensorImage<TensorImageType>(img_output, output_image_filename, false);
}
// entry point for the library; parameter 'args' is equivalent to 'argv' in (argc,argv) of commandline parameters to
// 'main()'
int
ReorientTensorImage(std::vector<std::string> args, std::ostream * /*out_stream = nullptr */)
{
// put the arguments coming in as 'args' into standard (argc,argv) format;
// 'args' doesn't have the command name as first, argument, so add it manually;
// 'args' may have adjacent arguments concatenated into one argument,
// which the parser should handle
args.insert(args.begin(), "ReorientTensorImage");
int argc = args.size();
char ** argv = new char *[args.size() + 1];
for (unsigned int i = 0; i < args.size(); ++i)
{
// allocate space for the string plus a null character
argv[i] = new char[args[i].length() + 1];
std::strncpy(argv[i], args[i].c_str(), args[i].length());
// place the null character in the end
argv[i][args[i].length()] = '\0';
}
argv[argc] = nullptr;
// class to automatically cleanup argv upon destruction
class Cleanup_argv
{
public:
Cleanup_argv(char ** argv_, int argc_plus_one_)
: argv(argv_)
, argc_plus_one(argc_plus_one_)
{}
~Cleanup_argv()
{
for (unsigned int i = 0; i < argc_plus_one; ++i)
{
delete[] argv[i];
}
delete[] argv;
}
private:
char ** argv;
unsigned int argc_plus_one;
};
Cleanup_argv cleanup_argv(argv, argc + 1);
// antscout->set_stream( out_stream );
if (argc < 4)
{
std::cout << "Usage: " << argv[0] << " Dimension infile.nii outfile.nii <warp.nii/affine.txt> " << std::endl;
if (argc >= 2 && (std::string(argv[1]) == std::string("--help") || std::string(argv[1]) == std::string("-h")))
{
return EXIT_SUCCESS;
}
return EXIT_FAILURE;
}
TRAN_OPT_QUEUE opt_queue;
char * moving_image_filename = nullptr;
char * output_image_filename = nullptr;
bool is_parsing_ok = false;
int dim = std::stoi(argv[1]);
if (dim != 3)
{
std::cout << "ReorientTensorImage only supports 3D image volumes" << std::endl;
return EXIT_FAILURE;
}
is_parsing_ok =
ReorientTensorImage_ParseInput(argc - 2, argv + 2, moving_image_filename, output_image_filename, opt_queue);
if (is_parsing_ok)
{
std::cout << "moving_image_filename: " << moving_image_filename << std::endl;
std::cout << "output_image_filename: " << output_image_filename << std::endl;
DisplayOptQueue(opt_queue);
ReorientTensorImage<3>(moving_image_filename, output_image_filename, opt_queue);
}
else
{
std::cout << "Input error!" << std::endl;
return EXIT_FAILURE;
}
// ReorientTensorImage<3>(argc,argv);
// WarpImageForward(argc,argv);
return EXIT_SUCCESS;
}
} // namespace ants