nifti-to-dicom.cpp
7.99 KB
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
/*
* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of NVIDIA CORPORATION nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// The program reads a 3D image from a non DICOM file and writes it as a series of DICOM slices
// Output header comes from a Dicom reference image
#include <itkGDCMImageIO.h>
#include <itkGDCMSeriesFileNames.h>
#include <gdcmUIDGenerator.h>
#include <itkImageSeriesReader.h>
#include <itkNumericSeriesFileNames.h>
#include <itkImageSeriesWriter.h>
#include <itkImageFileReader.h>
#include <itkMetaDataObject.h>
#include <itksys/SystemTools.hxx>
#include <vector>
#include <iostream>
#include <string>
#pragma warning(push, 0)
static void CopyDictionary(itk::MetaDataDictionary &fromDict, itk::MetaDataDictionary &toDict);
int main(int argc, char* argv[]) {
if (argc < 4) {
std::cerr << "Usage: " << std::endl;
std::cerr << argv[0] << " <InputImage> <OutputDicomDirectory> <ReferenceDicomDirectory>" << std::endl;
return EXIT_FAILURE;
}
typedef int PixelType;
const unsigned int Dimension = 3;
typedef itk::Image<PixelType, Dimension> ImageType;
//Image input
typedef itk::ImageFileReader<ImageType> ReaderInType;
ReaderInType::Pointer readerIn = ReaderInType::New();
readerIn->SetFileName(argv[1]);
readerIn->Update();
ImageType::RegionType region = readerIn->GetOutput()->GetLargestPossibleRegion();
ImageType::IndexType start = region.GetIndex();
ImageType::SizeType size = region.GetSize();
typedef itk::GDCMImageIO ImageIOType;
ImageIOType::Pointer gdcmIO = ImageIOType::New();
//Reference input
typedef itk::ImageSeriesReader<ImageType> ReaderRefType;
typedef itk::GDCMSeriesFileNames InNamesGeneratorType;
InNamesGeneratorType::Pointer namesGeneratorIn = InNamesGeneratorType::New();
namesGeneratorIn->SetInputDirectory(argv[3]);
const ReaderRefType::FileNamesContainer & filenames = namesGeneratorIn->GetInputFileNames();
const unsigned int numberOfFileNames = filenames.size();
if (size[2] != numberOfFileNames) {
std::cerr << "Input and reference images do not match!" << std::endl;
return EXIT_FAILURE;
} else
std::cout << "Total slice number: " << numberOfFileNames << std::endl;
ReaderRefType::Pointer readerRef = ReaderRefType::New();
readerRef->SetImageIO(gdcmIO);
readerRef->SetFileNames(filenames);
readerRef->Update();
//Write output
typedef itk::NumericSeriesFileNames OutNamesGeneratorType;
const char * outputDirectory = argv[2];
itksys::SystemTools::MakeDirectory(outputDirectory);
typedef signed short OutputPixelType;
const unsigned int OutputDimension = 2;
typedef itk::Image<OutputPixelType, OutputDimension> Image2DType;
typedef itk::ImageSeriesWriter<ImageType, Image2DType> SeriesWriterType;
OutNamesGeneratorType::Pointer namesGeneratorOut = OutNamesGeneratorType::New();
//Copy image dictionary from reference
ReaderRefType::DictionaryRawPointer inputDict = (*(readerRef->GetMetaDataDictionaryArray()))[0];
ReaderRefType::DictionaryArrayType outputArray;
gdcm::UIDGenerator suid;
std::string seriesUID = suid.Generate();
gdcm::UIDGenerator fuid;
//std::string frameOfReferenceUID = fuid.Generate();
std::string studyUID;
std::string sopClassUID;
itk::ExposeMetaData<std::string>(*inputDict, "0020|000d", studyUID);
itk::ExposeMetaData<std::string>(*inputDict, "0008|0016", sopClassUID);
gdcmIO->KeepOriginalUIDOn();
for (unsigned int f = 0; f < size[2]; f++) {
// Create a new dictionary for this slice
ReaderRefType::DictionaryRawPointer dict = new ReaderRefType::DictionaryType;
// Copy the dictionary from the first slice
CopyDictionary(*inputDict, *dict);
// Set the UID's for the study, series, SOP and frame of reference
itk::EncapsulateMetaData<std::string>(*dict, "0020|000d", studyUID);
itk::EncapsulateMetaData<std::string>(*dict, "0020|000e", seriesUID);
//itk::EncapsulateMetaData<std::string>(*dict,"0020|0052", frameOfReferenceUID);
gdcm::UIDGenerator sopuid;
std::string sopInstanceUID = sopuid.Generate();
itk::EncapsulateMetaData<std::string>(*dict, "0008|0018", sopInstanceUID);
itk::EncapsulateMetaData<std::string>(*dict, "0002|0003", sopInstanceUID);
itk::EncapsulateMetaData<std::string>(*dict, "0008|0008", "DERIVED\\SECONDARY");
itk::EncapsulateMetaData<std::string>(*dict, "0008|103e", "SEGMENTATION");
std::ostringstream value;
value.str("");
value << f + 1;
itk::EncapsulateMetaData<std::string>(*dict, "0020|0013", value.str());
value.str("");
value << 1001;
itk::EncapsulateMetaData<std::string>(*dict, "0020|0011", value.str());
ImageType::PointType position;
ImageType::IndexType index;
index[0] = 0;
index[1] = 0;
index[2] = f;
readerRef->GetOutput()->TransformIndexToPhysicalPoint(index, position);
value.str("");
value << position[0] << "\\" << position[1] << "\\" << position[2];
itk::EncapsulateMetaData<std::string>(*dict, "0020|0032", value.str());
value.str("");
value << position[2];
itk::EncapsulateMetaData<std::string>(*dict, "0020|1041", value.str());
value.str("");
value << "0";
itk::EncapsulateMetaData<std::string>(*dict, "0028|1052", value.str());
value.str("");
value << "1";
itk::EncapsulateMetaData<std::string>(*dict, "0028|1053", value.str());
outputArray.push_back(dict);
}
//Write output
SeriesWriterType::Pointer seriesWriter = SeriesWriterType::New();
seriesWriter->SetInput(readerIn->GetOutput());
seriesWriter->SetImageIO(gdcmIO);
std::string format = outputDirectory;
format += "/image%03d.dcm";
namesGeneratorOut->SetSeriesFormat(format.c_str());
namesGeneratorOut->SetStartIndex(start[2]);
namesGeneratorOut->SetEndIndex(start[2] + size[2] - 1);
namesGeneratorOut->SetIncrementIndex(1);
seriesWriter->SetFileNames(namesGeneratorOut->GetFileNames());
seriesWriter->SetMetaDataDictionaryArray(&outputArray);
seriesWriter->Update();
return EXIT_SUCCESS;
}
void CopyDictionary(itk::MetaDataDictionary &fromDict, itk::MetaDataDictionary &toDict) {
typedef itk::MetaDataDictionary DictionaryType;
DictionaryType::ConstIterator itr = fromDict.Begin();
DictionaryType::ConstIterator end = fromDict.End();
typedef itk::MetaDataObject<std::string> MetaDataStringType;
while (itr != end) {
itk::MetaDataObjectBase::Pointer entry = itr->second;
MetaDataStringType::Pointer entryvalue = dynamic_cast<MetaDataStringType *>(entry.GetPointer());
if (entryvalue) {
std::string tagkey = itr->first;
std::string tagvalue = entryvalue->GetMetaDataObjectValue();
itk::EncapsulateMetaData<std::string>(toDict, tagkey, tagvalue);
}
++itr;
}
}
#pragma warning(pop)