-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsurfacereconstruction.cpp
280 lines (221 loc) · 7.12 KB
/
surfacereconstruction.cpp
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
/**
* @file surfacereconstruction.cpp
* @brief Simple surface reconstruction algorithm for a series of DICOM images
* using vtk + gdcm libraries
*
* Implementation of the surface reconstruction algorithm. Check the comments
* before use the code!
*
* @author Noelia Barreira ([email protected])
*/
#include "surfacereconstruction.h"
#include <iostream>
#include <iterator>
#include <vtkSmartPointer.h>
#include <vtkRenderWindow.h>
#include <vtkRenderer.h>
#include <vtkActor.h>
#include <vtkDICOMImageReader.h>
#include <vtkMarchingCubes.h>
#include <vtkPolyDataMapper.h>
#include <vtkImageThreshold.h>
#include <vtkImageGaussianSmooth.h>
#include <vtkImageDilateErode3D.h>
#include <vtkGDCMImageReader.h>
#include <vtkStringArray.h>
#include <vtkDirectory.h>
#include <vtkImageChangeInformation.h>
#include <vtksys/SystemTools.hxx>
#include <gdcmIPPSorter.h>
#include <gdcmFilename.h>
#include <gdcmSystem.h>
#include <gdcmDirectory.h>
#include <gdcmDataSet.h>
#include <gdcmAttribute.h>
#include <gdcmDirectoryHelper.h>
#define DEBUG 1
SurfaceReconstruction::SurfaceReconstruction()
{
thresholdValue = 1000;
gaussianSize = 3;
gaussianStd = 1;
morphologicalSize = 3;
computed = 0;
input = NULL;
surface = NULL;
}
SurfaceReconstruction::~SurfaceReconstruction()
{
surface = NULL; // Decrement the reference counter of vtkSmartPointers
input = NULL;
}
inline bool sortByInstanceNumber(gdcm::DataSet const & ds1, gdcm::DataSet const & ds2 )
{
gdcm::Attribute<0x0020,0x0013> at1;
at1.Set( ds1 );
gdcm::Attribute<0x0020,0x0013> at2;
at2.Set( ds2 );
return at1 < at2;
}
int SurfaceReconstruction::ReadDICOMSeries(std::string dir){
gdcm::Directory d;
d.Load(dir);
const gdcm::Directory::FilenamesType filenames = d.GetFilenames();
gdcm::Directory::FilenamesType dcmfilenames;
// Filter filenames
gdcm::Directory::FilenamesType::const_iterator it;
for (it = filenames.begin(); it != filenames.end(); ++it) {
std::string filename = *it;
if (filename.find(".dcm") != filename.npos) {
dcmfilenames.insert(dcmfilenames.end(), filename);
}
}
if (dcmfilenames.size() > 1) {
// Since images are not loaded from directory in any specific order,
// images are sorted by "Instance Number" DICOM attribute.
// You can also consider other sorting attributes, for example,
// the Image Position with respect to the patient. In this case,
// use a gdcm::IPPSorter
gdcm::Sorter sorter;
sorter.SetSortFunction(sortByInstanceNumber);
sorter.Sort(dcmfilenames);
gdcm::Directory::FilenamesType fn;
fn.assign(sorter.GetFilenames().begin(), sorter.GetFilenames().end());
#ifdef DEBUG
d.Print();
sorter.Print(std::cout);
#endif
vtkSmartPointer<vtkStringArray> sarray = vtkSmartPointer<vtkStringArray>::New();
for(it = fn.begin(); it != fn. end(); ++it) {
const char *filename = it->c_str();
sarray->InsertNextValue(filename);
}
vtkSmartPointer<vtkGDCMImageReader> gdcmReader = vtkSmartPointer<vtkGDCMImageReader>::New();
gdcmReader->SetFileNames(sarray);
gdcmReader->Update();
#ifdef DEBUG
std::cout << "image pos= " << gdcmReader->GetImagePositionPatient()[0] << " - "
<< gdcmReader->GetImagePositionPatient()[1] << " - "
<< gdcmReader->GetImagePositionPatient()[2] << std::endl;
std::cout << "dicom size = " << gdcmReader->GetDataSpacing()[0] << " - "
<< gdcmReader->GetDataSpacing()[1] << " - "
<< gdcmReader->GetDataSpacing()[2] << std::endl;
#endif
// In my images, z-spacing is not correctly set in DICOM
// so I set z-spacing = x-spacing. I am assuming that voxels are
// regular cubes. Comment or modify these lines in order to adapt
// the code to your needs.
double *spacing = gdcmReader->GetDataSpacing();
input = vtkSmartPointer<vtkImageChangeInformation>::New();
input->SetInputConnection(gdcmReader->GetOutputPort());
input->SetOutputSpacing(spacing[0], spacing[1], spacing[0]);
input->Update();
}
computed = 0;
return dcmfilenames.size();
}
void SurfaceReconstruction::Update(){
if (input) {
vtkSmartPointer <vtkImageGaussianSmooth> gaussian =
vtkSmartPointer<vtkImageGaussianSmooth>::New();
#ifdef DEBUG
std::cout << "Gaussian Smoothing ... ";
#endif
gaussian->SetInputConnection(input->GetOutputPort());
gaussian->SetRadiusFactor(gaussianSize);
gaussian->SetStandardDeviation(gaussianStd);
gaussian->Update();
#ifdef DEBUG
std::cout << "done" << std::endl;
#endif
vtkSmartPointer <vtkImageThreshold> threshold =
vtkSmartPointer<vtkImageThreshold>::New();
#ifdef DEBUG
std::cout << "Thresholding ... ";
#endif
threshold->ThresholdByUpper(thresholdValue);
threshold->SetInputConnection(gaussian->GetOutputPort());
threshold->SetInValue(1);
threshold->SetOutValue(0);
threshold->ReplaceInOn();
threshold->Update();
#ifdef DEBUG
std::cout << "done" << std::endl;
#endif
vtkSmartPointer<vtkImageDilateErode3D> morphology =
vtkSmartPointer<vtkImageDilateErode3D>::New();
#ifdef DEBUG
std::cout << "Morphological filtering ... ";
#endif
morphology->SetInputConnection(threshold->GetOutputPort());
morphology->SetDilateValue(1);
morphology->SetErodeValue(0);
morphology->SetKernelSize(morphologicalSize,morphologicalSize,morphologicalSize);
morphology->Update();
#ifdef DEBUG
std::cout << "done" << std::endl;
#endif
#ifdef DEBUG
std::cout << "Marching cubes ... ";
#endif
surface = vtkSmartPointer<vtkMarchingCubes>::New();
surface->SetInputConnection(morphology->GetOutputPort());
surface->ComputeNormalsOn();
surface->SetValue(0, 1);
surface->Update();
#ifdef DEBUG
std::cout << "done. " << std::endl;
std::cout << surface->GetOutput()->GetNumberOfCells() << " cells generated." << std::endl;
#endif
computed = 1;
}
}
void SurfaceReconstruction::Show(vtkSmartPointer<vtkRenderWindow> renderWindow){
vtkSmartPointer<vtkRenderer> renderer =
vtkSmartPointer<vtkRenderer>::New();
renderer->SetBackground(.1, .2, .3);
renderWindow->AddRenderer(renderer);
vtkSmartPointer<vtkActor> actor =
vtkSmartPointer<vtkActor>::New();
if (computed) {
vtkSmartPointer<vtkPolyDataMapper> mapper =
vtkSmartPointer<vtkPolyDataMapper>::New();
mapper->SetInputConnection(surface->GetOutputPort());
mapper->ScalarVisibilityOff();
actor->SetMapper(mapper);
}
renderer->AddActor(actor);
renderWindow->Render();
}
double SurfaceReconstruction::getThreshold() const
{
return thresholdValue;
}
void SurfaceReconstruction::setThreshold(double value)
{
thresholdValue = value;
}
double SurfaceReconstruction::getGaussianSize() const
{
return gaussianSize;
}
void SurfaceReconstruction::setGaussianSize(double value)
{
gaussianSize = value;
}
double SurfaceReconstruction::getGaussianStd() const
{
return gaussianStd;
}
void SurfaceReconstruction::setGaussianStd(double value)
{
gaussianStd = value;
}
double SurfaceReconstruction::getMorphologicalSize() const
{
return morphologicalSize;
}
void SurfaceReconstruction::setMorphologicalSize(double value)
{
morphologicalSize = value;
}