-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDarkFieldGradientSolverTensor.java
498 lines (381 loc) · 12.2 KB
/
DarkFieldGradientSolverTensor.java
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
// This code was developed in a collaboration with ECAP, Erlangen, Germany.
// This part of the code is not to be published under GPL before Oct 31st 2017.
// author@ Florian Schiffers July 1st, 2015
//
package edu.stanford.rsl.science.darkfield.FlorianDarkField;
import ij.gui.Plot;
import java.io.File;
import edu.stanford.rsl.science.darkfield.FlorianDarkField.DarkFieldErrorMeasures.DarkFieldNormType;
import edu.stanford.rsl.science.darkfield.FlorianDarkField.ParallelDarkFieldBackprojector3DTensor;
import edu.stanford.rsl.science.darkfield.FlorianDarkField.ParallelDarkFieldProjector3DTensor;
import edu.stanford.rsl.science.darkfield.FlorianDarkField.DarkField3DTensorVolume;
import edu.stanford.rsl.science.darkfield.FlorianDarkField.DarkField3DTensorVolume.TensorConstraintType;
import edu.stanford.rsl.conrad.numerics.SimpleMatrix;
import edu.stanford.rsl.conrad.numerics.SimpleVector;
import edu.stanford.rsl.conrad.utils.Configuration;
import edu.stanford.rsl.conrad.utils.VisualizationUtil;
public class DarkFieldGradientSolverTensor extends DarkFieldTensorGeometry {
boolean debug = false;
boolean reconVertical = true;
boolean reconHorizontal = false;
/**
*
*/
boolean writeVtkInEveryStep = true;
/**
*
*/
private DarkField3DSinogram darkFieldSinogram1;
private DarkField3DSinogram darkFieldSinogram2;
/**
* Stepsize for Gradient Descent
*/
private float stepSize;
/**
* Maximum Number of Iterations
*/
private int maxIt;
/**
* Contains error of reconstruction in all steps
*/
SimpleMatrix errorMat;
/**
* Scatter weights used for Tensor reconstruction
*/
private DarkFieldScatterWeightsCalculator scatterWeights1;
private DarkFieldScatterWeightsCalculator scatterWeights2;
/**
* MASKING Images for zero constraint
*/
private DarkField3DTensorVolume maskAMP1;
private DarkField3DTensorVolume maskAMP2;
private ParallelDarkFieldBackprojector3DTensor backProjector1;
private ParallelDarkFieldBackprojector3DTensor backProjector2;
private ParallelDarkFieldProjector3DTensor projector1;
private ParallelDarkFieldProjector3DTensor projector2;
/**
* Volume to reconstructed by Gradient Method
*/
private DarkField3DTensorVolume reconImage;
/**
* @return the reconImage
*/
public DarkField3DTensorVolume getReconImage() {
return reconImage;
}
/**
* @param reconImage the reconImage to set
*/
public void setReconImage(DarkField3DTensorVolume reconImage) {
this.reconImage = reconImage;
}
private File pathToSaveVtk;
private TensorConstraintType tensorConstraint = TensorConstraintType.HARD_CONSTRAINT;
/**
* @return the tensorConstraint
*/
public TensorConstraintType getTensorConstraint() {
return tensorConstraint;
}
/**
* @param tensorConstraint the tensorConstraint to set
*/
public void setTensorConstraint(TensorConstraintType tensorConstraint) {
this.tensorConstraint = tensorConstraint;
}
/**
* @param configuration1
* @param configuration2
* @param darkFieldSinogram1
* @param darkFieldSinogram2
* @param stepSize
* @param maxIt
* @param numScatterVectors
* @param pathToSaveVtk
*/
public DarkFieldGradientSolverTensor(Configuration configuration1,
Configuration configuration2,
DarkField3DSinogram darkFieldSinogram1,
DarkField3DSinogram darkFieldSinogram2, float stepSize, int maxIt,
int numScatterVectors, File pathToSaveVtk,TensorConstraintType type) {
this(configuration1, configuration2, darkFieldSinogram1,
darkFieldSinogram2, stepSize, maxIt, numScatterVectors, pathToSaveVtk, null,
null,type);
}
/**
* @param configuration1
* @param configuration2
* @param darkFieldSinogram1
* @param darkFieldSinogram2
* @param stepSize
* @param maxIt
* @param numScatterVectors
* @param pathToSaveVtk
* @param maskAMP1
* @param maskAMP2
*/
public DarkFieldGradientSolverTensor(Configuration configuration1,
Configuration configuration2,
DarkField3DSinogram darkFieldSinogram1,
DarkField3DSinogram darkFieldSinogram2, float stepSize, int maxIt,
int numScatterVectors, File pathToSaveVtk, DarkField3DTensorVolume maskAMP1,
DarkField3DTensorVolume maskAMP2,TensorConstraintType type) {
// Open super operator of geometry class
super(configuration1, numScatterVectors);
this.numScatterVectors = numScatterVectors;
this.stepSize = stepSize;
this.maxIt = maxIt;
this.darkFieldSinogram1 = darkFieldSinogram1;
this.darkFieldSinogram2 = darkFieldSinogram2;
// this.configuration1 = configuration1;
// this.configuration2 = configuration2;
this.maskAMP1 = maskAMP1;
this.maskAMP2 = maskAMP2;
this.pathToSaveVtk = pathToSaveVtk;
/*
* If the darkFieldSinograms are null (i.e. they don't exist)
* do not reconstruct
*/
if(darkFieldSinogram1==null){
reconVertical = false;
}else{
reconVertical = true;
}
if(darkFieldSinogram2==null){
reconHorizontal = false;
}else{
reconHorizontal = true;
}
/*
* Create instances of both scatter coef classes
* One for each direction
*/
scatterWeights1 = new DarkFieldScatterWeightsCalculator(configuration1,
numScatterVectors);
scatterWeights2 = new DarkFieldScatterWeightsCalculator(configuration2,
numScatterVectors);
/*
* Create instances of the BackProjector
*/
backProjector1 = new ParallelDarkFieldBackprojector3DTensor(
configuration1, scatterWeights1);
backProjector2 = new ParallelDarkFieldBackprojector3DTensor(
configuration2, scatterWeights2);
/*
* Create instances of the projectors
*/
projector1 = new ParallelDarkFieldProjector3DTensor(configuration1,
scatterWeights1);
projector2 = new ParallelDarkFieldProjector3DTensor(configuration2,
scatterWeights2);
setTensorConstraint(type);
errorMat = new SimpleMatrix(maxIt,2);
}
/**
* Gradient 3D implements the gradient decent algorithm described in book of
* "zeng"
*
* @return reconstructed DarkField Tensor volume
*/
public DarkField3DTensorVolume Gradient3D(boolean writeVtkInEveryStep) {
debug = true;
// Initialize to be constructed volume
reconImage = new DarkField3DTensorVolume(imgSizeX, imgSizeY, imgSizeZ,
numScatterVectors, getSpacing(), getOrigin());
reconImage.show("Current Iteration of Reconstructed Volume");
//reconImage.showComponents();
System.out
.println("--------------------------------------------------------"
+ maxIt);
System.out
.println("Start Gradient Decent Algorithm. Number of maximum iteration is: "
+ maxIt);
System.out
.println("--------------------------------------------------------"
+ maxIt);
System.out.println("Stepsize: " + stepSize);
/*
* Iterate over all iterations
* and perform on gradient step in each iteration
*/
for (int it = 0; it < maxIt; it++) {
long startTime = System.currentTimeMillis();
System.out
.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
System.out.println("Current Iteration: " + it);
/**
* GRADIENT STEP FOR BOTH TRAJECTORIES
* AT ITERATION IT
*/
doGradientStep(it);
/**
* CONSTRAINT ENFORCEMENT
*/
reconImage.enforceConstraint(tensorConstraint);
if(writeVtkInEveryStep){
System.out.println("Write Reconstruction Result at iteration = " +it);
String myName = "ReconstructedVolumeIter_"+it;
reconImage.saveFiberOrientations(pathToSaveVtk, myName);
}
long endTime = System.currentTimeMillis();
long deltaT = endTime - startTime;
System.out.println("Gradient step completed in " + deltaT
+ "ms, It: " + it);
}
plotError(this.errorMat, this.maxIt);
DarkFieldErrorMeasures.writeErrorToTxt(pathToSaveVtk, "error.txt", errorMat);
// Return the reconstruction result
return reconImage;
}
/**
* Perform one step of the gradient.
* Deals with both trajectories.
* Reconstructed of each trajectory is handled in a submethod.
*/
private void doGradientStep(int it) {
System.out
.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
System.out.println("Current Iteration: " + it);
/*
* Gradient Decent
* 1. Calculate difference between Measurement and reconstruction by projection
* 2. Backproject this difference onto the reconstruction (volume)
* 3. Add this backprojected volume on top of your current reconstruction
*/
double error = 0;
if(reconVertical){
double val =reconstructionTrajectory(TrajectoryType.VERTICAL,it);
error = error + val;
}
if(reconHorizontal){
double val = reconstructionTrajectory(TrajectoryType.HORIZONTAL,it);
error = error + val;
}
errorMat.setRowValue(it, new SimpleVector(it,error));
//plotError(errorMat, it+1);
System.out.println("Error (Difference of Sinograms): " + error);
}
/**
*/
private void plotError(SimpleMatrix errorMatrix, int it){
double[] data = errorMat.getCol(1).getSubVec(0, it ).copyAsDoubleArray();
Plot myErrorPlot = VisualizationUtil.createPlot(data, "Error of Sinograms", "Iteration", "Error");
myErrorPlot.show();
}
/**
* @param type
* @return
*/
private ParallelDarkFieldBackprojector3DTensor getBackProjector(TrajectoryType type){
if(type == TrajectoryType.VERTICAL ){
return backProjector1;
} else if(type == TrajectoryType.HORIZONTAL ){
return backProjector2;
} else{
return null;
}
}
/**
* @param type
* @return
*/
private ParallelDarkFieldProjector3DTensor getProjector(TrajectoryType type){
if(type == TrajectoryType.VERTICAL ){
return projector1;
} else if(type == TrajectoryType.HORIZONTAL ){
return projector2;
} else{
return null;
}
}
/**
* @param type
* @return
*/
private DarkField3DTensorVolume getMask(TrajectoryType type){
if(type == TrajectoryType.VERTICAL ){
return maskAMP1;
} else if(type == TrajectoryType.HORIZONTAL ){
return maskAMP2;
} else{
return null;
}
}
/**
* @param type
* @return
*/
private DarkField3DSinogram getSinogram(TrajectoryType type){
if(type == TrajectoryType.VERTICAL ){
return darkFieldSinogram1;
} else if(type == TrajectoryType.HORIZONTAL ){
return darkFieldSinogram2;
} else{
return null;
}
}
/**
* Reconstruction of one trajectory in Gradient Step
* @param darkFieldSinogram
* @param projector
* @param backprojector
* @param iteration
*/
private double reconstructionTrajectory(TrajectoryType type,
int iteration){
ParallelDarkFieldBackprojector3DTensor backProjector = getBackProjector(type);
ParallelDarkFieldProjector3DTensor projector = getProjector(type);
DarkField3DSinogram darkFieldSinogram = getSinogram(type);
/*
* Calculate DarkFieldProjection of current reconstruction state
* First iteration handled differently, as projection signal (sinogram)
* of a 0-Volume is 0 anyway
*/
DarkField3DSinogram projectionSinogram;
if(iteration == 0){
projectionSinogram = new DarkField3DSinogram(maxU_index,
maxV_index, maxTheta_index);
} else{
projectionSinogram = projector.projectPixelDriven(reconImage,getMask(type));
}
/*
* Calculate difference between observed darkFieldSignal and reconstruction
*/
DarkField3DSinogram differenceSinogram =
DarkField3DSinogram.sub(projectionSinogram,darkFieldSinogram);
/*
* Backprojection of the projection difference between observation and reconstruction
*/
DarkField3DTensorVolume diffVolume = backProjector
.backprojectPixelDriven(differenceSinogram,getMask(type));
/*
* Multiply diffVolume with stepSize of Gradient
*/
diffVolume.multiply(calcStepSize(stepSize, iteration));
/*
* Mask the Image with the volume.
* MaskWithVolume handles null data
*/
//diffVolume.maskWithVolume(getMask(type));
reconImage.sub(diffVolume);
/*
* Calculate error between observed and reconstruction sinograms
*/
double error = DarkFieldErrorMeasures.errorSinogam(differenceSinogram,darkFieldSinogram.norm2(),DarkFieldNormType.NORM_L2);
return error;
}
/**
* Calculates stepSize dependent on initial value and current iteration
* @param alpha
* @param it
*/
private float calcStepSize(float stepSize, int it) {
//return stepSize;
int itTh = 4;
if(it < itTh){
return stepSize;
} else {
return (float)( Math.pow(0.96, it)*stepSize);
}
}
}