-
Hi, I am working on a classification of 3D MRI where I want to combine a mask and a raw MRI and I was wondering if someone has implemented a 3D model with 2 inputs |
Beta Was this translation helpful? Give feedback.
Answered by
wyli
Jul 5, 2022
Replies: 1 comment
-
One way to implement it is to make sure the image/mask have the same spatial size and concatenate them at dim=0:
for example, this is used in the tutorial: https://github.com/Project-MONAI/tutorials/blob/main/deep_atlas/deep_atlas_tutorial.ipynb |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gkrisp98
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
One way to implement it is to make sure the image/mask have the same spatial size and concatenate them at dim=0:
for example, this is used in the tutorial: https://github.com/Project-MONAI/tutorials/blob/main/deep_atlas/deep_atlas_tutorial.ipynb