File: BrainModelVolumeTopologyGraphCorrector.cxx

package info (click to toggle)
caret 5.6.4~dfsg.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 31,904 kB
  • ctags: 28,901
  • sloc: cpp: 378,050; python: 6,718; ansic: 5,507; makefile: 333; sh: 46
file content (441 lines) | stat: -rw-r--r-- 17,421 bytes parent folder | download | duplicates (2)
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441

/*LICENSE_START*/
/*
 *  Copyright 1995-2002 Washington University School of Medicine
 *
 *  http://brainmap.wustl.edu
 *
 *  This file is part of CARET.
 *
 *  CARET is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  CARET is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with CARET; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */
/*LICENSE_END*/

#include <iostream>
#include <limits>

#include "BrainModelVolumeTopologyGraph.h"
#include "BrainModelVolumeTopologyGraphCorrector.h"
#include "VolumeFile.h"

/**
 * constructor.
 */
BrainModelVolumeTopologyGraphCorrector::BrainModelVolumeTopologyGraphCorrector(
                                       BrainSet* bsIn,
                                       const CORRECTION_MODE correctionModeIn,
                                       const VolumeFile* segmentationVolumeFileIn)
 : BrainModelAlgorithm(bsIn),
   correctionMode(correctionModeIn),
   segmentationVolumeFile(segmentationVolumeFileIn)
{
   correctedSegmentationVolumeFile = NULL;
   showingCorrectionsPaintVolumeFile = NULL;
   numberOfVoxelsChanged = 0;
}
                                       
/**
 * destructor.
 */
BrainModelVolumeTopologyGraphCorrector::~BrainModelVolumeTopologyGraphCorrector()
{
   if (correctedSegmentationVolumeFile != NULL) {
      delete correctedSegmentationVolumeFile;
      correctedSegmentationVolumeFile = NULL;
   }
   if (showingCorrectionsPaintVolumeFile != NULL) {
      delete showingCorrectionsPaintVolumeFile;
      showingCorrectionsPaintVolumeFile = NULL;
   }
}

/**
 * execute the algorithm.
 */
