-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathImageCommands.cpp
1384 lines (1138 loc) · 51.3 KB
/
ImageCommands.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
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "Commands.h"
#include "Image.h"
#include "ImageUtils.h"
namespace shapeworks {
///////////////////////////////////////////////////////////////////////////////
// ReadImage
///////////////////////////////////////////////////////////////////////////////
void ReadImage::buildParser()
{
const std::string prog = "read-image";
const std::string desc = "reads an image";
parser.prog(prog).description(desc);
parser.add_option("--name").action("store").type("string").set_default("").help("Name of file to read.");
Command::buildParser();
}
bool ReadImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
std::string filename = options["name"];
if (filename.length() == 0) {
std::cerr << "readimage error: no filename specified, must pass `--name <filename>`\n";
return false;
}
try {
sharedData.image = Image(filename);
return true;
} catch(std::exception &e) {
std::cerr << "exception while reading " << filename << ": " << e.what() << std::endl;
return false;
} catch(...) {
std::cerr << "unknown exception while reading " << filename << std::endl;
return false;
}
}
///////////////////////////////////////////////////////////////////////////////
// WriteImage
///////////////////////////////////////////////////////////////////////////////
void WriteImage::buildParser()
{
const std::string prog = "write-image";
const std::string desc = "writes the current image (determines type by its extension)";
parser.prog(prog).description(desc);
parser.add_option("--name").action("store").type("string").set_default("").help("Name of file to write.");
parser.add_option("--compressed").action("store").type("bool").set_default(true).help("Whether to compress file [default: true].");
Command::buildParser();
}
bool WriteImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
std::string filename = options["name"];
if (filename.length() == 0) {
std::cerr << "writeimage error: no filename specified, must pass `--name <filename>`\n";
return false;
}
bool compressed = static_cast<bool>(options.get("compressed"));
sharedData.image.write(filename, compressed);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ImageInfo
///////////////////////////////////////////////////////////////////////////////
void ImageInfo::buildParser()
{
const std::string prog = "image-info";
const std::string desc = "prints requested image dimensions, spacing, size, origin, direction (coordinate system), center, center of mass and bounding box [default: prints everything]";
parser.prog(prog).description(desc);
parser.add_option("--dims").action("store_true").set_default(false).help("Whether to display image dimensions [default: true].");
parser.add_option("--spacing").action("store_true").set_default(false).help("Whether to display physical spacing [default: true].");
parser.add_option("--size").action("store_true").set_default(false).help("Whether to display size [default: true].");
parser.add_option("--origin").action("store_true").set_default(false).help("Whether to display physical origin [default: true].");
parser.add_option("--direction").action("store_true").set_default(false).help("Whether to display direction [default: true].");
parser.add_option("--center").action("store_true").set_default(false).help("Whether to display center. [default: true]");
parser.add_option("--centerofmass").action("store_true").set_default(false).help("Whether to display center of mass. [default: true]");
parser.add_option("--boundingbox").action("store_true").set_default(false).help("Whether to display bounding box. [default: true]");
Command::buildParser();
}
bool ImageInfo::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
bool dims = static_cast<bool>(options.get("dims"));
bool spacing = static_cast<bool>(options.get("spacing"));
bool size = static_cast<bool>(options.get("size"));
bool origin = static_cast<bool>(options.get("origin"));
bool direction = static_cast<bool>(options.get("direction"));
bool center = static_cast<bool>(options.get("center"));
bool centerOfMass = static_cast<bool>(options.get("centerofmass"));
bool boundingBox = static_cast<bool>(options.get("boundingbox"));
// by default: print everything
if (options.num_set() == 0)
dims = spacing = size = origin = direction = center = centerOfMass = boundingBox = true;
if (dims)
std::cout << "image dimensions: " << sharedData.image.dims() << std::endl;
if (spacing)
std::cout << "physical spacing: " << sharedData.image.spacing() << std::endl;
if (size)
std::cout << "size (spacing * dims): " << sharedData.image.size() << std::endl;
if (origin)
std::cout << "physical origin: " << sharedData.image.origin() << std::endl;
if (center)
std::cout << "center: " << sharedData.image.center() << std::endl;
if (centerOfMass)
std::cout << "center of mass (0,1]: " << sharedData.image.centerOfMass() << std::endl;
if (boundingBox)
std::cout << "physical bounding box: " << sharedData.image.physicalBoundingBox() << std::endl;
if (boundingBox)
std::cout << "logical bounding box: " << sharedData.image.logicalBoundingBox() << std::endl;
if (direction)
std::cout << "direction (coordsys): " << std::endl
<< sharedData.image.coordsys();
return true;
}
///////////////////////////////////////////////////////////////////////////////
// Antialias
///////////////////////////////////////////////////////////////////////////////
void Antialias::buildParser()
{
const std::string prog = "antialias";
const std::string desc = "antialiases binary volumes";
parser.prog(prog).description(desc);
parser.add_option("--iterations").action("store").type("int").set_default(50).help("Maximum number of iterations [default: %default].");
parser.add_option("--maxrmserror").action("store").type("double").set_default(0.01).help("Maximum RMS error determines how fast the solver converges. Range [0.0, 1.0], larger is faster [default: %default].");
parser.add_option("--layers").action("store").type("int").set_default(3).help("Number of layers around a 3d pixel to use for this computation [default: %default].");
Command::buildParser();
}
bool Antialias::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
int iterations = static_cast<int>(options.get("iterations"));
double maxRMSErr = static_cast<double>(options.get("maxrmserror"));
int layers = static_cast<int>(options.get("layers"));
sharedData.image.antialias(iterations, maxRMSErr, layers);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ResampleImage
///////////////////////////////////////////////////////////////////////////////
void ResampleImage::buildParser()
{
const std::string prog = "resample";
const std::string desc = "resamples an image using new physical spacing (computes new dims)";
parser.prog(prog).description(desc);
parser.add_option("--isospacing").action("store").type("double").set_default(0.0).help("Use this spacing in all dimensions.");
parser.add_option("--spacex").action("store").type("double").set_default(1.0).help("Pixel spacing in x-direction [default: %default].");
parser.add_option("--spacey").action("store").type("double").set_default(1.0).help("Pixel spacing in y-direction [default: %default].");
parser.add_option("--spacez").action("store").type("double").set_default(1.0).help("Pixel spacing in z-direction [default: %default].");
parser.add_option("--sizex").action("store").type("unsigned").set_default(0).help("Output size in x-direction [default: current size].");
parser.add_option("--sizey").action("store").type("unsigned").set_default(0).help("Output size in y-direction [default: current size].");
parser.add_option("--sizez").action("store").type("unsigned").set_default(0).help("Output size in z-direction [default: current size].");
parser.add_option("--originx").action("store").type("double").set_default(std::numeric_limits<float>::max()).help("Output origin in x-direction [default: current origin].");
parser.add_option("--originy").action("store").type("double").set_default(std::numeric_limits<float>::max()).help("Output origin in y-direction [default: current origin].");
parser.add_option("--originz").action("store").type("double").set_default(std::numeric_limits<float>::max()).help("Output origin in z-direction [default: current origin].");
std::list<std::string> interps{"linear", "nearest"};
parser.add_option("--interp").action("store").type("choice").choices(interps.begin(), interps.end()).set_default("linear").help("Interpolation method to use [default: %default].");
Command::buildParser();
}
bool ResampleImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double isoSpacing = static_cast<double>(options.get("isospacing"));
double spaceX = static_cast<double>(options.get("spacex"));
double spaceY = static_cast<double>(options.get("spacey"));
double spaceZ = static_cast<double>(options.get("spacez"));
unsigned sizeX = static_cast<unsigned>(options.get("sizex"));
unsigned sizeY = static_cast<unsigned>(options.get("sizey"));
unsigned sizeZ = static_cast<unsigned>(options.get("sizez"));
double originX = static_cast<double>(options.get("originx"));
double originY = static_cast<double>(options.get("originy"));
double originZ = static_cast<double>(options.get("originz"));
std::string interpopt(options.get("interp"));
Image::InterpolationType interp = interpopt == "nearest" ? Image::NearestNeighbor : Image::Linear;
if (isoSpacing > 0.0)
sharedData.image.resample(isoSpacing, interp);
else if (sizeX == 0 || sizeY == 0 || sizeX == 0)
sharedData.image.resample(makeVector({spaceX, spaceY, spaceZ}), interp);
else
{
Point3 origin({originX, originY, originZ});
if (originX >= 1e9 || originY >= 1e9 || originZ >= 1e9)
origin = sharedData.image.origin();
sharedData.image.resample(IdentityTransform::New(), origin,
Dims({sizeX, sizeY, sizeZ}), makeVector({spaceX, spaceY, spaceZ}),
sharedData.image.coordsys(), interp);
}
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ResizeImage
///////////////////////////////////////////////////////////////////////////////
void ResizeImage::buildParser()
{
const std::string prog = "resize";
const std::string desc = "resizes an image (computes new physical spacing)";
parser.prog(prog).description(desc);
parser.add_option("--sizex", "-x").action("store").type("unsigned").set_default(0).help("Output size in x-direction [default: current size].");
parser.add_option("--sizey", "-y").action("store").type("unsigned").set_default(0).help("Output size in y-direction [default: current size].");
parser.add_option("--sizez", "-z").action("store").type("unsigned").set_default(0).help("Output size in z-direction [default: current size].");
Command::buildParser();
}
bool ResizeImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
unsigned sizeX = static_cast<unsigned>(options.get("sizex"));
unsigned sizeY = static_cast<unsigned>(options.get("sizey"));
unsigned sizeZ = static_cast<unsigned>(options.get("sizez"));
sharedData.image.resize(Dims({sizeX, sizeY, sizeZ}));
return true;
}
///////////////////////////////////////////////////////////////////////////////
// RecenterImage
///////////////////////////////////////////////////////////////////////////////
void RecenterImage::buildParser()
{
const std::string prog = "recenter";
const std::string desc = "recenters an image by changing its origin in the image header to the physical coordinates of the center of the image";
parser.prog(prog).description(desc);
Command::buildParser();
}
bool RecenterImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
sharedData.image.recenter();
return true;
}
///////////////////////////////////////////////////////////////////////////////
// PadImage
///////////////////////////////////////////////////////////////////////////////
void PadImage::buildParser()
{
const std::string prog = "pad";
const std::string desc = "pads an image with specified value by specified number of voxels in the x-, y-, and/or z- directions; origin remains at the same location (note: negative padding to shrink an image is permitted)";
parser.prog(prog).description(desc);
parser.add_option("--padding").action("store").type("int").set_default(0).help("Pad this many voxels in ALL directions (used if set) [default: %default].");
parser.add_option("--padx","-x").action("store").type("int").set_default(0).help("Pad this many voxels in the x-direction [default: %default].");
parser.add_option("--pady","-y").action("store").type("int").set_default(0).help("Pad this many voxels in the y-direction [default: %default].");
parser.add_option("--padz","-z").action("store").type("int").set_default(0).help("Pad this many voxels in the z-direction [default: %default].");
parser.add_option("--value").action("store").type("double").set_default(0.0).help("Value used to fill padded voxels [default: %default].");
Command::buildParser();
}
bool PadImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
int padding = static_cast<int>(options.get("padding"));
int padx = static_cast<int>(options.get("padx"));
int pady = static_cast<int>(options.get("pady"));
int padz = static_cast<int>(options.get("padz"));
double value = static_cast<double>(options.get("value"));
if (padding < 0 || padding > 0)
sharedData.image.pad(padding, value);
else
sharedData.image.pad(padx, pady, padz, value);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// TranslateImage
///////////////////////////////////////////////////////////////////////////////
void TranslateImage::buildParser()
{
const std::string prog = "translate-image";
const std::string desc = "translates image by specified physical (image space) distance";
parser.prog(prog).description(desc);
parser.add_option("--centerofmass").action("store_true").set_default(false).help("Use center of mass [default: false].");
parser.add_option("--tx", "-x").action("store").type("double").set_default(0).help("X distance.");
parser.add_option("--ty", "-y").action("store").type("double").set_default(0).help("Y distance.");
parser.add_option("--tz", "-z").action("store").type("double").set_default(0).help("Z distance.");
Command::buildParser();
}
bool TranslateImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
bool centerOfMass = static_cast<bool>(options.get("centerofmass"));
if (centerOfMass)
{
sharedData.image.applyTransform(sharedData.image.createCenterOfMassTransform());
return true;
}
else
{
double tx = static_cast<double>(options.get("tx"));
double ty = static_cast<double>(options.get("ty"));
double tz = static_cast<double>(options.get("tz"));
sharedData.image.translate(makeVector({tx, ty, tz}));
return true;
}
}
///////////////////////////////////////////////////////////////////////////////
// ScaleImage
///////////////////////////////////////////////////////////////////////////////
void ScaleImage::buildParser()
{
const std::string prog = "scale-image";
const std::string desc = "scales image by specified value";
parser.prog(prog).description(desc);
parser.add_option("--sx", "-x").action("store").type("double").set_default(1.0).help("X scale.");
parser.add_option("--sy", "-y").action("store").type("double").set_default(1.0).help("Y scale.");
parser.add_option("--sz", "-z").action("store").type("double").set_default(1.0).help("Z scale.");
Command::buildParser();
}
bool ScaleImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double sx = static_cast<double>(options.get("sx"));
double sy = static_cast<double>(options.get("sy"));
double sz = static_cast<double>(options.get("sz"));
sharedData.image.scale(makeVector({sx, sy, sz}));
return true;
}
///////////////////////////////////////////////////////////////////////////////
// Rotate
///////////////////////////////////////////////////////////////////////////////
void Rotate::buildParser()
{
const std::string prog = "rotate";
const std::string desc = "rotates image by specified value";
parser.prog(prog).description(desc);
parser.add_option("--rx", "-x").action("store").type("double").help("Physical axis around which to rotate [default: z-axis].");
parser.add_option("--ry", "-y").action("store").type("double").help("Physical axis around which to rotate [default: z-axis].");
parser.add_option("--rz", "-z").action("store").type("double").set_default(1.0).help("Physical axis around which to rotate [default: z-axis].");
parser.add_option("--radians").action("store").type("double").help("Angle in radians.");
parser.add_option("--degrees").action("store").type("double").help("Angle in degrees.");
Command::buildParser();
}
bool Rotate::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double rx = static_cast<double>(options.get("rx"));
double ry = static_cast<double>(options.get("ry"));
double rz = static_cast<double>(options.get("rz"));
double radians = static_cast<double>(options.get("radians"));
double degrees = static_cast<double>(options.get("degrees"));
Vector3 axis(makeVector({rx, ry, rz}));
if (radians == 0.0 && degrees == 0.0)
{
std::cerr << "Must specify a rotation angle\n";
return false;
}
// if degrees is specified, use it
if (degrees != 0.0)
radians = degToRad(degrees);
sharedData.image.rotate(radians, makeVector({rx, ry, rz}));
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ExtractLabel
///////////////////////////////////////////////////////////////////////////////
void ExtractLabel::buildParser()
{
const std::string prog = "extract-label";
const std::string desc = "extracts/isolates a specific voxel label from a given multi-label volume and outputs the corresponding binary image";
parser.prog(prog).description(desc);
parser.add_option("--label").action("store").type("double").set_default(1.0).help("Label value to be extracted [default: %default].");
Command::buildParser();
}
bool ExtractLabel::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double label = static_cast<double>(options.get("label"));
sharedData.image.extractLabel(label);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// CloseHoles
///////////////////////////////////////////////////////////////////////////////
void CloseHoles::buildParser()
{
const std::string prog = "close-holes";
const std::string desc = "closes holes in a volume defined by values larger than specified value";
parser.prog(prog).description(desc);
parser.add_option("--value").action("store").type("double").set_default(0.0).help("Largest value not in volume [default: %default].");
Command::buildParser();
}
bool CloseHoles::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double value = static_cast<double>(options.get("value"));
sharedData.image.closeHoles(value);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// Binarize
///////////////////////////////////////////////////////////////////////////////
void Binarize::buildParser()
{
const std::string prog = "binarize";
const std::string desc = "sets portion of image greater than min and less than or equal to max to the specified value";
parser.prog(prog).description(desc);
parser.add_option("--min").action("store").type("double").set_default(std::numeric_limits<double>::epsilon()).help("Lower threshold level [default: 0.0].");
parser.add_option("--max").action("store").type("double").set_default(std::numeric_limits<double>::max()).help("Upper threshold level [default: inf ].");
parser.add_option("--value").action("store").type("double").set_default(1.0).help("Value to set region [default: %default].");
Command::buildParser();
}
bool Binarize::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double min = static_cast<double>(options.get("min"));
double max = static_cast<double>(options.get("max"));
double value = static_cast<double>(options.get("value"));
sharedData.image.binarize(min, max, value);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ComputeDT
///////////////////////////////////////////////////////////////////////////////
void ComputeDT::buildParser()
{
const std::string prog = "compute-dt";
const std::string desc = "computes signed distance transform volume from an image at the specified isovalue";
parser.prog(prog).description(desc);
parser.add_option("--isovalue").action("store").type("double").set_default(0.0).help("Level set value that defines the interface between foreground and background [default: %default].");
Command::buildParser();
}
bool ComputeDT::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double isoValue = static_cast<double>(options.get("isovalue"));
sharedData.image.computeDT(isoValue);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// CurvatureFilter
///////////////////////////////////////////////////////////////////////////////
void CurvatureFilter::buildParser()
{
const std::string prog = "curvature";
const std::string desc = "denoises an image using curvature driven flow using curvature flow image filter";
parser.prog(prog).description(desc);
parser.add_option("--iterations").action("store").type("int").set_default(10).help("Number of iterations [default: %default].");
Command::buildParser();
}
bool CurvatureFilter::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
int iterations = static_cast<int>(options.get("iterations"));
if (iterations < 0)
{
std::cerr << "iterations must be >= 0\n";
return false;
}
else
{
sharedData.image.applyCurvatureFilter(iterations);
return true;
}
}
///////////////////////////////////////////////////////////////////////////////
// GradientFilter
///////////////////////////////////////////////////////////////////////////////
void GradientFilter::buildParser()
{
const std::string prog = "gradient";
const std::string desc = "computes gradient magnitude of an image region at each pixel using gradient magnitude filter";
parser.prog(prog).description(desc);
Command::buildParser();
}
bool GradientFilter::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
sharedData.image.applyGradientFilter();
return true;
}
///////////////////////////////////////////////////////////////////////////////
// SigmoidFilter
///////////////////////////////////////////////////////////////////////////////
void SigmoidFilter::buildParser()
{
const std::string prog = "sigmoid";
const std::string desc = "computes sigmoid function pixel-wise using sigmoid image filter";
parser.prog(prog).description(desc);
parser.add_option("--alpha").action("store").type("double").set_default(10.0).help("Value of alpha [default: %default].");
parser.add_option("--beta").action("store").type("double").set_default(10.0).help("Value of beta [default: %default].");
Command::buildParser();
}
bool SigmoidFilter::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double alpha = static_cast<double>(options.get("alpha"));
double beta = static_cast<double>(options.get("beta"));
sharedData.image.applySigmoidFilter(alpha, beta);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// TPLevelSetFilter
///////////////////////////////////////////////////////////////////////////////
void TPLevelSetFilter::buildParser()
{
const std::string prog = "tp-levelset";
const std::string desc = "segments structures in image using topology preserving geodesic active contour level set filter";
parser.prog(prog).description(desc);
parser.add_option("--featureimage").action("store").type("string").set_default("").help("Path of feature image for filter");
parser.add_option("--scaling").action("store").type("double").set_default(20.0).help("Value of scale [default: %default].");
Command::buildParser();
}
bool TPLevelSetFilter::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
std::string featureImagePath = static_cast<std::string>(options.get("featureimage"));
if (featureImagePath == "")
{
std::cerr << "Must specify a feature image\n";
return false;
}
else
{
Image featureImage(featureImagePath);
double scaling = static_cast<double>(options.get("scaling"));
sharedData.image.applyTPLevelSetFilter(featureImage, scaling);
return true;
}
}
///////////////////////////////////////////////////////////////////////////////
// IntensityFilter
///////////////////////////////////////////////////////////////////////////////
void IntensityFilter::buildParser()
{
const std::string prog = "intensity";
const std::string desc = "applies intensity windowing image filter";
parser.prog(prog).description(desc);
parser.add_option("--min").action("store").type("double").set_default(0.0).help("Minimum value of window [default: %default].");
parser.add_option("--max").action("store").type("double").set_default(0.0).help("Maximum value of window [default: %default].");
Command::buildParser();
}
bool IntensityFilter::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double min = static_cast<double>(options.get("min"));
double max = static_cast<double>(options.get("max"));
sharedData.image.applyIntensityFilter(min, max);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// TopologyPreservingFilter
///////////////////////////////////////////////////////////////////////////////
void TopologyPreservingFilter::buildParser()
{
const std::string prog = "topo-preserving-smooth";
const std::string desc = "helper command that applies gradient and sigmoid filters to create a feature image for the TPLevelSet filter; note that a curvature flow filter is sometimes applied to the image before this";
parser.prog(prog).description(desc);
parser.add_option("--scaling").action("store").type("double").set_default(20.0).help("Scale for TPLevelSet level set filter [default: %default].");
parser.add_option("--alpha").action("store").type("double").set_default(10.0).help("Value of alpha for sigmoid fitler [default: %default].");
parser.add_option("--beta").action("store").type("double").set_default(10.0).help("Value of beta for sigmoid fitler [default: %default].");
Command::buildParser();
}
bool TopologyPreservingFilter::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double scaling = static_cast<double>(options.get("scaling"));
double alpha = static_cast<double>(options.get("alpha"));
double beta = static_cast<double>(options.get("beta"));
sharedData.image.topologyPreservingSmooth(scaling, alpha, beta);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// Blur
///////////////////////////////////////////////////////////////////////////////
void Blur::buildParser()
{
const std::string prog = "blur";
const std::string desc = "applies gaussian blur";
parser.prog(prog).description(desc);
parser.add_option("--sigma").action("store").type("double").set_default(0.0).help("Value of sigma [default: %default].");
Command::buildParser();
}
bool Blur::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
double sigma = static_cast<double>(options.get("sigma"));
sharedData.image.gaussianBlur(sigma);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ICPRigid
///////////////////////////////////////////////////////////////////////////////
void ICPRigid::buildParser()
{
const std::string prog = "icp-image";
const std::string desc = "transform current image using iterative closest point (ICP) 3D rigid registration computed from current distance map to target distance map";
parser.prog(prog).description(desc);
parser.add_option("--target").action("store").type("string").set_default("").help("Distance map of target image.");
parser.add_option("--isovalue").action("store").type("double").set_default(0.0).help("Isovalue of distance maps used to create ICPtransform [default: %default].");
parser.add_option("--iterations").action("store").type("unsigned").set_default(20).help("Number of iterations run ICP registration [default: %default].");
Command::buildParser();
}
bool ICPRigid::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
std::string targetDT = static_cast<std::string>(options.get("target"));
double isoValue = static_cast<double>(options.get("isovalue"));
unsigned iterations = static_cast<unsigned>(options.get("iterations"));
if (targetDT == "")
{
std::cerr << "Must specify a target distance map\n";
return false;
}
else
{
Image target(targetDT);
auto xform = sharedData.image.createRigidRegistrationTransform(target, isoValue, iterations);
TransformPtr transform(xform);
sharedData.image.applyTransform(transform, target.origin(), target.dims(), target.spacing(), target.coordsys());
return true;
}
}
///////////////////////////////////////////////////////////////////////////////
// BoundingBoxImage
///////////////////////////////////////////////////////////////////////////////
void BoundingBoxImage::buildParser()
{
const std::string prog = "bounding-box-image";
const std::string desc = "compute largest physical bounding box surrounding the specified isovalue of the specified set of images";
parser.prog(prog).description(desc);
parser.add_option("--names").action("store").type("multistring").set_default("").help("Paths to images (must be followed by `--`), ex: \"bounding-box-image --names *.nrrd -- --isovalue 1.5\")");
parser.add_option("--isovalue").action("store").type("double").set_default(1.0).help("Threshold value [default: %default].");
Command::buildParser();
}
bool BoundingBoxImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
std::vector<std::string> filenames = options.get("names");
double isoValue = static_cast<double>(options.get("isovalue"));
sharedData.region = ImageUtils::boundingBox(filenames, isoValue);
std::cout << "Bounding box:\n" << sharedData.region << std::endl;
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ImageBounds
///////////////////////////////////////////////////////////////////////////////
void ImageBounds::buildParser()
{
const std::string prog = "image-bounds";
const std::string desc = "return bounds of image, optionally with an isovalue to restrict region";
parser.prog(prog).description(desc);
parser.add_option("--isovalue").action("store").type("double").help("Isovalue [default: entire image].");
Command::buildParser();
}
bool ImageBounds::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
auto isovalue = options.get("isovalue");
if (isovalue.isValid())
{
sharedData.region = sharedData.image.physicalBoundingBox(static_cast<double>(isovalue));
}
else
{
sharedData.region = sharedData.image.physicalBoundingBox();
}
std::cout << "Bounding box:\n" << sharedData.region << std::endl;
return true;
}
///////////////////////////////////////////////////////////////////////////////
// SetRegion
///////////////////////////////////////////////////////////////////////////////
void SetRegion::buildParser()
{
const std::string prog = "set-region";
const std::string desc = "set the current (physical) region to the specified min/max in each direction, for use with downstreams commands such as crop (note: could instead use the image-bounds command with an isovalue)";
parser.prog(prog).description(desc);
parser.add_option("--xmin").action("store").type("double").help("Minimum X.");
parser.add_option("--xmax").action("store").type("double").help("Maximum X.");
parser.add_option("--ymin").action("store").type("double").help("Minimum Y.");
parser.add_option("--ymax").action("store").type("double").help("Maximum Y.");
parser.add_option("--zmin").action("store").type("double").help("Minimum Z.");
parser.add_option("--zmax").action("store").type("double").help("Maximum Z.");
Command::buildParser();
}
bool SetRegion::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
double xmin = static_cast<double>(options.get("xmin"));
double ymin = static_cast<double>(options.get("ymin"));
double zmin = static_cast<double>(options.get("zmin"));
double xmax = static_cast<double>(options.get("xmax"));
double ymax = static_cast<double>(options.get("ymax"));
double zmax = static_cast<double>(options.get("zmax"));
sharedData.region = PhysicalRegion(Point({xmin, ymin, zmin}),
Point({xmax, ymax, zmax}));
std::cout << "region: " << sharedData.region << std::endl;
return true;
}
///////////////////////////////////////////////////////////////////////////////
// CropImage
///////////////////////////////////////////////////////////////////////////////
void CropImage::buildParser()
{
const std::string prog = "crop";
const std::string desc = "crop image down to the current region of physical space (from bounding-box or set-region commands)";
parser.prog(prog).description(desc);
Command::buildParser();
}
bool CropImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
sharedData.image.crop(sharedData.region);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ClipImage
///////////////////////////////////////////////////////////////////////////////
void ClipImage::buildParser()
{
const std::string prog = "clip-image";
const std::string desc = "clips volume with the specified cutting planes defined by three 3D points";
parser.prog(prog).description(desc);
parser.add_option("--x1").action("store").type("double").set_default(0.0).help("Value of x1 for cutting plane [default: %default].");
parser.add_option("--y1").action("store").type("double").set_default(0.0).help("Value of y1 for cutting plane [default: %default].");
parser.add_option("--z1").action("store").type("double").set_default(0.0).help("Value of z1 for cutting plane [default: %default].");
parser.add_option("--x2").action("store").type("double").set_default(0.0).help("Value of x2 for cutting plane [default: %default].");
parser.add_option("--y2").action("store").type("double").set_default(0.0).help("Value of y2 for cutting plane [default: %default].");
parser.add_option("--z2").action("store").type("double").set_default(0.0).help("Value of z2 for cutting plane [default: %default].");
parser.add_option("--x3").action("store").type("double").set_default(0.0).help("Value of x3 for cutting plane [default: %default].");
parser.add_option("--y3").action("store").type("double").set_default(0.0).help("Value of y3 for cutting plane [default: %default].");
parser.add_option("--z3").action("store").type("double").set_default(0.0).help("Value of z3 for cutting plane [default: %default].");
parser.add_option("--value").action("store").type("double").set_default(0.0).help("Value of clipped pixels [default: %default].");
Command::buildParser();
}
bool ClipImage::execute(const optparse::Values &options, SharedCommandData &sharedData)
{
if (!sharedData.validImage())
{
std::cerr << "No image to operate on\n";
return false;
}
Point p1({static_cast<double>(options.get("x1")), static_cast<double>(options.get("x2")), static_cast<double>(options.get("x3"))});
Point p2({static_cast<double>(options.get("y1")), static_cast<double>(options.get("y2")), static_cast<double>(options.get("y3"))});
Point p3({static_cast<double>(options.get("z1")), static_cast<double>(options.get("z2")), static_cast<double>(options.get("z3"))});
sharedData.image.clip(makePlane(p1, p2, p3), static_cast<double>(options.get("value")));
return true;
}
///////////////////////////////////////////////////////////////////////////////
// ReflectImage
///////////////////////////////////////////////////////////////////////////////
void ReflectImage::buildParser()
{
const std::string prog = "reflect-image";
const std::string desc = "reflect image with respect to logical image center and the specified axis";
parser.prog(prog).description(desc);
parser.add_option("--axis").action("store").type("string").set_default("").help("Axis along which to reflect (X, Y, or Z).");
Command::buildParser();
}
bool ReflectImage::execute(const optparse::Values &options, SharedCommandData &sharedData)