-
Notifications
You must be signed in to change notification settings - Fork 784
Expand file tree
/
Copy pathsample.py
More file actions
1177 lines (1050 loc) · 48.5 KB
/
sample.py
File metadata and controls
1177 lines (1050 loc) · 48.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
# Copyright (c) MONAI Consortium
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import logging
import math
import os
import random
import time
from datetime import datetime
import warnings
import gc
import monai
import torch
from monai.data import MetaTensor
from monai.inferers.inferer import DiffusionInferer
from monai.transforms import Compose, SaveImage
from monai.utils import set_determinism
from tqdm import tqdm
from monai.inferers.inferer import SlidingWindowInferer
from monai.networks.schedulers import RFlowScheduler, DDPMScheduler
from .augmentation import augmentation
from .find_masks import find_masks
from .quality_check import is_outlier
from .utils import (
binarize_labels,
general_mask_generation_post_process,
get_body_region_index_from_mask,
remap_labels,
dynamic_infer,
)
class ReconModel(torch.nn.Module):
"""
A PyTorch module for reconstructing images from latent representations.
Attributes:
autoencoder: The autoencoder model used for decoding.
scale_factor: Scaling factor applied to the input before decoding.
"""
def __init__(self, autoencoder, scale_factor):
super().__init__()
self.autoencoder = autoencoder
self.scale_factor = scale_factor
def forward(self, z):
"""
Decode the input latent representation to an image.
Args:
z (torch.Tensor): The input latent representation.
Returns:
torch.Tensor: The reconstructed image.
"""
recon_pt_nda = self.autoencoder.decode_stage_2_outputs(z / self.scale_factor)
return recon_pt_nda
def initialize_noise_latents(latent_shape, device):
"""
Initialize random noise latents for image generation with float16.
Args:
latent_shape (tuple): The shape of the latent space.
device (torch.device): The device to create the tensor on.
Returns:
torch.Tensor: Initialized noise latents.
"""
return (
torch.randn(
[
1,
]
+ list(latent_shape)
)
.half()
.to(device)
)
def ldm_conditional_sample_one_mask(
autoencoder,
diffusion_unet,
noise_scheduler,
scale_factor,
anatomy_size,
device,
latent_shape,
label_dict_remap_json,
num_inference_steps=1000,
autoencoder_sliding_window_infer_size=[96, 96, 96],
autoencoder_sliding_window_infer_overlap=0.6667,
):
"""
Generate a single synthetic mask using a latent diffusion model.
Args:
autoencoder (nn.Module): The autoencoder model.
diffusion_unet (nn.Module): The diffusion U-Net model.
noise_scheduler: The noise scheduler for the diffusion process.
scale_factor (float): Scaling factor for the latent space.
anatomy_size (torch.Tensor): Tensor specifying the desired anatomy sizes.
device (torch.device): The device to run the computation on.
latent_shape (tuple): The shape of the latent space.
label_dict_remap_json (str): Path to the JSON file for label remapping.
num_inference_steps (int): Number of inference steps for the diffusion process.
autoencoder_sliding_window_infer_size (list, optional): Size of the sliding window for inference. Defaults to [96, 96, 96].
autoencoder_sliding_window_infer_overlap (float, optional): Overlap ratio for sliding window inference. Defaults to 0.6667.
Returns:
torch.Tensor: The generated synthetic mask.
"""
recon_model = ReconModel(autoencoder=autoencoder, scale_factor=scale_factor).to(device)
with torch.no_grad(), torch.amp.autocast("cuda"):
# Generate random noise
latents = initialize_noise_latents(latent_shape, device)
anatomy_size = torch.FloatTensor(anatomy_size).unsqueeze(0).unsqueeze(0).half().to(device)
# synthesize latents
if isinstance(noise_scheduler, DDPMScheduler) and num_inference_steps < noise_scheduler.num_train_timesteps:
warnings.warn(
"**************************************************************\n"
"* WARNING: Mask noise_scheduler is a DDPMScheduler.\n"
"* We expect num_inference_steps = noise_scheduler.num_train_timesteps"
f" = {noise_scheduler.num_train_timesteps}.\n"
f"* Yet got num_inference_steps = {num_inference_steps}.\n"
"* The generated image quality is not guaranteed.\n"
"**************************************************************"
)
noise_scheduler.set_timesteps(num_inference_steps=num_inference_steps)
# mask generator is DDPM
inferer_ddpm = DiffusionInferer(noise_scheduler)
latents = inferer_ddpm.sample(
input_noise=latents,
diffusion_model=diffusion_unet,
scheduler=noise_scheduler,
verbose=True,
conditioning=anatomy_size.to(device),
)
inferer = SlidingWindowInferer(
roi_size=autoencoder_sliding_window_infer_size,
sw_batch_size=1,
progress=True,
mode="gaussian",
overlap=autoencoder_sliding_window_infer_overlap,
sw_device=device,
device=torch.device("cpu"),
)
synthetic_mask = dynamic_infer(inferer, recon_model, latents)
synthetic_mask = torch.softmax(synthetic_mask, dim=1)
synthetic_mask = torch.argmax(synthetic_mask, dim=1, keepdim=True)
# mapping raw index to 132 labels
synthetic_mask = remap_labels(synthetic_mask, label_dict_remap_json)
###### post process #####
data = synthetic_mask.squeeze().cpu().detach().numpy()
labels = [23, 24, 26, 27, 128]
target_tumor_label = None
for index, size in enumerate(anatomy_size[0, 0, 5:10]):
if size.item() != -1.0:
target_tumor_label = labels[index]
logging.info(f"target_tumor_label for postprocess:{target_tumor_label}")
data = general_mask_generation_post_process(data, target_tumor_label=target_tumor_label, device=device)
synthetic_mask = torch.from_numpy(data).unsqueeze(0).unsqueeze(0).to(device)
return synthetic_mask
def ldm_conditional_sample_one_image(
autoencoder,
diffusion_unet,
controlnet,
noise_scheduler,
scale_factor,
device,
combine_label_or,
spacing_tensor,
latent_shape,
output_size,
noise_factor,
top_region_index_tensor=None,
bottom_region_index_tensor=None,
modality_tensor=None,
num_inference_steps=1000,
autoencoder_sliding_window_infer_size=[96, 96, 96],
autoencoder_sliding_window_infer_overlap=0.6667,
):
"""
Generate a single synthetic image using a latent diffusion model with controlnet.
Args:
autoencoder (nn.Module): The autoencoder model.
diffusion_unet (nn.Module): The diffusion U-Net model.
controlnet (nn.Module): The controlnet model.
noise_scheduler: The noise scheduler for the diffusion process.
scale_factor (float): Scaling factor for the latent space.
device (torch.device): The device to run the computation on.
combine_label_or (torch.Tensor): The combined label tensor.
spacing_tensor (torch.Tensor): Tensor specifying the spacing.
latent_shape (tuple): The shape of the latent space.
output_size (tuple): The desired output size of the image.
noise_factor (float): Factor to scale the initial noise.
top_region_index_tensor (torch.Tensor): Tensor specifying the top region index. Defaults to None.
bottom_region_index_tensor (torch.Tensor): Tensor specifying the bottom region index. Defaults to None.
modality_tensor (torch.Tensor): Int Tensor specifying the modality.
num_inference_steps (int): Number of inference steps for the diffusion process.
autoencoder_sliding_window_infer_size (list, optional): Size of the sliding window for inference. Defaults to [96, 96, 96].
autoencoder_sliding_window_infer_overlap (float, optional): Overlap ratio for sliding window inference. Defaults to 0.6667.
Returns:
tuple: A tuple containing the synthetic image and its corresponding label.
"""
# CT image intensity range
a_min = -1000
a_max = 1000
# autoencoder output intensity range
b_min = 0.0
b_max = 1
include_body_region = diffusion_unet.include_top_region_index_input
include_modality = diffusion_unet.num_class_embeds is not None
recon_model = ReconModel(autoencoder=autoencoder, scale_factor=scale_factor).to(device)
with torch.no_grad(), torch.amp.autocast("cuda"):
logging.info("---- Start generating latent features... ----")
start_time = time.time()
# generate segmentation mask
combine_label = combine_label_or.to(device)
if (
output_size[0] != combine_label.shape[2]
or output_size[1] != combine_label.shape[3]
or output_size[2] != combine_label.shape[4]
):
logging.info(
"output_size is not a desired value. Need to interpolate the mask to match with output_size. The result image will be very low quality."
)
combine_label = torch.nn.functional.interpolate(combine_label, size=output_size, mode="nearest")
controlnet_cond_vis = binarize_labels(combine_label.as_tensor().long()).half()
# Generate random noise
latents = initialize_noise_latents(latent_shape, device) * noise_factor
# synthesize latents
if isinstance(noise_scheduler, RFlowScheduler):
noise_scheduler.set_timesteps(
num_inference_steps=num_inference_steps,
input_img_size_numel=torch.prod(torch.tensor(latents.shape[2:])),
)
else:
noise_scheduler.set_timesteps(num_inference_steps=num_inference_steps)
if isinstance(noise_scheduler, DDPMScheduler) and num_inference_steps < noise_scheduler.num_train_timesteps:
warnings.warn(
"**************************************************************\n"
"* WARNING: Image noise_scheduler is a DDPMScheduler.\n"
"* We expect num_inference_steps = noise_scheduler.num_train_timesteps"
f" = {noise_scheduler.num_train_timesteps}.\n"
f"* Yet got num_inference_steps = {num_inference_steps}.\n"
"* The generated image quality is not guaranteed.\n"
"**************************************************************"
)
all_timesteps = noise_scheduler.timesteps
all_next_timesteps = torch.cat((all_timesteps[1:], torch.tensor([0], dtype=all_timesteps.dtype)))
progress_bar = tqdm(
zip(all_timesteps, all_next_timesteps),
total=min(len(all_timesteps), len(all_next_timesteps)),
)
for t, next_t in progress_bar:
# get controlnet output
# Create a dictionary to store the inputs
controlnet_inputs = {
"x": latents,
"timesteps": torch.Tensor((t,)).to(device),
"controlnet_cond": controlnet_cond_vis,
}
if include_modality:
controlnet_inputs.update(
{
"class_labels": modality_tensor,
}
)
down_block_res_samples, mid_block_res_sample = controlnet(**controlnet_inputs)
# get diffusion network output
# Create a dictionary to store the inputs
unet_inputs = {
"x": latents,
"timesteps": torch.Tensor((t,)).to(device),
"spacing_tensor": spacing_tensor,
"down_block_additional_residuals": down_block_res_samples,
"mid_block_additional_residual": mid_block_res_sample,
}
# Add extra arguments if include_body_region is True
if include_body_region:
unet_inputs.update(
{
"top_region_index_tensor": top_region_index_tensor,
"bottom_region_index_tensor": bottom_region_index_tensor,
}
)
if include_modality:
unet_inputs.update(
{
"class_labels": modality_tensor,
}
)
model_output = diffusion_unet(**unet_inputs)
if not isinstance(noise_scheduler, RFlowScheduler):
latents, _ = noise_scheduler.step(model_output, t, latents) # type: ignore
else:
latents, _ = noise_scheduler.step(model_output, t, latents, next_t) # type: ignore
end_time = time.time()
logging.info(f"---- DM/ControlNet Latent features generation time: {end_time - start_time} seconds ----")
del (
unet_inputs,
controlnet_inputs,
model_output,
controlnet_cond_vis,
down_block_res_samples,
mid_block_res_sample,
)
gc.collect()
torch.cuda.empty_cache()
# decode latents to synthesized images
logging.info("---- Start decoding latent features into images... ----")
start_time = time.time()
inferer = SlidingWindowInferer(
roi_size=autoencoder_sliding_window_infer_size,
sw_batch_size=1,
progress=True,
mode="gaussian",
overlap=autoencoder_sliding_window_infer_overlap,
sw_device=device,
device=torch.device("cpu"),
)
synthetic_images = dynamic_infer(inferer, recon_model, latents)
synthetic_images = torch.clip(synthetic_images, b_min, b_max).cpu()
end_time = time.time()
logging.info(f"---- Image VAE decoding time: {end_time - start_time} seconds ----")
## post processing:
# project output to [0, 1]
synthetic_images = (synthetic_images - b_min) / (b_max - b_min)
# project output to [-1000, 1000]
synthetic_images = synthetic_images * (a_max - a_min) + a_min
# regularize background intensities
synthetic_images = crop_img_body_mask(synthetic_images, combine_label)
torch.cuda.empty_cache()
return synthetic_images, combine_label
def filter_mask_with_organs(combine_label, anatomy_list):
"""
Filter a mask to only include specified organs.
Args:
combine_label (torch.Tensor): The input mask.
anatomy_list (list): List of organ labels to keep.
Returns:
torch.Tensor: The filtered mask.
"""
# final output mask file has shape of output_size, contains labels in anatomy_list
# it is already interpolated to target size
combine_label = combine_label.long()
# filter out the organs that are not in anatomy_list
for i in range(len(anatomy_list)):
organ = anatomy_list[i]
# replace it with a negative value so it will get mixed
combine_label[combine_label == organ] = -(i + 1)
# zero-out voxels with value not in anatomy_list
combine_label[combine_label > 0] = 0
# output positive values
combine_label = -combine_label
return combine_label
def crop_img_body_mask(synthetic_images, combine_label):
"""
Crop the synthetic image using a body mask.
Args:
synthetic_images (torch.Tensor): The synthetic images.
combine_label (torch.Tensor): The body mask.
Returns:
torch.Tensor: The cropped synthetic images.
"""
synthetic_images[combine_label == 0] = -1000
return synthetic_images
def check_input(
body_region,
anatomy_list,
label_dict_json,
output_size,
spacing,
controllable_anatomy_size=[("pancreas", 0.5)],
):
"""
Validate input parameters for image generation.
Args:
body_region (list): List of body regions.
anatomy_list (list): List of anatomical structures.
label_dict_json (str): Path to the label dictionary JSON file.
output_size (tuple): Desired output size of the image.
spacing (tuple): Desired voxel spacing.
controllable_anatomy_size (list): List of tuples specifying controllable anatomy sizes.
Raises:
ValueError: If any input parameter is invalid.
"""
# check output_size and spacing format
if output_size[0] != output_size[1]:
raise ValueError(f"The first two components of output_size need to be equal, yet got {output_size}.")
if (output_size[0] not in [256, 384, 512]) or (output_size[2] not in [128, 256, 384, 512, 640, 768]):
raise ValueError(
f"The output_size[0] have to be chosen from [256, 384, 512], and output_size[2] have to be chosen from [128, 256, 384, 512, 640, 768], yet got {output_size}."
)
if spacing[0] != spacing[1]:
raise ValueError(f"The first two components of spacing need to be equal, yet got {spacing}.")
if spacing[0] < 0.5 or spacing[0] > 3.0 or spacing[2] < 0.5 or spacing[2] > 5.0:
raise ValueError(
f"spacing[0] have to be between 0.5 and 3.0 mm, spacing[2] have to be between 0.5 and 5.0 mm, yet got {spacing}."
)
if output_size[0] * spacing[0] < 256:
FOV = [output_size[axis] * spacing[axis] for axis in range(3)]
raise ValueError(
f"`'spacing'({spacing}mm) and 'output_size'({output_size}) together decide the output field of view (FOV). The FOV will be {FOV}mm. We recommend the FOV in x and y axis to be at least 256mm for head, and at least 384mm for other body regions like abdomen. There is no such restriction for z-axis."
)
if controllable_anatomy_size == None:
logging.info(f"`controllable_anatomy_size` is not provided.")
return
# check controllable_anatomy_size format
if len(controllable_anatomy_size) > 10:
raise ValueError(
f"The length of list controllable_anatomy_size has to be less than 10. Yet got length equal to {len(controllable_anatomy_size)}."
)
available_controllable_organ = [
"liver",
"gallbladder",
"stomach",
"pancreas",
"colon",
]
available_controllable_tumor = [
"hepatic tumor",
"bone lesion",
"lung tumor",
"colon cancer primaries",
"pancreatic tumor",
]
available_controllable_anatomy = available_controllable_organ + available_controllable_tumor
controllable_tumor = []
controllable_organ = []
for controllable_anatomy_size_pair in controllable_anatomy_size:
if controllable_anatomy_size_pair[0] not in available_controllable_anatomy:
raise ValueError(
f"The controllable_anatomy have to be chosen from {available_controllable_anatomy}, yet got {controllable_anatomy_size_pair[0]}."
)
if controllable_anatomy_size_pair[0] in available_controllable_tumor:
controllable_tumor += [controllable_anatomy_size_pair[0]]
if controllable_anatomy_size_pair[0] in available_controllable_organ:
controllable_organ += [controllable_anatomy_size_pair[0]]
if controllable_anatomy_size_pair[1] == -1:
continue
if controllable_anatomy_size_pair[1] < 0 or controllable_anatomy_size_pair[1] > 1.0:
raise ValueError(
f"The controllable size scale have to be between 0 and 1,0, or equal to -1, yet got {controllable_anatomy_size_pair[1]}."
)
if len(controllable_tumor + controllable_organ) != len(list(set(controllable_tumor + controllable_organ))):
raise ValueError(f"Please do not repeat controllable_anatomy. Got {controllable_tumor + controllable_organ}.")
if len(controllable_tumor) > 1:
raise ValueError(f"Only one controllable tumor is supported. Yet got {controllable_tumor}.")
if len(controllable_anatomy_size) > 0:
logging.info(
f"`controllable_anatomy_size` is not empty.\nWe will ignore `body_region` and `anatomy_list` and synthesize based on `controllable_anatomy_size`: ({controllable_anatomy_size})."
)
else:
logging.info(
f"`controllable_anatomy_size` is empty.\nWe will synthesize based on `body_region`: ({body_region}) and `anatomy_list`: ({anatomy_list})."
)
# check body_region format
available_body_region = [
"head",
"chest",
"thorax",
"abdomen",
"pelvis",
"lower",
]
for region in body_region:
if region not in available_body_region:
raise ValueError(
f"The components in body_region have to be chosen from {available_body_region}, yet got {region}."
)
# check anatomy_list format
with open(label_dict_json) as f:
label_dict = json.load(f)
for anatomy in anatomy_list:
if anatomy not in label_dict.keys():
raise ValueError(
f"The components in anatomy_list have to be chosen from {label_dict.keys()}, yet got {anatomy}."
)
logging.info(f"The generate results will have voxel size to be {spacing}mm, volume size to be {output_size}.")
return
class LDMSampler:
"""
A sampler class for generating synthetic medical images and masks using latent diffusion models.
Attributes:
Various attributes related to model configuration, input parameters, and generation settings.
"""
def __init__(
self,
body_region,
anatomy_list,
all_mask_files_json,
all_anatomy_size_condtions_json,
all_mask_files_base_dir,
label_dict_json,
label_dict_remap_json,
autoencoder,
diffusion_unet,
controlnet,
noise_scheduler,
scale_factor,
mask_generation_autoencoder,
mask_generation_diffusion_unet,
mask_generation_scale_factor,
mask_generation_noise_scheduler,
device,
latent_shape,
mask_generation_latent_shape,
output_size,
output_dir,
controllable_anatomy_size,
image_output_ext=".nii.gz",
label_output_ext=".nii.gz",
real_img_median_statistics="./configs/image_median_statistics.json",
spacing=[1, 1, 1],
modality=1,
num_inference_steps=None,
mask_generation_num_inference_steps=None,
random_seed=None,
autoencoder_sliding_window_infer_size=[96, 96, 96],
autoencoder_sliding_window_infer_overlap=0.6667,
) -> None:
"""
Initialize the LDMSampler with various parameters and models.
Args:
Various parameters related to model configuration, input settings, and output specifications.
"""
self.random_seed = random_seed
if random_seed is not None:
set_determinism(seed=random_seed)
with open(label_dict_json, "r") as f:
label_dict = json.load(f)
self.all_anatomy_size_condtions_json = all_anatomy_size_condtions_json
# initialize variables
self.body_region = body_region
self.anatomy_list = [label_dict[organ] for organ in anatomy_list]
self.all_mask_files_json = all_mask_files_json
self.data_root = all_mask_files_base_dir
self.label_dict_remap_json = label_dict_remap_json
self.autoencoder = autoencoder
self.diffusion_unet = diffusion_unet
self.controlnet = controlnet
self.noise_scheduler = noise_scheduler
self.scale_factor = scale_factor
self.mask_generation_autoencoder = mask_generation_autoencoder
self.mask_generation_diffusion_unet = mask_generation_diffusion_unet
self.mask_generation_scale_factor = mask_generation_scale_factor
self.mask_generation_noise_scheduler = mask_generation_noise_scheduler
self.device = device
self.latent_shape = latent_shape
self.mask_generation_latent_shape = mask_generation_latent_shape
self.output_size = output_size
self.output_dir = output_dir
self.noise_factor = 1.0
self.controllable_anatomy_size = controllable_anatomy_size
if len(self.controllable_anatomy_size):
logging.info("controllable_anatomy_size is given, mask generation is triggered!")
# overwrite the anatomy_list by given organs in self.controllable_anatomy_size
self.anatomy_list = [label_dict[organ_and_size[0]] for organ_and_size in self.controllable_anatomy_size]
self.image_output_ext = image_output_ext
self.label_output_ext = label_output_ext
# Set the default value for number of inference steps to 1000
self.num_inference_steps = num_inference_steps if num_inference_steps is not None else 1000
self.mask_generation_num_inference_steps = (
mask_generation_num_inference_steps if mask_generation_num_inference_steps is not None else 1000
)
if any(size % 16 != 0 for size in autoencoder_sliding_window_infer_size):
raise ValueError(
f"autoencoder_sliding_window_infer_size must be divisible by 16.\n Got {autoencoder_sliding_window_infer_size}"
)
if not (0 <= autoencoder_sliding_window_infer_overlap <= 1):
raise ValueError(
f"Value of autoencoder_sliding_window_infer_overlap must be between 0 and 1.\n Got {autoencoder_sliding_window_infer_overlap}"
)
self.autoencoder_sliding_window_infer_size = autoencoder_sliding_window_infer_size
self.autoencoder_sliding_window_infer_overlap = autoencoder_sliding_window_infer_overlap
# quality check args
self.max_try_time = 2 # if not pass quality check, will try self.max_try_time times
with open(real_img_median_statistics, "r") as json_file:
self.median_statistics = json.load(json_file)
self.label_int_dict = {
"liver": [1],
"spleen": [3],
"pancreas": [4],
"kidney": [5, 14],
"lung": [28, 29, 30, 31, 31],
"brain": [22],
"hepatic tumor": [26],
"bone lesion": [128],
"lung tumor": [23],
"colon cancer primaries": [27],
"pancreatic tumor": [24],
"bone": list(range(33, 57)) + list(range(63, 98)) + [120, 122, 127],
}
# networks
self.autoencoder.eval()
self.diffusion_unet.eval()
self.controlnet.eval()
self.mask_generation_autoencoder.eval()
self.mask_generation_diffusion_unet.eval()
self.spacing = spacing
self.modality_tensor = modality * torch.ones((1,), dtype=torch.long).to(device)
self.include_body_region = self.diffusion_unet.include_top_region_index_input
self.include_modality = self.diffusion_unet.num_class_embeds is not None
val_transforms_list = [
monai.transforms.LoadImaged(keys=["pseudo_label"]),
monai.transforms.EnsureChannelFirstd(keys=["pseudo_label"]),
monai.transforms.Orientationd(keys=["pseudo_label"], axcodes="RAS"),
monai.transforms.EnsureTyped(keys=["pseudo_label"], dtype=torch.uint8),
monai.transforms.Lambdad(keys="spacing", func=lambda x: torch.FloatTensor(x)),
monai.transforms.Lambdad(keys="spacing", func=lambda x: x * 1e2),
]
if self.include_body_region:
val_transforms_list += [
monai.transforms.Lambdad(keys="top_region_index", func=lambda x: torch.FloatTensor(x)),
monai.transforms.Lambdad(keys="bottom_region_index", func=lambda x: torch.FloatTensor(x)),
monai.transforms.Lambdad(keys="top_region_index", func=lambda x: x * 1e2),
monai.transforms.Lambdad(keys="bottom_region_index", func=lambda x: x * 1e2),
]
self.val_transforms = Compose(val_transforms_list)
logging.info("LDM sampler initialized.")
def sample_multiple_images(self, num_img):
"""
Generate multiple synthetic images and masks.
Args:
num_img (int): Number of images to generate.
"""
modality_tensor = self.modality_tensor
output_filenames = []
if len(self.controllable_anatomy_size) > 0:
# we will use mask generation instead of finding candidate masks
# create a dummy selected_mask_files for placeholder
selected_mask_files = list(range(num_img))
# prerpare organ size conditions
anatomy_size_condtion = self.prepare_anatomy_size_condtion(self.controllable_anatomy_size)
else:
need_resample = False
# find candidate mask and save to candidate_mask_files
candidate_mask_files = find_masks(
self.body_region,
self.anatomy_list,
self.spacing,
self.output_size,
True,
self.all_mask_files_json,
self.data_root,
)
if len(candidate_mask_files) < num_img:
# if we cannot find enough masks based on the exact match of anatomy list, spacing, and output size,
# then we will try to find the closest mask in terms of spacing, and output size.
logging.info("Resample mask file to get desired output size and spacing")
candidate_mask_files = self.find_closest_masks(num_img)
need_resample = True
selected_mask_files = self.select_mask(candidate_mask_files, num_img)
logging.info(f"Images will be generated based on {selected_mask_files}.")
if len(selected_mask_files) < num_img:
raise ValueError(
(
f"len(selected_mask_files) ({len(selected_mask_files)}) < num_img ({num_img}). "
"This should not happen. Please revisit function select_mask(self, candidate_mask_files, num_img)."
)
)
num_generated_img = 0
for index_s in range(len(selected_mask_files)):
item = selected_mask_files[index_s]
if num_generated_img >= num_img:
break
logging.info("---- Start preparing masks... ----")
start_time = time.time()
if len(self.controllable_anatomy_size) > 0:
# generate a synthetic mask
(
combine_label_or,
top_region_index_tensor,
bottom_region_index_tensor,
spacing_tensor,
) = self.prepare_one_mask_and_meta_info(anatomy_size_condtion)
else:
# read in mask file
mask_file = item["mask_file"]
if_aug = item["if_aug"]
(
combine_label_or,
top_region_index_tensor,
bottom_region_index_tensor,
spacing_tensor,
) = self.read_mask_information(mask_file)
if need_resample:
combine_label_or = self.ensure_output_size_and_spacing(combine_label_or)
# mask augmentation
if if_aug:
combine_label_or = augmentation(combine_label_or, self.output_size, self.random_seed)
end_time = time.time()
logging.info(f"---- Mask preparation time: {end_time - start_time} seconds ----")
torch.cuda.empty_cache()
# generate image/label pairs
to_generate = True
try_time = 0
# start generation
synthetic_images, synthetic_labels = self.sample_one_pair(
combine_label_or,
top_region_index_tensor,
bottom_region_index_tensor,
spacing_tensor,
modality_tensor,
)
# synthetic image quality check
pass_quality_check = self.quality_check(
synthetic_images.cpu().detach().numpy(), combine_label_or.cpu().detach().numpy()
)
print(num_img - num_generated_img, (len(selected_mask_files) - index_s))
if pass_quality_check or (num_img - num_generated_img) >= (len(selected_mask_files) - index_s):
if not pass_quality_check:
logging.info(
"Generated image/label pair did not pass quality check, but will still save them. "
"Please consider changing spacing and output_size to facilitate a more realistic setting."
)
num_generated_img = num_generated_img + 1
# save image/label pairs
output_postfix = datetime.now().strftime("%Y%m%d_%H%M%S_%f")
synthetic_labels.meta["filename_or_obj"] = "sample.nii.gz"
synthetic_images = MetaTensor(synthetic_images, meta=synthetic_labels.meta)
img_saver = SaveImage(
output_dir=self.output_dir,
output_postfix=output_postfix + "_image",
output_ext=self.image_output_ext,
separate_folder=False,
)
img_saver(synthetic_images[0])
synthetic_images_filename = os.path.join(
self.output_dir, "sample_" + output_postfix + "_image" + self.image_output_ext
)
# filter out the organs that are not in anatomy_list
synthetic_labels = filter_mask_with_organs(synthetic_labels, self.anatomy_list)
label_saver = SaveImage(
output_dir=self.output_dir,
output_postfix=output_postfix + "_label",
output_ext=self.label_output_ext,
separate_folder=False,
)
label_saver(synthetic_labels[0])
synthetic_labels_filename = os.path.join(
self.output_dir, "sample_" + output_postfix + "_label" + self.label_output_ext
)
output_filenames.append([synthetic_images_filename, synthetic_labels_filename])
to_generate = False
else:
logging.info("Generated image/label pair did not pass quality check, will re-generate another pair.")
return output_filenames
def select_mask(self, candidate_mask_files, num_img):
"""
Select mask files for image generation.
Args:
candidate_mask_files (list): List of candidate mask files.
num_img (int): Number of images to generate.
Returns:
list: Selected mask files with augmentation flags.
"""
selected_mask_files = []
random.shuffle(candidate_mask_files)
for n in range(len(candidate_mask_files)):
mask_file = candidate_mask_files[n % len(candidate_mask_files)]
selected_mask_files.append({"mask_file": mask_file, "if_aug": True})
return selected_mask_files
def sample_one_pair(
self,
combine_label_or_aug,
top_region_index_tensor,
bottom_region_index_tensor,
spacing_tensor,
modality_tensor,
):
"""
Generate a single pair of synthetic image and mask.
Args:
combine_label_or_aug (torch.Tensor): Combined label tensor or augmented label.
top_region_index_tensor (torch.Tensor): Tensor specifying the top region index.
bottom_region_index_tensor (torch.Tensor): Tensor specifying the bottom region index.
spacing_tensor (torch.Tensor): Tensor specifying the spacing.
modality_tensor (torch.Tensor): Int Tensor specifying the modality.
Returns:
tuple: A tuple containing the synthetic image and its corresponding label.
"""
# generate image/label pairs
synthetic_images, synthetic_labels = ldm_conditional_sample_one_image(
autoencoder=self.autoencoder,
diffusion_unet=self.diffusion_unet,
controlnet=self.controlnet,
noise_scheduler=self.noise_scheduler,
scale_factor=self.scale_factor,
device=self.device,
combine_label_or=combine_label_or_aug,
top_region_index_tensor=top_region_index_tensor,
bottom_region_index_tensor=bottom_region_index_tensor,
spacing_tensor=spacing_tensor,
modality_tensor=modality_tensor,
latent_shape=self.latent_shape,
output_size=self.output_size,
noise_factor=self.noise_factor,
num_inference_steps=self.num_inference_steps,
autoencoder_sliding_window_infer_size=self.autoencoder_sliding_window_infer_size,
autoencoder_sliding_window_infer_overlap=self.autoencoder_sliding_window_infer_overlap,
)
return synthetic_images, synthetic_labels
def prepare_anatomy_size_condtion(
self,
controllable_anatomy_size,
):
"""
Prepare anatomy size conditions for mask generation.
Args:
controllable_anatomy_size (list): List of tuples specifying controllable anatomy sizes.
Returns:
list: Prepared anatomy size conditions.
"""
anatomy_size_idx = {
"gallbladder": 0,
"liver": 1,
"stomach": 2,
"pancreas": 3,
"colon": 4,
"lung tumor": 5,
"pancreatic tumor": 6,
"hepatic tumor": 7,
"colon cancer primaries": 8,
"bone lesion": 9,
}
provide_anatomy_size = [None for _ in range(10)]
logging.info(f"controllable_anatomy_size: {controllable_anatomy_size}")
for element in controllable_anatomy_size:
anatomy_name, anatomy_size = element
provide_anatomy_size[anatomy_size_idx[anatomy_name]] = anatomy_size
with open(self.all_anatomy_size_condtions_json, "r") as f:
all_anatomy_size_condtions = json.load(f)
# loop through the database and find closest combinations
candidate_list = []
for anatomy_size in all_anatomy_size_condtions:
size = anatomy_size["organ_size"]
diff = 0
for db_size, provide_size in zip(size, provide_anatomy_size):
if provide_size is None:
continue
diff += abs(provide_size - db_size)
candidate_list.append((size, diff))
candidate_condition = sorted(candidate_list, key=lambda x: x[1])[0][0]
# overwrite the anatomy size provided by users
for element in controllable_anatomy_size:
anatomy_name, anatomy_size = element
candidate_condition[anatomy_size_idx[anatomy_name]] = anatomy_size
return candidate_condition
def prepare_one_mask_and_meta_info(self, anatomy_size_condtion):
"""
Prepare a single mask and its associated meta information.
Args:
anatomy_size_condtion (list): Anatomy size conditions.
Returns:
tuple: A tuple containing the prepared mask and associated tensors.
"""
combine_label_or = self.sample_one_mask(anatomy_size=anatomy_size_condtion)
# TODO: current mask generation model only can generate 256^3 volumes with 1.5 mm spacing.
affine = torch.zeros((4, 4))
affine[0, 0] = 1.5
affine[1, 1] = 1.5
affine[2, 2] = 1.5
affine[3, 3] = 1.0 # dummy
combine_label_or = MetaTensor(combine_label_or, affine=affine)
combine_label_or = self.ensure_output_size_and_spacing(combine_label_or)
top_region_index, bottom_region_index = get_body_region_index_from_mask(combine_label_or)
spacing_tensor = torch.FloatTensor(self.spacing).unsqueeze(0).half().to(self.device) * 1e2
top_region_index_tensor = torch.FloatTensor(top_region_index).unsqueeze(0).half().to(self.device) * 1e2
bottom_region_index_tensor = torch.FloatTensor(bottom_region_index).unsqueeze(0).half().to(self.device) * 1e2
return combine_label_or, top_region_index_tensor, bottom_region_index_tensor, spacing_tensor
def sample_one_mask(self, anatomy_size):
"""
Generate a single synthetic mask.
Args:
anatomy_size (list): Anatomy size specifications.
Returns:
torch.Tensor: The generated synthetic mask.
"""
# generate one synthetic mask
synthetic_mask = ldm_conditional_sample_one_mask(
self.mask_generation_autoencoder,
self.mask_generation_diffusion_unet,
self.mask_generation_noise_scheduler,
self.mask_generation_scale_factor,
anatomy_size,
self.device,
self.mask_generation_latent_shape,
label_dict_remap_json=self.label_dict_remap_json,
num_inference_steps=self.mask_generation_num_inference_steps,
autoencoder_sliding_window_infer_size=self.autoencoder_sliding_window_infer_size,
autoencoder_sliding_window_infer_overlap=self.autoencoder_sliding_window_infer_overlap,
)
return synthetic_mask
def ensure_output_size_and_spacing(self, labels, check_contains_target_labels=True):
"""
Ensure the output mask has the correct size and spacing.
Args: