-
Hello all, For the 3D medical image segmentation task, I have a patch image (160,96,160) and a low-resolution upscaled label (720,440,720) from the same original image/label (720,440,720). Is there a way to replicate the applied transforms of this patch to this low-resolution upscaled label? So, I can get a predicted low-resolution patch for this patch image. I can find there is a way to invert applied transforms, but I wonder how I can re-apply the exact transforms to others. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @Joeycho, for images, the reverse operation does not bring back the missing information, but only ensures that the shape is restored to the same. So if you want low-resolution data, maybe you can try to use spacing |
Beta Was this translation helpful? Give feedback.
Hi @Joeycho, for images, the reverse operation does not bring back the missing information, but only ensures that the shape is restored to the same. So if you want low-resolution data, maybe you can try to use spacing
Hope it can help you, Thanks!