forked from ANTsX/ANTs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConvertImage.cxx
355 lines (317 loc) · 11.1 KB
/
ConvertImage.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
#include "antsUtilities.h"
#include "ReadWriteData.h"
#include "itkCastImageFilter.h"
#include "itkNumericTraits.h"
#include "itkRescaleIntensityImageFilter.h"
#include "itkVectorIndexSelectionCastImageFilter.h"
#include <string>
namespace ants
{
template <class TPixel, unsigned int ImageDimension>
int ConvertImage( int argc, char *argv[] )
{
typedef TPixel OutputPixelType;
if( argc > 4 && atoi( argv[4] ) == 9 )
{
typedef itk::Vector<OutputPixelType, ImageDimension> VectorType;
typedef itk::Image<VectorType, ImageDimension> DisplacementFieldType;
typedef itk::Image<OutputPixelType, ImageDimension> ComponentImageType;
typename DisplacementFieldType::Pointer displacementField = DisplacementFieldType::New();
for( unsigned int d = 0; d < ImageDimension; d++ )
{
std::string filename = std::string( argv[2] );
if( d == 0 )
{
filename += std::string( "xvec.nii.gz" );
}
else if( d == 1 )
{
filename += std::string( "yvec.nii.gz" );
}
else if( d == 2 )
{
filename += std::string( "zvec.nii.gz" );
}
typename ComponentImageType::Pointer inputImage;
ReadImage<ComponentImageType>( inputImage, filename.c_str() );
if( d == 0 )
{
displacementField->CopyInformation( inputImage );
displacementField->SetRegions( inputImage->GetRequestedRegion() );
displacementField->Allocate();
VectorType V;
V.Fill( 0.0 );
displacementField->FillBuffer( V );
}
itk::ImageRegionConstIterator<ComponentImageType> It( inputImage,
inputImage->GetLargestPossibleRegion() );
itk::ImageRegionIterator<DisplacementFieldType> ItD( displacementField,
displacementField->GetLargestPossibleRegion() );
for( It.GoToBegin(), ItD.GoToBegin(); !It.IsAtEnd(); ++ItD, ++It )
{
VectorType V = ItD.Get();
V[d] = It.Get();
ItD.Set( V );
}
}
WriteImage<DisplacementFieldType>( displacementField, argv[3] );
}
else if( argc > 4 && atoi( argv[4] ) == 10 )
{
typedef itk::Vector<OutputPixelType, ImageDimension> VectorType;
typedef itk::Image<VectorType, ImageDimension> DisplacementFieldType;
typedef itk::Image<OutputPixelType, ImageDimension> ComponentImageType;
typename DisplacementFieldType::Pointer inputImage;
ReadImage<DisplacementFieldType>( inputImage, argv[2] );
for( unsigned int d = 0; d < ImageDimension; d++ )
{
typedef itk::VectorIndexSelectionCastImageFilter<DisplacementFieldType, ComponentImageType> SelectorType;
typename SelectorType::Pointer selector = SelectorType::New();
selector->SetInput( inputImage );
selector->SetIndex( d );
selector->Update();
std::string filename = std::string( argv[3] );
if( d == 0 )
{
filename += std::string( "xvec.nii.gz" );
}
else if( d == 1 )
{
filename += std::string( "yvec.nii.gz" );
}
else if( d == 2 )
{
filename += std::string( "zvec.nii.gz" );
}
WriteImage<ComponentImageType>( selector->GetOutput(), filename.c_str() );
}
}
else if( argc > 4 && atoi( argv[4] ) == 11 )
{
typedef itk::Vector<OutputPixelType, ImageDimension> VectorType;
typedef itk::Image<VectorType, ImageDimension+1> VelocityFieldType;
typedef itk::Image<OutputPixelType, ImageDimension+1> ComponentImageType;
typedef itk::ImageFileReader<VelocityFieldType> ReaderType;
typename ReaderType::Pointer reader = ReaderType::New();
reader->SetFileName( argv[2] );
reader->Update();
typename VelocityFieldType::Pointer inputImage;
ReadImage<VelocityFieldType>( inputImage, argv[2] );
for( unsigned int d = 0; d < ImageDimension; d++ )
{
typedef itk::VectorIndexSelectionCastImageFilter<VelocityFieldType, ComponentImageType> SelectorType;
typename SelectorType::Pointer selector = SelectorType::New();
selector->SetInput( reader->GetOutput() );
selector->SetIndex( d );
selector->Update();
std::string filename = std::string( argv[3] );
if( d == 0 )
{
filename += std::string( "xvec.nii.gz" );
}
else if( d == 1 )
{
filename += std::string( "yvec.nii.gz" );
}
else if( d == 2 )
{
filename += std::string( "zvec.nii.gz" );
}
WriteImage<ComponentImageType>( selector->GetOutput(), filename.c_str() );
}
}
else if( argc > 4 && atoi( argv[4] ) == 12 )
{
typedef itk::Vector<OutputPixelType, ImageDimension> VectorType;
typedef itk::Image<VectorType, ImageDimension> DisplacementFieldType;
typename DisplacementFieldType::Pointer displacementField;
ReadImage<DisplacementFieldType>( displacementField, argv[2] );
WriteImage<DisplacementFieldType>( displacementField, argv[3] );
}
else if( argc == 4 || ( argc > 4 && atoi( argv[4] ) < 9 ) )
{
typedef typename itk::NumericTraits<OutputPixelType>::RealType RealType;
typedef itk::Image<RealType, ImageDimension> InputImageType;
typedef itk::Image<OutputPixelType, ImageDimension> OutputImageType;
typename InputImageType::Pointer inputImage;
ReadImage<InputImageType>( inputImage, argv[2] );
std::vector<std::string> rescaleFileTypes;
rescaleFileTypes.push_back( ".png" );
rescaleFileTypes.push_back( ".jpeg" );
rescaleFileTypes.push_back( ".jpg" );
rescaleFileTypes.push_back( ".tiff" );
rescaleFileTypes.push_back( ".tif" );
rescaleFileTypes.push_back( ".bmp" );
bool isRescaleType = false;
for( unsigned int i = 0; i < rescaleFileTypes.size(); i++ )
{
if( strstr( argv[3], rescaleFileTypes[i].c_str() ) != NULL )
{
isRescaleType = true;
break;
}
}
if( isRescaleType )
{
typedef itk::RescaleIntensityImageFilter<InputImageType, OutputImageType> FilterType;
typename FilterType::Pointer filter = FilterType::New();
filter->SetInput( inputImage );
filter->SetOutputMinimum( itk::NumericTraits<OutputPixelType>::min() );
filter->SetOutputMaximum( itk::NumericTraits<OutputPixelType>::max() );
filter->Update();
WriteImage<OutputImageType>( filter->GetOutput(), argv[3] );
}
else
{
typedef itk::CastImageFilter<InputImageType, OutputImageType> CasterType;
typename CasterType::Pointer caster = CasterType::New();
caster->SetInput( inputImage );
caster->Update();
WriteImage<OutputImageType>( caster->GetOutput(), argv[3] );
}
}
return EXIT_SUCCESS;
}
int ConvertImage( std::vector<std::string> args, std::ostream* /*out_stream = NULL */ )
{
// 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(), "ConvertImage" );
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] = ITK_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::cerr << "Usage: " << argv[0] << " imageDimension "
<< "inputImage outputImage <pixelType>" << std::endl;
std::cerr << "pixelType: 0 -> float (default)" << std::endl
<< " 1 -> unsigned char" << std::endl
<< " 2 -> unsigned short" << std::endl
<< " 3 -> unsigned int" << std::endl
<< " 4 -> unsigned long" << std::endl
<< " 5 -> char" << std::endl
<< " 6 -> short" << std::endl
<< " 7 -> int" << std::endl
<< " 8 -> long" << std::endl
<< " 9 -> component images to a float vector image" << std::endl
<< " 10 -> vector image to component images" << std::endl
<< " 11 -> time-varying velocity field image to component images (ImageDimension is the dimensionality of the displacement vector)" << std::endl
<< " 12 -> float vector image" << std::endl;
return EXIT_FAILURE;
}
switch( atoi( argv[1] ) )
{
case 2:
if( argc > 4 && atoi( argv[4] ) == 1 )
{
ConvertImage<unsigned char, 2>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 2 )
{
ConvertImage<unsigned short, 2>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 3 )
{
ConvertImage<unsigned int, 2>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 4 )
{
ConvertImage<unsigned long, 2>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 5 )
{
ConvertImage<char, 2>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 6 )
{
ConvertImage<short, 2>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 7 )
{
ConvertImage<int, 2>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 8 )
{
ConvertImage<long, 2>( argc, argv );
}
else
{
ConvertImage<float, 2>( argc, argv );
}
break;
case 3:
if( argc > 4 && atoi( argv[4] ) == 1 )
{
ConvertImage<unsigned char, 3>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 2 )
{
ConvertImage<unsigned short, 3>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 3 )
{
ConvertImage<unsigned int, 3>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 4 )
{
ConvertImage<unsigned long, 3>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 5 )
{
ConvertImage<char, 3>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 6 )
{
ConvertImage<short, 3>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 7 )
{
ConvertImage<int, 3>( argc, argv );
}
else if( argc > 4 && atoi( argv[4] ) == 8 )
{
ConvertImage<long, 3>( argc, argv );
}
else
{
ConvertImage<float, 3>( argc, argv );
}
break;
default:
std::cerr << "Unsupported dimension" << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
} // namespace ants