-
I would like to train with different combinations of input image modalities (or masks). So far I have used e.g. nibabel or sitk to concatenate T1, T2, etc. to generate a single image file. Is there any way I can achieve this currently in monai? If this were a feature request, I guess I would like to do something like this:
Another option I could think of is to first concatenate all possible channels, and then add a skip channel transform (could not find something like that in the docs) after the
Is there any existing solution for this use-case? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @dyollb , I think maybe you can try this transform Thanks. |
Beta Was this translation helpful? Give feedback.
Hi @dyollb ,
I think maybe you can try this transform
ConcatItemsd
:https://github.com/Project-MONAI/MONAI/blob/dev/monai/transforms/utility/dictionary.py#L951
Thanks.