-
Notifications
You must be signed in to change notification settings - Fork 73
/
lung_segmentation.mlab
1481 lines (1480 loc) · 36.9 KB
/
lung_segmentation.mlab
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
// MDL v1 utf8
network {
watchlist = ""
}
module Histogram {
internal {
frame = "1221 637 88 56"
moduleGroupName = ""
windows {
window _default {
geometry = "41 203 431 206"
sizeHint = "431 206"
wasOpen = no
}
}
}
fields {
instanceName = Histogram
useMask = FALSE
xRange = "Dynamic Min/Max"
maskMode = Labels
curveType = Line
curveStyle = 0
curveTitle = ""
updateMode = Off
useStepFunction = FALSE
useBinSizeOneRepresentation = TRUE
useBackgroundValue = FALSE
backgroundValue = 0
binSize = 1
maxBinCount = 25000000
}
}
module StylePalette {
internal {
frame = "1317 637 104 56"
moduleGroupName = ""
windows {
window _default {
geometry = "70 89 632 433"
sizeHint = "632 433"
wasOpen = no
}
}
}
fields {
instanceName = StylePalette0
color1 = "1 1 0"
color2 = "1 0 0"
color3 = "0 0 1"
color4 = "0 1 0"
color5 = "1 0.5 0"
color6 = "1 0 1"
color7 = "0 1 1"
color8 = "0.5 1 0.5"
color9 = "1 0 0.5"
color10 = "0.5 1 0"
color11 = "0.5 0 1"
color12 = "0 1 0.5"
lineStyle1 = Solid
lineStyle2 = Solid
lineStyle3 = Solid
lineStyle4 = Solid
lineStyle5 = Solid
lineStyle6 = Solid
lineStyle7 = Solid
lineStyle8 = Solid
lineStyle9 = Solid
lineStyle10 = Solid
lineStyle11 = Solid
lineStyle12 = Solid
lineWidth1 = 1
lineWidth2 = 1
lineWidth3 = 1
lineWidth4 = 1
lineWidth5 = 1
lineWidth6 = 1
lineWidth7 = 1
lineWidth8 = 1
lineWidth9 = 1
lineWidth10 = 1
lineWidth11 = 1
lineWidth12 = 1
markerType1 = None
markerType2 = None
markerType3 = None
markerType4 = None
markerType5 = None
markerType6 = None
markerType7 = None
markerType8 = None
markerType9 = None
markerType10 = None
markerType11 = None
markerType12 = None
markerSize1 = 10
markerSize2 = 10
markerSize3 = 10
markerSize4 = 10
markerSize5 = 10
markerSize6 = 10
markerSize7 = 10
markerSize8 = 10
markerSize9 = 10
markerSize10 = 10
markerSize11 = 10
markerSize12 = 10
antiAlias1 = FALSE
antiAlias2 = FALSE
antiAlias3 = FALSE
antiAlias4 = FALSE
antiAlias5 = FALSE
antiAlias6 = FALSE
antiAlias7 = FALSE
antiAlias8 = FALSE
antiAlias9 = FALSE
antiAlias10 = FALSE
antiAlias11 = FALSE
antiAlias12 = FALSE
name1 = ""
name2 = ""
name3 = ""
name4 = ""
name5 = ""
name6 = ""
name7 = ""
name8 = ""
name9 = ""
name10 = ""
name11 = ""
name12 = ""
currentStyle = 0
currentColor = "1 1 1"
currentLineStyle = None
currentLineWidth = 1
currentMarkerType = None
currentMarkerSize = 4
currentAntiAlias = FALSE
currentName = ""
reservedEntries = 1
}
}
module SoRenderArea {
internal {
frame = "1225 421 112 56"
moduleGroupName = ""
windows {
window _viewer {
geometry = "125 467 400 400"
sizeHint = "400 400"
wasOpen = no
}
}
}
fields {
instanceName = SoRenderArea
renderCaching = AUTO
boundingBoxCaching = AUTO
renderCulling = AUTO
pickCulling = AUTO
border = FALSE
background = "0 0 0"
transparency = DELAYED_BLEND
antialiasing = FALSE
antialiasingNumPasses = 1
useSampleBuffers = FALSE
numSamples = 8
grabKeyFocus = TRUE
snapshotFormat = SNAPSHOT_RGB
outputAviFile = ""
autoRedrawWhenRecording = TRUE
frameRate = 7
frameRateAvi = 15
status = ready
outputSnapshotFile = none
outputSnapshotFileWritten = none
autoIncreaseFile = TRUE
showSnapshotWithShell = FALSE
snapCount = 0
inputDevicesList = ""
}
}
module SoDiagram2D {
internal {
frame = "1233 509 112 56"
moduleGroupName = ""
windows {
window _default {
geometry = "1337 164 523 514"
sizeHint = "523 514"
wasOpen = no
}
}
}
fields {
instanceName = SoDiagram2D
minX = -3024
maxX = 2103
minY = 0
maxY = 6748412
scaleX = 1
scaleY = 1
autoRangeX = TRUE
autoRangeY = TRUE
axisColor = "1 1 1"
axisRotation = AXIS_ROTATION_LEFT_BOTTOM
titleFontHeight = 14
drawDiagramTitle = FALSE
diagramTitleString = ""
drawGrid = FALSE
gridColor = "0.349999994039536 0.349999994039536 0.349999994039536"
drawLegend = FALSE
legendPlacement = LEGEND_UPPER_RIGHT
legendFontHeight = 12
zoomAnimationEase = 0.5
zoomAnimationEpsilon = 0.0099999998
useZoomRestrictions = FALSE
minZoomFactor = 0.1
maxZoomFactor = 10
drawChildrenExtensions = TRUE
forwardEventsToChildrenExtensions = TRUE
changeLineOpacityForHighlightedCurves = FALSE
curveLineOpacityHighlighted = 1
changeLineOpacityForNotHighlightedCurves = FALSE
curveLineOpacityNotHighlighted = 0.30000001
changeLineStyleForHighlightedCurves = FALSE
curveLineStyleHighlighted = 1
changeLineStyleForNotHighlightedCurves = FALSE
curveLineStyleNotHighlighted = 1
curveIndexHighlighted = ""
borderH = 46
borderV = 25
autoBorderH = TRUE
autoBorderV = TRUE
drawAxisX = TRUE
drawAxisY = TRUE
drawTicksX = TRUE
drawTicksY = TRUE
drawLabelsX = TRUE
drawLabelsY = TRUE
drawAxisTitleX = FALSE
drawAxisTitleY = FALSE
axisTitleStringX = "X [dn]"
axisTitleStringY = "Y [dn]"
axisTitleFontHeightX = 12
axisTitleFontHeightY = 12
axisLabelFontHeightX = 12
axisLabelFontHeightY = 12
curveColor = "1 1 1"
lineStyle = LINE_STYLE_SOLID
markerType = MARKER_TYPE_NONE
markerSize = 10
lineWidth = 1
antiAlias = TRUE
areaOpacity = 0.5
lineOpacity = 1
stylePaletteMode = STYLE_PALETTE_INDEX
}
}
module View2D {
internal {
frame = "949 325 120 56"
moduleGroupName = ""
windows {
window _default {
geometry = "698 156 400 400"
sizeHint = "400 400"
wasOpen = no
}
}
}
fields {
instanceName = View2D1
inventorInputOn = TRUE
inventorOutputOn = FALSE
view2DExtensionsOn = TRUE
startSlice = 120
numSlices = 1
numXSlices = 1
sliceStep = 1
slab = 1
blendMode = BLEND_REPLACE
timePoint = 0
maxTimePoint = 0
filterMode = FILTER_LINEAR
standardKeys = TRUE
cineMode = CINE_Z
cineDirection = CINE_PINGPONG
cineRepeat = CINE_ONCE
cineSpeed = 0.1
snapToCenter = FALSE
zoomMode = VIEW2D_AUTO_ZOOM
unzoomOnImageChange = FALSE
sliceZoom = 1
sliceZoomSynced = 1
baseColor = "1 1 1"
margin = "2 2"
sliceOrigin = "0 0"
plane = "0 0 1 -33.9599914550781"
useShaders = TRUE
useManagedInteraction = FALSE
lutCenter = 0.38500002
lutWidth = 0.84000003
annotationOn = TRUE
annotationMode = ANNO_MODE_AUTO
annotationSizeMode = ANNO_SHOW_DETAILED
annotationCol = "0.899999976158142 0.899999976158142 0.899999976158142"
annotationFontSize = ANNO_SIZE_AUTO
annoCoords = Voxel
annoCTValue = AsIs
borderOn = FALSE
borderColor = "0.899999976158142 0.899999976158142 0.899999976158142"
valueHighPrecision = TRUE
maxPrecision = 4
enableSlicing = TRUE
useRelativeLUTIfNoInputImage = FALSE
}
}
module Arithmetic2 {
internal {
frame = "681 541 96 56"
moduleGroupName = "Remove outside"
windows {
window _default {
geometry = "860 538 217 64"
sizeHint = "215 64"
wasOpen = no
}
}
}
fields {
instanceName = Arithmetic2
function = Max
constant = 0
autoReplicate = FALSE
}
}
module RegionGrowing {
internal {
frame = "737 613 128 56"
moduleGroupName = "Remove outside"
windows {
window _default {
geometry = "1034 178 573 583"
sizeHint = "573 583"
wasOpen = no
}
}
}
fields {
instanceName = RegionGrowing1
autoUpdateMode = AutoUpdate
lowerThreshold = 0.95
upperThreshold = 1.05
autoThreshold = TRUE
basicNeighborhoodType = BNBH_3D_6_XYZ
extendedNeighborhoodType = ENBH_2D_4_XY
useAdditionalSeed = TRUE
additionalSeed = "0 0 0 0 0 0"
additionalSeedType = 0
additionalSeedCoordSystem = VoxelCoordinates
initStackSizeTweak = 0.100000001490116
prohibitInputScalingTweak = FALSE
incrementalUpdateMode = Smart
useExtendedNBH = FALSE
calcBoundaryOverlap = FALSE
unitType = UnitTypeGrayValue
internalAccuracy = Auto
autoUpdateUnitType = FALSE
stretchOutputOverTime = FALSE
unitLabel = ""
showPartialResults = FALSE
acceptedMarkerType = -1
autoSelectHigherCoords = TRUE
cCoord = 0
uCoord = 0
posFillValue = -1
negFillValue = 0
invertResult = FALSE
showOuterBoundariesOnly = FALSE
maxVolume = 100
maxVolumeEnabled = FALSE
intervalSize = 5
}
}
module Calculator {
internal {
frame = "409 613 96 56"
moduleGroupName = ""
windows {
window _default {
geometry = "113 538 700 656"
sizeHint = "700 656"
wasOpen = no
}
}
}
fields {
instanceName = Calculator1
exp1 = i1-1
exp2 = i2-1
exp3 = ""
exp4 = ""
exp5 = ""
exp6 = ""
exp7 = ""
exp8 = ""
i1 = 512
i2 = 512
i3 = 0
i4 = 0
i5 = 0
i6 = 0
d1 = 0
d2 = 0
d3 = 0
d4 = 0
d5 = 0
d6 = 0
d7 = 0
d8 = 0
d9 = 0
d10 = 0
d11 = 0
d12 = 0
v1 = "0 0 0"
v2 = "0 0 0"
v3 = "0 0 0"
v4 = "0 0 0"
v5 = "0 0 0"
v6 = "0 0 0"
domainErrorHandling = Nothing
domainErrorReplacementValue = Zeroes
applyMode = AutoApply
exp1Comment = ""
exp2Comment = ""
exp3Comment = ""
exp4Comment = ""
exp5Comment = ""
exp6Comment = ""
exp7Comment = ""
exp8Comment = ""
scalarVariablesComment = ""
vectorVariablesComment = ""
resultVector1_x = 0
resultVector1_y = 0
resultVector1_z = 0
resultVector2_x = 0
resultVector2_y = 0
resultVector2_z = 0
resultVector3_x = 0
resultVector3_y = 0
resultVector3_z = 0
resultVector4_x = 0
resultVector4_y = 0
resultVector4_z = 0
resultVector5_x = 0
resultVector5_y = 0
resultVector5_z = 0
resultVector6_x = 0
resultVector6_y = 0
resultVector6_z = 0
resultVector7_x = 0
resultVector7_y = 0
resultVector7_z = 0
resultVector8_x = 0
resultVector8_y = 0
resultVector8_z = 0
}
}
module StringUtils {
internal {
frame = "409 549 96 56"
moduleGroupName = ""
windows {
window _default {
geometry = "782 405 370 331"
sizeHint = "370 331"
wasOpen = no
}
}
}
fields {
instanceName = StringUtils2
operationType = Concatenate
string1 = 511
string2 = 511
string3 = ""
string4 = ""
string5 = ""
string6 = ""
stringPrefix = [
stringPostfix = ]
toggle1 = TRUE
toggle2 = TRUE
toggle3 = FALSE
toggle4 = FALSE
toggle5 = FALSE
toggle6 = FALSE
togglePrefix = FALSE
togglePostfix = FALSE
separator = ""
selectSeparator = 1
toggleIgnoreCase = FALSE
inPos1 = 0
inPos2 = 0
}
}
module Info {
internal {
frame = "409 677 64 56"
moduleGroupName = ""
windows {
window _default {
geometry = "796 292 564 375"
sizeHint = "564 375"
wasOpen = no
}
}
}
fields {
instanceName = Info1
bypassIndex = -1
inPlaceIndex = -1
}
}
module StringUtils {
internal {
frame = "161 381 96 56"
moduleGroupName = ""
windows {
window _default {
geometry = "1241 331 370 331"
sizeHint = "370 331"
wasOpen = no
}
}
}
fields {
instanceName = StringUtils1
operationType = Concatenate
string1 = $(NETWORK)/output/
string2 = 1.3.6.1.4.1.14519.5.2.1.6279.6001.105756658031515062000744821260.mhd
string3 = ""
string4 = ""
string5 = ""
string6 = ""
stringPrefix = [
stringPostfix = ]
toggle1 = TRUE
toggle2 = TRUE
toggle3 = FALSE
toggle4 = FALSE
toggle5 = FALSE
toggle6 = FALSE
togglePrefix = FALSE
togglePostfix = FALSE
separator = ""
selectSeparator = 0
toggleIgnoreCase = FALSE
inPos1 = 0
inPos2 = 0
}
}
module StringUtils {
internal {
frame = "157 469 88 56"
moduleGroupName = ""
windows {
window _default {
geometry = "540 492 234 204"
sizeHint = "234 204"
wasOpen = no
}
}
}
fields {
instanceName = StringUtils
operationType = Substring
string1 = $(NETWORK)/1.3.6.1.4.1.14519.5.2.1.6279.6001.105756658031515062000744821260.mhd
string2 = ""
string3 = ""
string4 = ""
string5 = ""
string6 = ""
stringPrefix = [
stringPostfix = ]
toggle1 = TRUE
toggle2 = TRUE
toggle3 = FALSE
toggle4 = FALSE
toggle5 = FALSE
toggle6 = FALSE
togglePrefix = FALSE
togglePostfix = FALSE
separator = ""
selectSeparator = 0
toggleIgnoreCase = FALSE
inPos1 = 11
inPos2 = 10000
}
}
module Calculator {
internal {
frame = "906 -133 88 56"
moduleGroupName = "Lung fill"
windows {
window _default {
geometry = "161 538 700 656"
sizeHint = "700 656"
wasOpen = no
}
}
}
fields {
instanceName = Calculator
exp1 = "round(i1*d1)"
exp2 = ""
exp3 = ""
exp4 = ""
exp5 = ""
exp6 = ""
exp7 = ""
exp8 = ""
i1 = 121
i2 = 0
i3 = 0
i4 = 0
i5 = 0
i6 = 0
d1 = 1.03
d2 = 0
d3 = 0
d4 = 0
d5 = 0
d6 = 0
d7 = 0
d8 = 0
d9 = 0
d10 = 0
d11 = 0
d12 = 0
v1 = "0 0 0"
v2 = "0 0 0"
v3 = "0 0 0"
v4 = "0 0 0"
v5 = "0 0 0"
v6 = "0 0 0"
domainErrorHandling = Nothing
domainErrorReplacementValue = Zeroes
applyMode = AutoApply
exp1Comment = ""
exp2Comment = ""
exp3Comment = ""
exp4Comment = ""
exp5Comment = ""
exp6Comment = ""
exp7Comment = ""
exp8Comment = ""
scalarVariablesComment = "d1 = aantal extra slices fractie
i1 = n layers
"
vectorVariablesComment = ""
resultVector1_x = 0
resultVector1_y = 0
resultVector1_z = 0
resultVector2_x = 0
resultVector2_y = 0
resultVector2_z = 0
resultVector3_x = 0
resultVector3_y = 0
resultVector3_z = 0
resultVector4_x = 0
resultVector4_y = 0
resultVector4_z = 0
resultVector5_x = 0
resultVector5_y = 0
resultVector5_z = 0
resultVector6_x = 0
resultVector6_y = 0
resultVector6_z = 0
resultVector7_x = 0
resultVector7_y = 0
resultVector7_z = 0
resultVector8_x = 0
resultVector8_y = 0
resultVector8_z = 0
}
}
module Info {
internal {
frame = "906 -69 56 56"
moduleGroupName = "Lung fill"
windows {
window _default {
geometry = "94 302 564 375"
sizeHint = "564 375"
wasOpen = no
}
}
}
fields {
instanceName = Info
bypassIndex = -1
inPlaceIndex = -1
}
}
module itkImageFileWriter {
internal {
frame = "281 -371 128 56"
moduleGroupName = ""
windows {
window _default {
geometry = "942 529 307 403"
sizeHint = "256 403"
wasOpen = no
}
}
}
fields {
instanceName = itkImageFileWriter
useCompression = TRUE
correctSubVoxelShift = FALSE
forceDirectionCosineWrite = TRUE
outputVoxelType = int8
info = "File saved successfully"
unresolvedFileName = $(NETWORK)/output/1.3.6.1.4.1.14519.5.2.1.6279.6001.105756658031515062000744821260.mhd
}
}
module View3D {
internal {
frame = "273 -467 144 56"
moduleGroupName = ""
windows {
window _default {
geometry = "496 248 943 645"
sizeHint = "943 645"
wasOpen = no
}
}
}
fields {
instanceName = View3D4
autoViewAll = TRUE
inventorInputOn = TRUE
inventorOutputOn = FALSE
lutType = Ramp
currentTimePoint = 0
staticSamplingRate = 1
quality = 1
lutEditorColorPoints = "[ 0 0 0 0, 4095 1 1 1 ]"
lutEditorAlphaPoints = "[ 0 0, 4095 1 ]"
lutEditorRelativeLut = FALSE
lutEditorColorInterpolation = InterpolateRGB
lutEditorAlphaFactor = 1
orientationProjectionType = PERSPECTIVE
orientationLocation = LOWER_RIGHT
orientationOn = TRUE
orientationModel = CUBE
greyCenter = 0.21749976
greyWidth = 0.30749983
alphaFactor = 1
colorFactor = "1 1 1"
camType = TRUE
camPosition = "244.285949707031 -675.688354492188 -28.1175765991211"
camOrientation = "0.969693779945374 0.119163908064365 0.213293209671974 1.47821879386902"
initialCameraOrientation = CAMERA_KEEP_AS_IS
camFar = 1027.9884
camNear = 505.91843
camFocal = 766.69293
camHeight = 0.78539801
decoration = FALSE
annotations = TRUE
background = TRUE
mode = VolumeRendering
interactiveQuality = Medium
}
internalFields {
renderer.gradientQuality = GradientQualityAutomatic
renderer.enhancementAlphaMix = 0.25
renderer.boundaryEnhancement = FALSE
renderer.boundaryEnhancementFactor = 1
renderer.boundaryEnhancementExponent = 1
renderer.boundaryEnhancementGradientBias = 0
renderer.silhouetteEnhancement = FALSE
renderer.silhouetteEnhancementExponent = 1
renderer.silhouetteEnhancementFactor = 1
renderer.toneShading = FALSE
renderer.toneShadingWarmColor = "0.67451000213623 0.533333003520966 0.141176000237465"
renderer.toneShadingColdColor = "0 0 0.400000005960464"
renderer.toneShadingWarmDiffuse = 0.60000002
renderer.toneShadingColdDiffuse = 0.2
renderer.toneShadingAngle = 45
renderer.materialAmbient = 0.60000002
renderer.materialDiffuse = 1
renderer.materialSpecular = 1
renderer.materialSpecularity = 32
renderer.light1Enabled = TRUE
renderer.light1DiffuseIntensity = 1
renderer.light1SpecularIntensity = 1
renderer.light1Color = "1 1 1"
renderer.light1PolarPhi = 45
renderer.light1PolarRho = 0
renderer.light2Enabled = FALSE
renderer.light2DiffuseIntensity = 1
renderer.light2SpecularIntensity = 1
renderer.light2Color = "1 1 1"
renderer.light2PolarPhi = 0
renderer.light2PolarRho = 0
renderer.light3Enabled = FALSE
renderer.light3DiffuseIntensity = 1
renderer.light3SpecularIntensity = 1
renderer.light3Color = "1 1 1"
renderer.light3PolarPhi = -45
renderer.light3PolarRho = 0
renderer.sizeOutputX = 512
renderer.sizeOutputY = 512
renderer.sizeOutputZ = 121
renderer.subVolumeStartX = 0
renderer.subVolumeStartY = 0
renderer.subVolumeStartZ = 0
renderer.subVolumeEndX = 512
renderer.subVolumeEndY = 512
renderer.subVolumeEndZ = 121
clip.hideGeometry = FALSE
clip.on = FALSE
clip.left = FALSE
clip.right = FALSE
clip.top = FALSE
clip.bottom = FALSE
clip.rear = FALSE
clip.front = FALSE
clip.translation0 = "1 0 0"
clip.translation1 = "-1 0 0"
clip.translation2 = "0 1 0"
clip.translation3 = "0 -1 0"
clip.translation4 = "0 0 1"
clip.translation5 = "0 0 -1"
clip.rotation0 = "0 0 0.999999940395355 1.57079994678497"
clip.rotation1 = "0 0 -0.999999940395355 1.57079994678497"
clip.rotation2 = "0 0 -1 3.1415901184082"
clip.rotation3 = "0 0 1 0"
clip.rotation4 = "-0.999999940395355 0 0 1.57079994678497"
clip.rotation5 = "0.999999940395355 0 0 1.57079994678497"
}
}
module View3D {
internal {
frame = "868 -210 144 56"
moduleGroupName = "Lung fill"
windows {
window _default {
geometry = "78 115 943 645"
sizeHint = "943 645"
wasOpen = no
}
}
}
fields {
instanceName = View3D3
autoViewAll = TRUE
inventorInputOn = TRUE
inventorOutputOn = FALSE
lutType = Ramp
currentTimePoint = 0
staticSamplingRate = 1
quality = 1
lutEditorColorPoints = "[ 0 0 0 0, 4095 1 1 1 ]"
lutEditorAlphaPoints = "[ 0 0, 4095 1 ]"
lutEditorRelativeLut = FALSE
lutEditorColorInterpolation = InterpolateRGB
lutEditorAlphaFactor = 1
orientationProjectionType = PERSPECTIVE
orientationLocation = LOWER_RIGHT
orientationOn = TRUE
orientationModel = CUBE
greyCenter = 0.21749976
greyWidth = 0.30749983
alphaFactor = 1
colorFactor = "1 1 1"
camType = TRUE
camPosition = "269.143981933594 -599.48828125 -450.857604980469"
camOrientation = "-0.975537896156311 -0.0247048921883106 -0.218438729643822 4.20181179046631"
initialCameraOrientation = CAMERA_KEEP_AS_IS
camFar = 1063.0966
camNear = 470.87949
camFocal = 766.69293
camHeight = 0.78539801
decoration = FALSE
annotations = TRUE
background = TRUE
mode = VolumeRendering
interactiveQuality = Medium
}
internalFields {
renderer.gradientQuality = GradientQualityAutomatic
renderer.enhancementAlphaMix = 0.25
renderer.boundaryEnhancement = FALSE
renderer.boundaryEnhancementFactor = 1
renderer.boundaryEnhancementExponent = 1
renderer.boundaryEnhancementGradientBias = 0
renderer.silhouetteEnhancement = FALSE
renderer.silhouetteEnhancementExponent = 1
renderer.silhouetteEnhancementFactor = 1
renderer.toneShading = FALSE
renderer.toneShadingWarmColor = "0.67451000213623 0.533333003520966 0.141176000237465"
renderer.toneShadingColdColor = "0 0 0.400000005960464"
renderer.toneShadingWarmDiffuse = 0.60000002
renderer.toneShadingColdDiffuse = 0.2
renderer.toneShadingAngle = 45
renderer.materialAmbient = 0.60000002
renderer.materialDiffuse = 1
renderer.materialSpecular = 1
renderer.materialSpecularity = 32
renderer.light1Enabled = TRUE
renderer.light1DiffuseIntensity = 1
renderer.light1SpecularIntensity = 1
renderer.light1Color = "1 1 1"
renderer.light1PolarPhi = 45
renderer.light1PolarRho = 0
renderer.light2Enabled = FALSE
renderer.light2DiffuseIntensity = 1
renderer.light2SpecularIntensity = 1
renderer.light2Color = "1 1 1"
renderer.light2PolarPhi = 0
renderer.light2PolarRho = 0
renderer.light3Enabled = FALSE
renderer.light3DiffuseIntensity = 1
renderer.light3SpecularIntensity = 1
renderer.light3Color = "1 1 1"
renderer.light3PolarPhi = -45
renderer.light3PolarRho = 0
renderer.sizeOutputX = 512
renderer.sizeOutputY = 512
renderer.sizeOutputZ = 121
renderer.subVolumeStartX = 0
renderer.subVolumeStartY = 0
renderer.subVolumeStartZ = 0
renderer.subVolumeEndX = 512
renderer.subVolumeEndY = 512
renderer.subVolumeEndZ = 121
clip.hideGeometry = FALSE
clip.on = FALSE
clip.left = FALSE
clip.right = FALSE
clip.top = FALSE
clip.bottom = FALSE
clip.rear = FALSE
clip.front = FALSE
clip.translation0 = "1 0 0"
clip.translation1 = "-1 0 0"
clip.translation2 = "0 1 0"
clip.translation3 = "0 -1 0"
clip.translation4 = "0 0 1"
clip.translation5 = "0 0 -1"
clip.rotation0 = "0 0 0.999999940395355 1.57079994678497"
clip.rotation1 = "0 0 -0.999999940395355 1.57079994678497"
clip.rotation2 = "0 0 -1 3.1415901184082"
clip.rotation3 = "0 0 1 0"
clip.rotation4 = "-0.999999940395355 0 0 1.57079994678497"
clip.rotation5 = "0.999999940395355 0 0 1.57079994678497"
}
}
module IntervalThreshold {
internal {
frame = "658 -105 136 64"
moduleGroupName = "Lung fill"
windows {
window _default {
geometry = "996 143 372 350"
sizeHint = "372 350"
wasOpen = no
}
}
}
fields {
instanceName = Select_small_blobs
lowerType = UserDef
innerType = UserDef
upperType = UserDef
centerWidthSet = FALSE
threshCenter = 50062.5
threshWidth = 99875
threshMin = 125
threshMax = 100000
lowerUserValue = 0
innerUserValue = 1
upperUserValue = 0
changeMinMax = TRUE
changedMin = -100000
changedMax = 100000
}
}
module Arithmetic2 {
internal {
frame = "506 -177 152 64"
moduleGroupName = "Lung fill"
windows {
window _default {