void 
BrainModelVolumeTopologyGraphCorrector::execute() throw (BrainModelAlgorithmException)
{
   if (segmentationVolumeFile == NULL) {
      throw BrainModelAlgorithmException("Input segmentation volume is invalid.");
   }
   
   //
   // Copy the input volume
   //
   correctedSegmentationVolumeFile = new VolumeFile(*segmentationVolumeFile);
   correctedSegmentationVolumeFile->makeSegmentationZeroTwoFiftyFive();
   
   //
   // Copy of volume before correction
   //
   const VolumeFile uncorrectedVolumeFile(*correctedSegmentationVolumeFile);
   
   //
   // Create paint volume showing corrections
   //
   showingCorrectionsPaintVolumeFile = new VolumeFile(*segmentationVolumeFile);
   showingCorrectionsPaintVolumeFile->setVolumeType(VolumeFile::VOLUME_TYPE_PAINT);
   const int nonePaintIndex = showingCorrectionsPaintVolumeFile->addRegionName("???");
   showingCorrectionsPaintVolumeFile->setAllVoxels(nonePaintIndex);
   paintVoxelAddedIndex = showingCorrectionsPaintVolumeFile->addRegionName("ADDED"); 
   paintVoxelRemovedIndex = showingCorrectionsPaintVolumeFile->addRegionName("REMOVED"); 

   //
   // Try each connectivity
   //
   for (int conn = 0; conn < 6; conn++) {
      std::cout << "Conn: " << conn << std::endl;
      //
      // Connectivity used for generating graphs
      //
      BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY
         foregroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_26;
      switch (conn) {
         case 0:
         case 3:
            foregroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_26;
            break;
         case 1:
         case 4:
            foregroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_18;
            break;
         case 2:
         case 5:
            foregroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_6;
            break;
      }
      
      BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY
         backgroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_26;
      switch (foregroundVoxelConnectivity) {
         case BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_6:
            backgroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_18;
            break;
         case BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_18:
            backgroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_6;
            break;
         case BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_26:
            backgroundVoxelConnectivity = BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY_6;
            break;
      }
      
      //
      // Do until done
      //
      VolumeFile backgroundVolumeFile;
      bool needToGenerateBackgroundVolumeFlag = true;
      //int ctr = 0;
      bool done = false;
      while (done == false) {
         //ctr++;
         //if (((ctr % 5) == 0) && (ctr > 0)) {
         //   const QString name("graph_corrected_"
         //                      + QString::number(ctr)
         //                      + ".nii.gz");
         //   correctedSegmentationVolumeFile->writeFile(name);
         //}
         
         //
         // Create background volume
         //
         if (needToGenerateBackgroundVolumeFlag) {
            backgroundVolumeFile = (*correctedSegmentationVolumeFile);
            backgroundVolumeFile.invertSegmentationVoxels();
         }
         
         //
         // Compute foreground and background graphs for each axis
         // 0-2 are foreground, 3-5 are background
         //
         const int numGraphs = 6;
         BrainModelVolumeTopologyGraph* graphs[numGraphs];
         createForegroundAndBackgroundGraphs(correctedSegmentationVolumeFile,
                                             &backgroundVolumeFile,
                                             foregroundVoxelConnectivity,
                                             backgroundVoxelConnectivity,
                                             graphs);
         
         //
         // Loop through graphs and find smallest handle
         //
         int fewestVoxelsGraphGraphIndex = -1;
         int fewestVoxelsCycleIndex = -1;
         int fewestVoxelsNumberOfVoxels = std::numeric_limits<int>::max();
         std::vector<BrainModelVolumeTopologyGraph::GraphVertex*> fewestVoxelVertices;
         
         switch (correctionMode) {
            case CORRECTION_MODE_MINIMAL:
               {
                  int fewestVoxelsVertexIndex = -1;
                  for (int i = 0; i < 6; i++) {
                     int cycleIndex;
                     int vertexIndex;
                     int numberOfVoxels;
                     graphs[i]->getGraphCycleWithSmallestVertex(cycleIndex, 
                                                                 vertexIndex,
                                                                 numberOfVoxels);
                     if (cycleIndex >= 0) {
                        if (numberOfVoxels <= fewestVoxelsNumberOfVoxels) {
                           fewestVoxelsNumberOfVoxels = numberOfVoxels;
                           fewestVoxelsCycleIndex = cycleIndex;
                           fewestVoxelsVertexIndex = vertexIndex;
                           fewestVoxelsGraphGraphIndex = i;
                        }
                     }
                  }
                  if (fewestVoxelsVertexIndex >= 0) {
                     fewestVoxelVertices.push_back(
                        graphs[fewestVoxelsGraphGraphIndex]->getGraphVertex(fewestVoxelsVertexIndex));
                  }
               }
               break;
            case CORRECTION_MODE_NORMAL:
               {
                  std::vector<int> fewestVertexIndices;
                  for (int i = 0; i < 6; i++) {
                     int cycleIndex;
                     int numberOfVoxels;
                     std::vector<int> vertexIndices;
                     graphs[i]->getGraphCycleWithSmallestHandle(cycleIndex,
                                                                vertexIndices,
                                                                numberOfVoxels);
                  
                     if (cycleIndex >= 0) {
                        if (numberOfVoxels <= fewestVoxelsNumberOfVoxels) {
                           fewestVoxelsNumberOfVoxels = numberOfVoxels;
                           fewestVoxelsCycleIndex = cycleIndex;
                           fewestVertexIndices = vertexIndices;
                           fewestVoxelsGraphGraphIndex = i;
                        }
                     }
                  }
                  
                  if (fewestVoxelsGraphGraphIndex >= 0) {
                     const int num = static_cast<int>(fewestVertexIndices.size());
                     for (int m = 0; m < num; m++) {
                        fewestVoxelVertices.push_back(
                           graphs[fewestVoxelsGraphGraphIndex]->getGraphVertex(fewestVertexIndices[m]));
                     }
                  }
               }
               break;
         }
         
         if (fewestVoxelsGraphGraphIndex >= 0) {
            const BrainModelVolumeTopologyGraph::GraphCycle* 
               cycle = graphs[fewestVoxelsGraphGraphIndex]->getGraphCycle(fewestVoxelsCycleIndex);
             if ((fewestVoxelsGraphGraphIndex >= 0) &&
                (fewestVoxelsGraphGraphIndex <= 2)) {
               //
               // If smallest handle is in foreground so
               // remove voxels from volume
               //
               addRemoveVoxels(correctedSegmentationVolumeFile,
                               &backgroundVolumeFile,
                               graphs[fewestVoxelsGraphGraphIndex],
                               cycle,
                               fewestVoxelVertices,
                               false);
            }
            else if ((fewestVoxelsGraphGraphIndex >= 3) &&
                     (fewestVoxelsGraphGraphIndex <= 5)) {
               //
               // Smallest handle in background so use
               // it to fill in the foreground
               //
               addRemoveVoxels(correctedSegmentationVolumeFile,
                               &backgroundVolumeFile,
                               graphs[fewestVoxelsGraphGraphIndex],
                               cycle,
                               fewestVoxelVertices,
                               true);
            }
            
            //
            // Remove any islands DO NOT FILL CAVITIES HERE
            //
            needToGenerateBackgroundVolumeFlag = 
               correctedSegmentationVolumeFile->removeIslandsFromSegmentation();
            if (needToGenerateBackgroundVolumeFlag) {
               std::cout << "Volume Topology Graph islands removed." << std::endl;
            }
         }
         else {
            //
            // No handles, so done
            //
            done = true;
         }
         
         //
         // Free the graphs
         //
         for (int i = 0; i < numGraphs; i++) {
            delete graphs[i];
            graphs[i] = NULL;
         }
      }
   }
   
   //
   // Fill any cavities that may be present
   //
   correctedSegmentationVolumeFile->fillSegmentationCavities();
   
   //
   // Count the number of voxels changed
   //
   int dimI, dimJ, dimK;
   uncorrectedVolumeFile.getDimensions(dimI, dimJ, dimK);
   for (int i = 0; i < dimI; i++) {
      for (int j = 0; j < dimJ; j++) {
         for (int k = 0; k < dimK; k++) {
            if (uncorrectedVolumeFile.getVoxel(i, j, k, 0) 
                != correctedSegmentationVolumeFile->getVoxel(i, j, k, 0)) {
               numberOfVoxelsChanged++;
            }
         }
      }
   }
   
   correctedSegmentationVolumeFile->makeDefaultFileName("Segment_GraphErrorCorrected");
   correctedSegmentationVolumeFile->setDescriptiveLabel("Segment_GraphErrorCorrected");
}

