[b86468]: / brainchop-mainthread.js

Download this file

1356 lines (1180 with data), 50.5 kB

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
import * as tf from '@tensorflow/tfjs'
import { inferenceModelsList } from './brainchop-parameters.js'
import {
addZeroPaddingTo3dTensor,
applyMriThreshold,
binarizeVolumeDataTensor,
convByOutputChannelAndInputSlicing,
draw3dObjBoundingVolume,
firstLastNonZero3D,
generateBrainMask,
generateOutputSlicesV2,
getAllSlicesDataAsTF3D,
getModelNumLayers,
getModelNumParameters,
isModelChnlLast,
load_model,
minMaxNormalizeVolumeData,
quantileNormalizeVolumeData,
removeZeroPaddingFrom3dTensor,
resizeWithZeroPadding,
SequentialConvLayer
} from './tensor-utils.js'
async function inferenceFullVolumeSeqCovLayerPhase2(
opts,
modelEntry,
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
pipeline1_out,
callbackUI,
callbackImg,
statData,
niftiImage
) {
// --Phase-2, After remove the skull try to allocate brain volume and make inferece
console.log(' ---- Start FullVolume Inference with Sequential Conv Layer for phase-II ---- ')
// console.log("BOB", callbackUI); console.log("UNCLE",callbackImg); return
const quantileNorm = modelEntry.enableQuantileNorm
if (quantileNorm) {
// Quantile normalize function needs specific models to be used
console.log('preModel Quantile normalization enabled')
slices_3d = await quantileNormalizeVolumeData(slices_3d)
} else {
// Min Max Nomalize MRI data to be from 0 to 1
console.log('preModel Min Max normalization enabled')
slices_3d = await minMaxNormalizeVolumeData(slices_3d)
}
let mask_3d
if (pipeline1_out == null) {
// preModel is null
// Check if thresholding the MRI to remove noisy voxels for better cropping is needed.
const autoThresholdValue = modelEntry.autoThreshold
if (autoThresholdValue > 0 && autoThresholdValue <= 1) {
// Filtered MRI from noisy voxel below autoThresholdValue
mask_3d = await applyMriThreshold(slices_3d, autoThresholdValue)
} else {
console.log('No valid crop threshold value')
// binarize original image
mask_3d = await slices_3d.greater([0]).asType('bool')
}
} else {
mask_3d = await pipeline1_out.greater([0]).asType('bool')
// -- pipeline1_out.dispose();
}
console.log(' mask_3d shape : ', mask_3d.shape)
const [row_min, row_max, col_min, col_max, depth_min, depth_max] = await firstLastNonZero3D(mask_3d)
mask_3d.dispose()
// -- Reference voxel that cropped volume started slice with it
const refVoxel = [row_min, col_min, depth_min]
// -- Starting form refVoxel, size of bounding volume
const boundVolSizeArr = [row_max - row_min + 1, col_max - col_min + 1, depth_max - depth_min + 1]
// -- Extract 3d object (e.g. brain)
const cropped_slices_3d = await slices_3d.slice(
[row_min, col_min, depth_min],
[row_max - row_min + 1, col_max - col_min + 1, depth_max - depth_min + 1]
)
slices_3d.dispose()
// -- Padding size add to cropped brain
const pad = modelEntry.cropPadding
// Create margin around the bounding volume
let cropped_slices_3d_w_pad = await addZeroPaddingTo3dTensor(cropped_slices_3d, [pad, pad], [pad, pad], [pad, pad])
console.log(' cropped slices_3d with padding shape: ', cropped_slices_3d_w_pad.shape)
cropped_slices_3d.dispose()
if (opts.drawBoundingVolume) {
let testVol = await removeZeroPaddingFrom3dTensor(cropped_slices_3d_w_pad, pad, pad, pad)
console.log(' outLabelVolume without padding shape : ', testVol.shape)
testVol = await resizeWithZeroPadding(testVol, num_of_slices, slice_height, slice_width, refVoxel, boundVolSizeArr)
console.log(' outLabelVolume final shape after resizing : ', testVol.shape)
draw3dObjBoundingVolume(tf.unstack(testVol), opts, modelEntry, callbackImg)
testVol.dispose()
return 0
}
statData.Brainchop_Ver = 'FullVolume'
// model.then(function (res) {
// console.log("--->>>>", opts.drawBoundingVolume); return
const res = await model
try {
let startTime = performance.now()
const inferenceStartTime = performance.now()
// maxLabelPredicted in whole volume of the brain
let maxLabelPredicted = 0
const transpose = modelEntry.enableTranspose
const delay = modelEntry.inferenceDelay
console.log('Inference delay :', delay)
if (transpose) {
cropped_slices_3d_w_pad = await cropped_slices_3d_w_pad.transpose()
console.log('Input transposed for pre-model')
} else {
console.log('Transpose not enabled for pre-model')
}
let i = 1
const layersLength = res.layers.length
console.log('res.layers.length ', layersLength)
const isChannelLast = isModelChnlLast(res)
const batchSize = opts.batchSize
const numOfChan = opts.numOfChan
let adjusted_input_shape
// -- Adjust model input shape
if (isChannelLast) {
res.layers[0].batchInputShape[1] = cropped_slices_3d_w_pad.shape[0]
res.layers[0].batchInputShape[2] = cropped_slices_3d_w_pad.shape[1]
res.layers[0].batchInputShape[3] = cropped_slices_3d_w_pad.shape[2]
adjusted_input_shape = [
batchSize,
res.layers[0].batchInputShape[1],
res.layers[0].batchInputShape[2],
res.layers[0].batchInputShape[3],
numOfChan
]
} else {
res.layers[0].batchInputShape[2] = cropped_slices_3d_w_pad.shape[0]
res.layers[0].batchInputShape[3] = cropped_slices_3d_w_pad.shape[1]
res.layers[0].batchInputShape[4] = cropped_slices_3d_w_pad.shape[2]
adjusted_input_shape = [
batchSize,
numOfChan,
res.layers[0].batchInputShape[2],
res.layers[0].batchInputShape[3],
res.layers[0].batchInputShape[4]
]
}
console.log(' Model batch input shape : ', res.layers[0].batchInputShape)
// -- batchInputShape {Array} input_shape - e.g. [?, D, H, W, Ch] or [?, Ch, D, H, W]
statData.Input_Shape = JSON.stringify(res.layers[0].batchInputShape)
statData.Output_Shape = JSON.stringify(res.output.shape)
statData.Channel_Last = isChannelLast
statData.Model_Param = await getModelNumParameters(res)
statData.Model_Layers = await getModelNumLayers(res)
statData.Model = modelEntry.modelName
statData.Seq_Conv = modelEntry.enableSeqConv
statData.Extra_Info = null
// Determine the number of output channels in the last layer of the model
// e.g. 3, 50, 104
const outputLayer = res.layers[res.layers.length - 1]
console.log('Output Layer : ', outputLayer)
const expected_Num_labels = isChannelLast
? outputLayer.outputShape[outputLayer.outputShape.length - 1]
: outputLayer.outputShape[1]
console.log('Num of output channels : ', expected_Num_labels)
const curTensor = []
curTensor[0] = await cropped_slices_3d_w_pad.reshape(adjusted_input_shape)
const timer = window.setInterval(async function () {
try {
if (res.layers[i].activation.getClassName() !== 'linear') {
curTensor[i] = await res.layers[i].apply(curTensor[i - 1])
} else {
curTensor[i] = await convByOutputChannelAndInputSlicing(
curTensor[i - 1],
res.layers[i].getWeights()[0],
res.layers[i].getWeights()[1],
res.layers[i].strides,
res.layers[i].padding,
res.layers[i].dilationRate,
3
) // important for memory use
}
tf.dispose(curTensor[i - 1])
} catch (err) {
const errTxt = 'Your graphics card (e.g. Intel) may not be compatible with WebGL. ' + err.message
callbackUI(errTxt, -1, errTxt)
window.clearInterval(timer)
tf.engine().endScope()
tf.engine().disposeVariables()
statData.Inference_t = Infinity
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = err.message
statData.Extra_Err_Info = 'Failed while model layer ' + i + ' apply'
callbackUI('', -1, '', statData)
return 0
}
console.log('layer output Tensor shape : ', curTensor[i].shape)
console.log('layer count params ', res.layers[i].countParams())
res.layers[i].dispose()
curTensor[i - 1].dispose()
callbackUI('Layer ' + i.toString(), (i + 1) / layersLength)
if (tf.memory().unreliable) {
const unreliableReasons = 'unreliable reasons :' + tf.memory().reasons
callbackUI(unreliableReasons, NaN, unreliableReasons)
}
if (i === layersLength - 2) {
// Stop before the last layer or classification layer.
window.clearInterval(timer)
// // Create an instance of SequentialConvLayer
// The second parameter is important for memory,
// the larger it is, the more memory it uses
// it was 8, but I set it to 3, got a different error
// let seqConvLayer = new SequentialConvLayer(res, 10, isChannelLast);
const seqConvLayer = await new SequentialConvLayer(res, 10, isChannelLast, callbackUI, false)
// Apply the last output tensor to the seq. instance
const outputTensor = await seqConvLayer.apply(curTensor[i])
callbackUI('seqConvLayer Done')
// -- document.getElementById("progressBarChild").style.width = 0 + "%";;
// Dispose the previous layer input tensor
tf.dispose(curTensor[i])
// delete the used class
// ? delete seqConvLayer;
// You can now use 'outputTensor' as needed
console.log(' Output tensor', outputTensor)
console.log(' Output tensor shape : ', outputTensor.shape)
// Array(3) [ 256, 256, 256 ]
if (outputTensor.shape.length !== 3) {
const msg = 'Output tensor shape should be 3 dims but it is ' + outputTensor.shape.length
callbackUI(msg, -1, msg)
}
console.log(' find array max ')
const curBatchMaxLabel = await outputTensor.max().dataSync()[0]
const Inference_t = ((performance.now() - startTime) / 1000).toFixed(4)
if (maxLabelPredicted < curBatchMaxLabel) {
maxLabelPredicted = curBatchMaxLabel
}
const numSegClasses = maxLabelPredicted + 1
console.log('Predicted num of segmentation classes', numSegClasses)
statData.Actual_Labels = numSegClasses
statData.Expect_Labels = expected_Num_labels
statData.NumLabels_Match = numSegClasses === expected_Num_labels
if (numSegClasses !== expected_Num_labels) {
const msg = 'expected ' + expected_Num_labels + ' labels, but the predicted are ' + numSegClasses
callbackUI(msg, -1, msg)
}
// -- Transpose back to original unpadded size
let outLabelVolume = outputTensor.reshape([
cropped_slices_3d_w_pad.shape[0],
cropped_slices_3d_w_pad.shape[1],
cropped_slices_3d_w_pad.shape[2]
])
tf.dispose(outputTensor)
// Transpose MRI data to be match pytorch/keras input output
if (transpose) {
console.log('outLabelVolume transposed')
outLabelVolume = outLabelVolume.transpose()
}
outLabelVolume = await removeZeroPaddingFrom3dTensor(outLabelVolume, pad, pad, pad)
console.log(' outLabelVolume without padding shape : ', outLabelVolume.shape)
outLabelVolume = await resizeWithZeroPadding(
outLabelVolume,
num_of_slices,
slice_height,
slice_width,
refVoxel,
boundVolSizeArr
)
console.log(' outLabelVolume final shape after resizing : ', outLabelVolume.shape)
// let filterOutWithPreMask = inferenceModelsList[$$("selectModel").getValue() - 1]["filterOutWithPreMask"];
const filterOutWithPreMask = modelEntry.filterOutWithPreMask
// To clean the skull area wrongly segmented inphase-2.
if (pipeline1_out != null && opts.isBrainCropMaskBased && filterOutWithPreMask) {
const bin = await binarizeVolumeDataTensor(pipeline1_out)
outLabelVolume = await outLabelVolume.mul(bin)
}
startTime = performance.now()
// Generate output volume or slices
console.log('Generating correct output')
let outimg
try {
const img = await new Uint32Array(outLabelVolume.dataSync())
const Vshape = outLabelVolume.shape
const Vtype = outLabelVolume.dtype
outimg = await generateOutputSlicesV2(
img,
Vshape,
Vtype,
num_of_slices,
numSegClasses,
slice_height,
slice_width,
modelEntry,
opts,
niftiImage
)
console.log(' Phase-2 num of tensors after generateOutputSlicesV2: ', tf.memory().numTensors)
tf.dispose(outLabelVolume)
tf.engine().endScope()
tf.engine().disposeVariables()
} catch (error) {
// -- Timing data to collect
tf.engine().endScope()
tf.engine().disposeVariables()
console.log('Error while generating output: ', error)
const msg = 'Failed while generating output due to limited browser memory available'
callbackUI(msg, -1, msg)
statData.Inference_t = Inference_t
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = error.message
statData.Extra_Err_Info = 'Failed while generating output'
callbackUI('', -1, '', statData)
return 0
}
const Postprocess_t = ((performance.now() - startTime) / 1000).toFixed(4)
console.log(
'Processing the whole brain volume in tfjs for multi-class output mask took : ',
((performance.now() - inferenceStartTime) / 1000).toFixed(4) + ' Seconds'
)
// -- Timing data to collect
statData.Inference_t = Inference_t
statData.Postprocess_t = Postprocess_t
statData.Status = 'OK'
callbackUI('', -1, '', statData)
callbackUI('Segmentation finished', 0)
callbackImg(outimg, opts, modelEntry)
return 0
} else {
i++
}
}, delay)
} catch (err) {
callbackUI(err.message, -1, err.message)
console.log(
'If webgl context is lost, try to restore webgl context by visit the link ' +
'<a href="https://support.biodigital.com/hc/en-us/articles/218322977-How-to-turn-on-WebGL-in-my-browser">here</a>'
)
if (tf.memory().unreliable) {
const unreliableReasons = 'unreliable reasons :' + tf.memory().reasons
callbackUI(unreliableReasons, NaN, unreliableReasons)
}
}
}
async function inferenceFullVolumePhase2(
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
pipeline1_out,
modelEntry,
statData,
opts,
callbackImg,
callbackUI,
niftiImage
) {
let outimg = []
// --Phase-2, After remove the skull try to allocate brain volume and make inferece
console.log(' ---- Start FullVolume inference phase-II ---- ')
const quantileNorm = modelEntry.enableQuantileNorm
if (quantileNorm) {
// Quantile normalize function needs specific models to be used
console.log('preModel Quantile normalization enabled')
slices_3d = await quantileNormalizeVolumeData(slices_3d)
} else {
// Min Max Nomalize MRI data to be from 0 to 1
console.log('preModel Min Max normalization enabled')
slices_3d = await minMaxNormalizeVolumeData(slices_3d)
}
let mask_3d
if (pipeline1_out == null) {
// preModel is null
// Check if thresholding the MRI to remove noisy voxels for better cropping is needed.
const autoThresholdValue = modelEntry.autoThreshold
if (autoThresholdValue > 0 && autoThresholdValue <= 1) {
// Filtered MRI from noisy voxel below autoThresholdValue
mask_3d = await applyMriThreshold(slices_3d, autoThresholdValue)
} else {
console.log('No valid crop threshold value')
// binarize original image
mask_3d = await slices_3d.greater([0]).asType('bool')
}
} else {
mask_3d = pipeline1_out.greater([0]).asType('bool')
// -- pipeline1_out.dispose()
}
console.log(' mask_3d shape : ', mask_3d.shape)
const [row_min, row_max, col_min, col_max, depth_min, depth_max] = await firstLastNonZero3D(mask_3d)
mask_3d.dispose()
// -- Reference voxel that cropped volume started slice with it
const refVoxel = [row_min, col_min, depth_min]
console.log('refVoxel :', refVoxel)
// -- Starting form refVoxel, size of bounding volume
const boundVolSizeArr = [row_max - row_min + 1, col_max - col_min + 1, depth_max - depth_min + 1]
console.log('boundVolSizeArr :', boundVolSizeArr)
// -- Extract 3d object (e.g. brain)
const cropped_slices_3d = slices_3d.slice(
[row_min, col_min, depth_min],
[row_max - row_min + 1, col_max - col_min + 1, depth_max - depth_min + 1]
)
slices_3d.dispose()
// -- Padding size add to cropped brain
const pad = modelEntry.cropPadding
// Create margin around the bounding volume
let cropped_slices_3d_w_pad = await addZeroPaddingTo3dTensor(cropped_slices_3d, [pad, pad], [pad, pad], [pad, pad])
console.log(' cropped slices_3d with padding shape: ', cropped_slices_3d_w_pad.shape)
cropped_slices_3d.dispose()
// -- Test dim after padding ..
// for (let i = 0; i < cropped_slices_3d_w_pad.rank; i++) {
// if(cropped_slices_3d_w_pad.shape[i] > 256) {
// console.log(" cropped_slices_3d_w_pad > 256 ")
// }
// }
if (opts.drawBoundingVolume) {
let testVol = await removeZeroPaddingFrom3dTensor(cropped_slices_3d_w_pad, pad, pad, pad)
console.log(' outLabelVolume without padding shape : ', testVol.shape)
testVol = await resizeWithZeroPadding(testVol, num_of_slices, slice_height, slice_width, refVoxel, boundVolSizeArr)
console.log(' outLabelVolume final shape after resizing : ', testVol.shape)
draw3dObjBoundingVolume(tf.unstack(testVol), opts, modelEntry, callbackImg)
testVol.dispose()
return 0
}
statData.Brainchop_Ver = 'FullVolume'
let startTime = performance.now()
let adjusted_input_shape = []
const res = await model
try {
startTime = performance.now()
const inferenceStartTime = performance.now()
// maxLabelPredicted in whole volume of the brain
let maxLabelPredicted = 0
const transpose = modelEntry.enableTranspose
const delay = modelEntry.inferenceDelay
console.log('Inference delay :', delay)
if (transpose) {
cropped_slices_3d_w_pad = cropped_slices_3d_w_pad.transpose()
console.log('Input transposed for pre-model')
} else {
console.log('Transpose not enabled for pre-model')
}
let i = 1
const layersLength = res.layers.length
console.log('res.layers.length ', layersLength)
const isChannelLast = await isModelChnlLast(res)
const batchSize = opts.batchSize
const numOfChan = opts.numOfChan
// -- Adjust model input shape
if (isChannelLast) {
res.layers[0].batchInputShape[1] = cropped_slices_3d_w_pad.shape[0]
res.layers[0].batchInputShape[2] = cropped_slices_3d_w_pad.shape[1]
res.layers[0].batchInputShape[3] = cropped_slices_3d_w_pad.shape[2]
adjusted_input_shape = [
batchSize,
res.layers[0].batchInputShape[1],
res.layers[0].batchInputShape[2],
res.layers[0].batchInputShape[3],
numOfChan
]
} else {
res.layers[0].batchInputShape[2] = cropped_slices_3d_w_pad.shape[0]
res.layers[0].batchInputShape[3] = cropped_slices_3d_w_pad.shape[1]
res.layers[0].batchInputShape[4] = cropped_slices_3d_w_pad.shape[2]
adjusted_input_shape = [
batchSize,
numOfChan,
res.layers[0].batchInputShape[2],
res.layers[0].batchInputShape[3],
res.layers[0].batchInputShape[4]
]
}
console.log(' Model batch input shape : ', res.layers[0].batchInputShape)
// -- batchInputShape {Array} input_shape - e.g. [?, D, H, W, Ch] or [?, Ch, D, H, W]
statData.Input_Shape = JSON.stringify(res.layers[0].batchInputShape)
statData.Output_Shape = JSON.stringify(res.output.shape)
statData.Channel_Last = isChannelLast
statData.Model_Param = await getModelNumParameters(res)
statData.Model_Layers = await getModelNumLayers(res)
statData.Model = modelEntry.modelName
statData.Extra_Info = null
const curTensor = []
curTensor[0] = cropped_slices_3d_w_pad.reshape(adjusted_input_shape)
const timer = window.setInterval(async function () {
try {
curTensor[i] = res.layers[i].apply(curTensor[i - 1])
} catch (err) {
callbackUI(err.message, -1, err.message)
window.clearInterval(timer)
tf.engine().endScope()
tf.engine().disposeVariables()
statData.Inference_t = Infinity
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = err.message
statData.Extra_Err_Info = 'Failed while model layer ' + i + ' apply'
callbackUI('', -1, '', statData)
return 0
}
callbackUI('Layer ' + i.toString(), (i + 1) / layersLength)
console.log('layer output Tensor shape : ', curTensor[i].shape)
console.log('layer count params ', res.layers[i].countParams())
res.layers[i].dispose()
curTensor[i - 1].dispose()
if (tf.memory().unreliable) {
const unreliableReasons = 'unreliable reasons :' + tf.memory().reasons
callbackUI(unreliableReasons, NaN, unreliableReasons)
}
if (i === layersLength - 1) {
window.clearInterval(timer)
const axis = isChannelLast ? -1 : 1
console.log(' find argmax ')
console.log('last Tensor shape : ', curTensor[i].shape)
// -- curTensor[i].shape e.g. [ 1, 256, 256, 256, 3 ]
const expected_Num_labels = isChannelLast ? curTensor[i].shape[4] : curTensor[i].shape[1]
let prediction_argmax
// Try for argMax with model output tensor.
try {
const argMaxTime = performance.now()
console.log(' Try tf.argMax for fullVolume ..')
prediction_argmax = tf.argMax(curTensor[i], axis)
console.log('tf.argMax for fullVolume takes : ', ((performance.now() - argMaxTime) / 1000).toFixed(4))
} catch (err1) {
// if channel last
if (axis === -1) {
try {
const argMaxLargeTime = performance.now()
console.log(' tf.argMax failed .. try argMaxLarge ..')
window.alert('tensor2LightBuffer() is not dead code?')
window.alert('argMaxLarge() is not dead code?')
console.log(
'argMaxLarge for fullVolume takes : ',
((performance.now() - argMaxLargeTime) / 1000).toFixed(4)
)
} catch (err2) {
const errTxt = "argMax buffer couldn't be created due to limited memory resources."
callbackUI(errTxt, -1, errTxt)
window.clearInterval(timer)
tf.engine().endScope()
tf.engine().disposeVariables()
statData.Inference_t = Infinity
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = err2.message
statData.Extra_Err_Info = 'prediction_argmax from argMaxLarge failed'
callbackUI('', -1, '', statData)
return 0
}
} else {
// if channel first ..
const errTxt = "argMax buffer couldn't be created due to limited memory resources."
callbackUI(errTxt, -1, errTxt)
prediction_argmax.dispose()
window.clearInterval(timer)
tf.engine().endScope()
tf.engine().disposeVariables()
statData.Inference_t = Infinity
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = err1.message
statData.Extra_Err_Info = 'prediction_argmax from argMaxLarge not support yet channel first'
callbackUI('', -1, '', statData)
return 0
}
}
console.log(' prediction_argmax shape : ', prediction_argmax.shape)
// -- prediction_argmax.shape : [ 1, 256, 256, 256]
const Inference_t = ((performance.now() - startTime) / 1000).toFixed(4)
// outputDataBeforArgmx = Array.from(prediction_argmax.dataSync())
tf.dispose(curTensor[i])
// allPredictions.push({"id": allBatches[j].id, "coordinates": allBatches[j].coordinates, "data": Array.from(prediction_argmax.dataSync()) })
const curBatchMaxLabel = await prediction_argmax.max().dataSync()[0]
if (maxLabelPredicted < curBatchMaxLabel) {
maxLabelPredicted = curBatchMaxLabel
}
const numSegClasses = maxLabelPredicted + 1
console.log('numSegClasses', numSegClasses)
statData.Actual_Labels = numSegClasses
statData.Expect_Labels = expected_Num_labels
statData.NumLabels_Match = numSegClasses === expected_Num_labels
if (numSegClasses !== expected_Num_labels) {
// errTxt = "expected " + expected_Num_labels + " labels, but the predicted are " + numSegClasses + ". For possible solutions please refer to <a href='https://github.com/neuroneural/brainchop/wiki/FAQ#Q3' target='_blank'><b> FAQ </b></a>.", "alert-error"
const errTxt = 'expected ' + expected_Num_labels + ' labels, but the predicted are ' + numSegClasses
callbackUI(errTxt, -1, errTxt)
}
// -- Transpose back to original unpadded size
let outLabelVolume = prediction_argmax.reshape([
cropped_slices_3d_w_pad.shape[0],
cropped_slices_3d_w_pad.shape[1],
cropped_slices_3d_w_pad.shape[2]
])
tf.dispose(prediction_argmax)
// Transpose MRI data to be match pytorch/keras input output
if (transpose) {
console.log('outLabelVolume transposed')
outLabelVolume = outLabelVolume.transpose()
}
outLabelVolume = await removeZeroPaddingFrom3dTensor(outLabelVolume, pad, pad, pad)
console.log(' outLabelVolume without padding shape : ', outLabelVolume.shape)
outLabelVolume = await resizeWithZeroPadding(
outLabelVolume,
num_of_slices,
slice_height,
slice_width,
refVoxel,
boundVolSizeArr
)
console.log(' outLabelVolume final shape after resizing : ', outLabelVolume.shape)
const filterOutWithPreMask = modelEntry.filterOutWithPreMask
// To clean the skull area wrongly segmented in phase-2.
if (pipeline1_out != null && opts.isBrainCropMaskBased && filterOutWithPreMask) {
const bin = binarizeVolumeDataTensor(pipeline1_out)
outLabelVolume = outLabelVolume.mul(bin)
}
startTime = performance.now()
// Generate output volume or slices
console.log('Generating correct output')
try {
const img = new Uint32Array(outLabelVolume.dataSync())
const Vshape = outLabelVolume.shape
const Vtype = outLabelVolume.dtype
tf.dispose(outLabelVolume)
tf.engine().endScope()
tf.engine().disposeVariables()
outimg = await generateOutputSlicesV2(
img,
Vshape,
Vtype,
num_of_slices,
numSegClasses,
slice_height,
slice_width,
modelEntry,
opts,
niftiImage
)
console.log(' Phase-2 num of tensors after generateOutputSlicesV2: ', tf.memory().numTensors)
} catch (error) {
// -- Timing data to collect
tf.engine().endScope()
tf.engine().disposeVariables()
const errTxt = 'Failed while generating output due to limited browser memory available'
callbackUI(errTxt, -1, errTxt)
statData.Inference_t = Inference_t
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = error.message
statData.Extra_Err_Info = 'Failed while generating output'
callbackUI('', -1, '', statData)
return 0
}
const Postprocess_t = ((performance.now() - startTime) / 1000).toFixed(4)
// tf.engine().endScope()
tf.engine().disposeVariables()
console.log(
'Processing the whole brain volume in tfjs for multi-class output mask took : ',
((performance.now() - inferenceStartTime) / 1000).toFixed(4) + ' Seconds'
)
// -- Timing data to collect
statData.Inference_t = Inference_t
statData.Postprocess_t = Postprocess_t
statData.Status = 'OK'
callbackUI('', -1, '', statData)
clearInterval(timer)
callbackUI('Segmentation finished', 0)
callbackImg(outimg, opts, modelEntry)
return 0
}
i++
}, delay)
} catch (err) {
callbackUI(err.message, -1, err.message)
console.log(
'If webgl context is lost, try to restore webgl context by visit the link ' +
'<a href="https://support.biodigital.com/hc/en-us/articles/218322977-How-to-turn-on-WebGL-in-my-browser">here</a>'
)
}
// })
}
async function inferenceFullVolumePhase1(
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
isModelFullVol,
modelEntry,
statData,
opts,
callbackImg,
callbackUI,
niftiImage
) {
statData.No_SubVolumes = 1
// load pre-model for inference first, can be null if no pre-model such as GWM models
if (modelEntry.preModelId) {
const preModel = await load_model(opts.rootURL + inferenceModelsList[modelEntry.preModelId - 1].path)
const transpose = inferenceModelsList[modelEntry.preModelId - 1].enableTranspose
const quantileNorm = inferenceModelsList[modelEntry.preModelId - 1].enableQuantileNorm
let preModel_slices_3d = null
// -- If pre-model is not null then slices_3d mask will be generated..
// -- The mask is needed to remove the skull and set noise in background to 0, and get the brain bounding volume properly
const slices_3d_mask = null
if (quantileNorm) {
// Quantile normalize function needs specific models to be used
console.log('preModel Quantile normalization enabled')
preModel_slices_3d = await quantileNormalizeVolumeData(slices_3d)
} else {
// Min Max Nomalize MRI data to be from 0 to 1
console.log('preModel Min Max normalization enabled')
preModel_slices_3d = await minMaxNormalizeVolumeData(slices_3d)
}
// -- Transpose MRI data to be match pytorch/keras input output
// -- Check if pre-model needs transpose..
if (transpose) {
preModel_slices_3d = await preModel_slices_3d.transpose()
console.log('Input transposed for pre-model')
} else {
console.log('Transpose not enabled for pre-model')
}
statData.Brainchop_Ver = 'PreModel_FV' // e.g. "PreModel_FV"
// preModel.then(function (res) {
const res = await preModel
try {
const inferenceStartTime = performance.now()
const preModelObject = res
// read input shape from model.json object
const preModelBatchInputShape = preModelObject.layers[0].batchInputShape
console.log(' Pre-Model batch input shape : ', preModelBatchInputShape)
// -- Verify input shape
if (preModelBatchInputShape.length !== 5) {
const errTxt = 'The pre-model input shape must be 5D '
callbackUI(errTxt, -1, errTxt)
return 0
}
const isPreModelChannelLast = isModelChnlLast(preModelObject)
const batchSize = opts.batchSize
const numOfChan = opts.numOfChan
let batch_D, batch_H, batch_W
let preModel_input_shape
if (isPreModelChannelLast) {
console.log('Pre-Model Channel Last')
if (isNaN(preModelBatchInputShape[4]) || preModelBatchInputShape[4] !== 1) {
const errTxt = 'The number of channels for pre-model input shape must be 1'
callbackUI(errTxt, -1, errTxt)
return 0
}
batch_D = preModelBatchInputShape[1]
batch_H = preModelBatchInputShape[2]
batch_W = preModelBatchInputShape[3]
preModel_input_shape = [batchSize, batch_D, batch_H, batch_W, numOfChan]
} else {
console.log('Pre-Model Channel First')
if (isNaN(preModelBatchInputShape[1]) || preModelBatchInputShape[1] !== 1) {
const errTxt = 'The number of channels for pre-model input shape must be 1'
callbackUI(errTxt, -1, errTxt)
return 0
}
batch_D = preModelBatchInputShape[2]
batch_H = preModelBatchInputShape[3]
batch_W = preModelBatchInputShape[4]
preModel_input_shape = [batchSize, numOfChan, batch_D, batch_H, batch_W]
}
statData.Input_Shape = JSON.stringify(preModel_input_shape)
statData.Output_Shape = JSON.stringify(preModelObject.output.shape)
statData.Channel_Last = isPreModelChannelLast
statData.Model_Param = await getModelNumParameters(preModelObject)
statData.Model_Layers = await getModelNumLayers(preModelObject)
// maxLabelPredicted in whole volume of the brain
let maxLabelPredicted = 0
const delay = inferenceModelsList[modelEntry.preModelId - 1].inferenceDelay
let i = 1
const layersLength = res.layers.length
const curTensor = []
// -- reshape MRI to model input shape
curTensor[0] = preModel_slices_3d.reshape(preModel_input_shape)
// Dispose the volume
tf.dispose(preModel_slices_3d)
const timer = window.setInterval(async function () {
try {
curTensor[i] = await res.layers[i].apply(curTensor[i - 1])
} catch (err) {
const errTxt = 'Your graphics card (e.g. Intel) may not be compatible with WebGL. ' + err.message
callbackUI(errTxt, -1, errTxt)
window.clearInterval(timer)
tf.engine().endScope()
tf.engine().disposeVariables()
statData.Inference_t = Infinity
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = err.message
statData.Extra_Err_Info = 'PreModel Failed while model layer ' + i + ' apply'
callbackUI('', -1, '', statData)
return 0
}
res.layers[i].dispose()
curTensor[i - 1].dispose()
callbackUI('Layer ' + i.toString(), (i + 1) / layersLength)
if (tf.memory().unreliable) {
const unreliableReasons = 'unreliable reasons :' + tf.memory().reasons
callbackUI(unreliableReasons, NaN, unreliableReasons)
}
if (i === layersLength - 1) {
window.clearInterval(timer)
// -- prediction = res.layers[res.layers.length-1].apply(curTensor[i])
// -- curTensor[i].print()
// -- outputDataBeforArgmx = Array.from(curTensor[i].dataSync())
const axis = isPreModelChannelLast ? -1 : 1
console.log(' find argmax ')
console.log('last Tensor shape : ', curTensor[i].shape)
// -- curTensor[i].shape : [ 1, 256, 256, 256, 3 ]
const expected_Num_labels = isPreModelChannelLast ? curTensor[i].shape[4] : curTensor[i].shape[1]
let prediction_argmax
// Try for argMax with model output tensor.
try {
console.log(' Try tf.argMax for fullVolume ..')
prediction_argmax = await tf.argMax(curTensor[i], axis)
} catch (err1) {
// if channel last
if (axis === -1) {
try {
const argMaxLargeTime = performance.now()
console.log(' tf.argMax failed .. try argMaxLarge ..')
window.alert('tensor2LightBuffer() is not dead code?')
window.alert('argMaxLarge() is not dead code?')
console.log(
'argMaxLarge for fullVolume takes : ',
((performance.now() - argMaxLargeTime) / 1000).toFixed(4)
)
} catch (err2) {
const errTxt = "argMax buffer couldn't be created due to limited memory resources."
callbackUI(errTxt, -1, errTxt)
prediction_argmax.dispose()
window.clearInterval(timer)
tf.engine().endScope()
tf.engine().disposeVariables()
statData.Inference_t = Infinity
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = err2.message
statData.Extra_Err_Info = 'preModel prediction_argmax from argMaxLarge failed'
callbackUI('', -1, '', statData)
return 0
}
} else {
// if channel first ..
const errTxt = "argMax buffer couldn't be created due to limited memory resources."
callbackUI(errTxt, -1, errTxt)
prediction_argmax.dispose()
window.clearInterval(timer)
tf.engine().endScope()
tf.engine().disposeVariables()
statData.Inference_t = Infinity
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = err1.message
statData.Extra_Err_Info = 'preModel prediction_argmax from argMaxLarge not support yet channel first'
callbackUI('', -1, '', statData)
return 0
}
}
console.log(' Pre-model prediction_argmax shape : ', prediction_argmax.shape)
// -- prediction_argmax.shape : [ 1, 256, 256, 256]
const Inference_t = ((performance.now() - inferenceStartTime) / 1000).toFixed(4)
tf.dispose(curTensor[i])
console.log(' Pre-model find array max ')
const curBatchMaxLabel = await prediction_argmax.max().dataSync()[0]
if (maxLabelPredicted < curBatchMaxLabel) {
maxLabelPredicted = curBatchMaxLabel
}
const numSegClasses = maxLabelPredicted + 1
console.log('Pre-model numSegClasses', numSegClasses)
statData.Actual_Labels = numSegClasses
statData.Expect_Labels = expected_Num_labels
statData.NumLabels_Match = numSegClasses === expected_Num_labels
// -- Transpose back to original unpadded size
let outLabelVolume = await prediction_argmax.reshape([num_of_slices, slice_height, slice_width])
tf.dispose(prediction_argmax)
// Transpose MRI data to be match pytorch/keras input output
if (transpose) {
console.log('Pre-model outLabelVolume transposed')
outLabelVolume = outLabelVolume.transpose()
}
const startTime = performance.now()
// Generate output volume or slices
console.log('Generating pre-model output')
let slices_3d_mask
try {
const unstackOutVolumeTensor = await tf.unstack(outLabelVolume)
slices_3d_mask = await generateBrainMask(
unstackOutVolumeTensor,
num_of_slices,
slice_height,
slice_width,
modelEntry,
opts,
callbackUI,
callbackImg,
false
)
await tf.dispose(outLabelVolume)
console.log(' Phase-1 num of tensors after generateBrainMask: ', tf.memory().numTensors)
} catch (error) {
// -- Timing data to collect
tf.engine().endScope()
tf.engine().disposeVariables()
const errTxt = 'Failed while generating pre-model output due to limited browser memory available'
callbackUI(errTxt, -1, errTxt)
statData.Inference_t = Inference_t
statData.Postprocess_t = Infinity
statData.Status = 'Fail'
statData.Error_Type = error.message
statData.Extra_Err_Info = 'Pre-model failed while generating output'
callbackUI('', -1, '', statData)
return 0
}
const Postprocess_t = ((performance.now() - startTime) / 1000).toFixed(4)
console.log(
'Pre-model processing the whole brain volume in tfjs tooks for multi-class output mask : ',
((performance.now() - inferenceStartTime) / 1000).toFixed(4) + ' Seconds'
)
// -- Timing data to collect
statData.Inference_t = Inference_t
statData.Postprocess_t = Postprocess_t
statData.Status = 'OK'
callbackUI('', -1, '', statData)
if (slices_3d_mask == null) {
const msg = 'slice_3d_mask failed ...'
callbackUI(msg, -1, msg)
return 0
} else {
// --Phase-2, After remove the skull try to allocate brain volume and make inferece
console.log('--- pre-model done ---')
// --mask_3d = slices_3d_mask.greater([0]).asType('bool')
// --slices_3d_mask.dispose()
if (isModelFullVol) {
if (modelEntry.enableSeqConv) {
// Mask cropping & seq conv
// Non-Atlas model (e.g. GWM) needs sequential convolution layer.
// Sequential convolution layer to be used after cropping - slow but reliable on most machines
console.log('------ Mask Cropping & Seq Convoluton ------')
await inferenceFullVolumeSeqCovLayerPhase2(
opts,
modelEntry,
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
slices_3d_mask,
callbackUI,
callbackImg,
statData,
niftiImage
)
return 0
// inferenceFullVolumeSeqCovLayerPhase2(model, slices_3d.transpose(), num_of_slices, slice_height, slice_width, slices_3d_mask)
} else {
// Mask cropping BUT no seq conv
console.log('------ Mask Cropping - NO Seq Convoluton ------')
await inferenceFullVolumePhase2(
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
slices_3d_mask,
modelEntry,
statData,
opts,
callbackImg,
callbackUI,
niftiImage
)
// inferenceFullVolumePhase2(model, slices_3d.transpose(), num_of_slices, slice_height, slice_width, slices_3d_mask)
}
} else {
// -- In version 3.0.0 this function not used
window.alert('inferenceSubVolumes() is not dead code?')
}
}
}
i++
}, delay)
} catch (err) {
callbackUI(err.message, -1, err.message)
console.log(
'If webgl context is lost, try to restore webgl context by visit the link ' +
'<a href="https://support.biodigital.com/hc/en-us/articles/218322977-How-to-turn-on-WebGL-in-my-browser">here</a>'
)
// document.getElementById("webGl2Status").style.backgroundColor = isWebGL2ContextLost() ? "Red" : "Green"
// document.getElementById("memoryStatus").style.backgroundColor = tf.memory().unreliable ? "Red" : "Green"
}
// })
// -- if(...) end
} else {
// No preModel
// --Phase-2, After remove the skull try to allocate brain volume and make inferece
console.log('--- No pre-model is selected ---')
console.log('------ Run voxel cropping ------')
// -- mask_3d = slices_3d.greater([0]).asType('bool')
if (isModelFullVol) {
if (modelEntry.enableSeqConv) {
// Voxel cropping & seq conv
// Non-Atlas model (e.g. GWM) needs sequential convolution layer.
// Sequential convolution layer to be used after cropping - slow but reliable on most machines
console.log('------ Seq Convoluton ------')
await inferenceFullVolumeSeqCovLayerPhase2(
opts,
modelEntry,
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
null,
callbackUI,
callbackImg,
statData,
niftiImage
)
} else {
// Voxel cropping BUT no seq conv
// todo: we do not use result const outimg = await
inferenceFullVolumePhase2(
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
null,
modelEntry,
statData,
opts,
callbackImg,
callbackUI,
niftiImage
)
}
} else {
// -- In version 3.0.0 this function not used
window.alert('inferenceSubVolumes() is not dead code?')
}
}
}
async function enableProductionMode(textureF16Flag = true) {
// -- tf.setBackend('cpu')
// -- tf.removeBackend('cpu')
// -- Calling enableProdMode() method
await tf.enableProdMode()
// -- Setting debug mode of the environment
tf.env().set('DEBUG', false)
tf.env().set('WEBGL_FORCE_F16_TEXTURES', textureF16Flag)
// -- set this flag so that textures are deleted when tensors are disposed.
tf.env().set('WEBGL_DELETE_TEXTURE_THRESHOLD', -1)
// -- tf.env().set('WEBGL_PACK', false)
// -- Put ready after sets above
await tf.ready()
// -- Printing output
console.log('tf env() flags :', tf.env().flags)
console.log('tf env() features :', tf.env().features)
console.log('tf env total features: ', Object.keys(tf.env().features).length)
console.log(tf.getBackend())
}
export async function runInference(opts, modelEntry, niftiHeader, niftiImage, callbackImg, callbackUI) {
const statData = []
statData.startTime = Date.now() // for common webworker/mainthread do not use performance.now()
callbackUI('Segmentation started', 0)
const startTime = performance.now()
const batchSize = opts.batchSize
const numOfChan = opts.numOfChan
if (isNaN(batchSize) || batchSize !== 1) {
const errTxt = 'The batch Size for input shape must be 1'
callbackUI(errTxt, -1, errTxt)
return 0
}
if (isNaN(numOfChan) || numOfChan !== 1) {
const errTxt = 'The number of channels for input shape must be 1'
callbackUI(errTxt, -1, errTxt)
return 0
}
tf.engine().startScope()
console.log('Batch size: ', batchSize)
console.log('Num of Channels: ', numOfChan)
const model = await load_model(opts.rootURL + modelEntry.path)
await enableProductionMode(true)
statData.TF_Backend = tf.getBackend()
const modelObject = model
let batchInputShape = []
// free global variable of 16777216 voxel
// allOutputSlices3DCC1DimArray = []
// outputSceneRendered = false
// read input shape from model.json object
batchInputShape = modelObject.layers[0].batchInputShape
console.log(' Model batch input shape : ', batchInputShape)
// -- Verify input shape
if (batchInputShape.length !== 5) {
const errTxt = 'The model input shape must be 5D'
callbackUI(errTxt, -1, errTxt)
return 0
}
let batch_D, batch_H, batch_W
const slice_width = niftiHeader.dims[1]
const slice_height = niftiHeader.dims[2]
const num_of_slices = niftiHeader.dims[3]
const isChannelLast = await isModelChnlLast(modelObject)
if (isChannelLast) {
console.log('Model Channel Last')
if (isNaN(batchInputShape[4]) || batchInputShape[4] !== 1) {
const errTxt = 'The number of channels for input shape must be 1'
callbackUI(errTxt, -1, errTxt)
return 0
}
batch_D = batchInputShape[1]
batch_H = batchInputShape[2]
batch_W = batchInputShape[3]
} else {
console.log('Model Channel First')
if (isNaN(batchInputShape[1]) || batchInputShape[1] !== 1) {
const errTxt = 'The number of channels for input shape must be 1'
callbackUI(errTxt, -1, errTxt)
return 0
}
batch_D = batchInputShape[2]
batch_H = batchInputShape[3]
batch_W = batchInputShape[4]
}
// const input_shape = [batchSize, numOfChan, batch_D, batch_H, batch_W]
// //-- Atlas version check
// if ( (batch_D > 30) && (batch_H == 256) && (batch_W == 256) ) {
// const errTxt = "The subvolume dimension in z-axis shouldn't exceed 30 number of slices for browser limitation"
// callbackUI(errTxt, -1, errTxt)
// return 0
// }
// --Check whether the model will make inference at once as FullVolumeModel
let isModelFullVol
if (batch_D === 256 && batch_H === 256 && batch_W === 256) {
isModelFullVol = true
} else {
isModelFullVol = false
}
statData.isModelFullVol = isModelFullVol
// Model output number of segmentations
let slices_3d = await getAllSlicesDataAsTF3D(num_of_slices, niftiHeader, niftiImage)
const transpose = modelEntry.enableTranspose
const enableCrop = modelEntry.enableCrop
if (isModelFullVol) {
if (enableCrop) {
// FullVolume with Crop option before inference ..
// pre-model to mask the volume, can also be null and the cropping will be on the MRI.
await inferenceFullVolumePhase1(
model,
slices_3d,
num_of_slices,
slice_height,
slice_width,
isModelFullVol,
modelEntry,
statData,
opts,
callbackImg,
callbackUI,
niftiImage
)
} else {
// Transpose MRI data to be match pytorch/keras input output
console.log('Cropping Disabled')
if (transpose) {
slices_3d = slices_3d.transpose()
console.log('Input transposed')
} else {
console.log('Transpose NOT Enabled')
}
const enableSeqConv = modelEntry.enableSeqConv
if (enableSeqConv) {
console.log('Seq Convoluton Enabled')
window.alert('inferenceFullVolumeSeqCovLayer() is not dead code?')
} else {
console.log('Seq Convoluton Disabled')
window.alert('inferenceFullVolume() is not dead code?')
}
}
}
}