-
Hello. I am a student studying medical image processing. I used SpatialCrop to crop 3d patches of brain lesions. If I adjust roi_size, the second and third parameters change, but the first parameter is fixed as it is the size of input_data. Thank you for your attention. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @danny4159 , Thanks for your interest here. Thanks. |
Beta Was this translation helpful? Give feedback.
Hi @danny4159 ,
Thanks for your interest here.
Please note that most of MONAI transforms expect
channel-first
input image.So I think here you need to add
AddChannel
transform afterLoadImage
.Thanks.