/**
 * add or remove voxels to/from a volume.
 */
void 
BrainModelVolumeTopologyGraphCorrector::addRemoveVoxels(
                        VolumeFile* foregroundVolumeFile,
                        VolumeFile* backgroundVolumeFile,
                        const BrainModelVolumeTopologyGraph* graph,
                        const BrainModelVolumeTopologyGraph::GraphCycle* cycle,
                        const std::vector<BrainModelVolumeTopologyGraph::GraphVertex*> vertices,
                        const bool addVoxelsFlag)
{
   std::cout << QString(70, '-').toAscii().constData() << std::endl;
   QString addRemoveString("Removing ");
   int newForegroundVoxelValue = 0;
   int newBackgroundVoxelValue = 255;
   int paintVolumeVoxelIndex = paintVoxelRemovedIndex;
   if (addVoxelsFlag) {
      newForegroundVoxelValue = 255;
      newBackgroundVoxelValue = 0;
      addRemoveString = "Adding ";
      paintVolumeVoxelIndex = paintVoxelAddedIndex;
   }
   
   QString axisText("Unknown");
   switch (graph->getSearchAxis()) {
      case BrainModelVolumeTopologyGraph::SEARCH_AXIS_X:
         axisText = "X-Axis";
         break;
      case BrainModelVolumeTopologyGraph::SEARCH_AXIS_Y:
         axisText = "Y-Axis";
         break;
      case BrainModelVolumeTopologyGraph::SEARCH_AXIS_Z:
         axisText = "Z-Axis";
         break;
   }
   
   const int numVertices = static_cast<int>(vertices.size());
   std::vector<VoxelIJK> voxels;
   for (int i = 0; i < numVertices; i++) {
      const int numVoxelsInVertex = vertices[i]->getNumberOfVoxels();
      for (int j = 0; j < numVoxelsInVertex; j++) {
         voxels.push_back(*vertices[i]->getVoxel(j));
      }
   }
      
   const int numVoxels = static_cast<int>(voxels.size());
   
   std::cout << addRemoveString.toAscii().constData()
             << numVoxels
             << " voxels using vertices in slice ";
   for (int n = 0; n < numVertices; n++) {
      std::cout << vertices[n]->getSliceNumber() << " ";
   }
   std::cout << " along "
             << axisText.toAscii().constData()
             << std::endl;
   
   std::cout << "   from cycle: ";
   const int numGraphVerticesInCycle = cycle->getNumberOfGraphVerticesInCycle();
   for (int j = 0; j < numGraphVerticesInCycle; j++) {
      const int graphVertexIndex = cycle->getGraphVertexIndex(j);
      const BrainModelVolumeTopologyGraph::GraphVertex* vertex = graph->getGraphVertex(graphVertexIndex);
      std::cout << vertex->getSliceNumber() 
                << "(" << vertex->getNumberOfVoxels() << ") ";
   }
   std::cout << std::endl;
   
   for (int i = 0; i < numVoxels; i++) {
      foregroundVolumeFile->setVoxel(voxels[i], 0, newForegroundVoxelValue);
      backgroundVolumeFile->setVoxel(voxels[i], 0, newBackgroundVoxelValue);
      showingCorrectionsPaintVolumeFile->setVoxel(voxels[i], 0,
                                                  paintVolumeVoxelIndex);
   }
}

/**
 * create the foreground and background graphs.
 */
void 
BrainModelVolumeTopologyGraphCorrector::createForegroundAndBackgroundGraphs(
           const VolumeFile* foregroundVolumeFile,
           const VolumeFile* backgroundVolumeFile,
           const BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY foregroundVoxelConnectivity,
           const BrainModelVolumeTopologyGraph::VOXEL_NEIGHBOR_CONNECTIVITY backgroundVoxelConnectivity,
           BrainModelVolumeTopologyGraph* graphsOut[6]) const
                            throw (BrainModelAlgorithmException)
{
   //
   // Foreground graphs
   //
   graphsOut[0] = new BrainModelVolumeTopologyGraph(brainSet,
                               foregroundVolumeFile,
                               BrainModelVolumeTopologyGraph::SEARCH_AXIS_X,
                               foregroundVoxelConnectivity);
   graphsOut[1] = new BrainModelVolumeTopologyGraph(brainSet,
                               foregroundVolumeFile,
                               BrainModelVolumeTopologyGraph::SEARCH_AXIS_Y,
                               foregroundVoxelConnectivity);
   graphsOut[2] = new BrainModelVolumeTopologyGraph(brainSet,
                               foregroundVolumeFile,
                               BrainModelVolumeTopologyGraph::SEARCH_AXIS_Z,
                               foregroundVoxelConnectivity);
   
   //
   // Background (inverted segmentation) graphs
   //
   graphsOut[3] = new BrainModelVolumeTopologyGraph(brainSet,
                               backgroundVolumeFile,
                               BrainModelVolumeTopologyGraph::SEARCH_AXIS_X,
                               backgroundVoxelConnectivity);
   graphsOut[4] = new BrainModelVolumeTopologyGraph(brainSet,
                               backgroundVolumeFile,
                               BrainModelVolumeTopologyGraph::SEARCH_AXIS_Y,
                               backgroundVoxelConnectivity);
   graphsOut[5] = new BrainModelVolumeTopologyGraph(brainSet,
                               backgroundVolumeFile,
                               BrainModelVolumeTopologyGraph::SEARCH_AXIS_Z,
                               backgroundVoxelConnectivity);
                               
   for (int i = 0; i < 6; i++) {
      graphsOut[i]->execute();
   }
}