Replies: 2 comments 2 replies
-
Hi @dongyang0122 , Could you please help share your practice experience for this question? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@scarpma you can train a low resolution model first, and use the predictions of the first model together with images to train a high-resolution model. monai.transforms.CropForeground can be used here to crop foreground regions with a pre-defined margin within high-resolution images. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I would like to segment CT scans of very high resolution, like 512x512x700. Since fitting everything into the gpu during training doesn't seem the best solution, even if the memory limit was not a problem, I would like to know if there are some already implemented features to face such a problem.
One idea that comes to my mind is to do a segmentation at low resolution (from like 0.5 mm/pixel to 1 mm/pixel) to first asses the main geometry. Then, another network could be evaluated through a sliding window inferer at sub-regions around the low resolution segmentation in order to have a better resolution. Are there any already implemented function to do this ?
A basic approach would be to go for full resolution from the beginning, using a sliding window inferer, but with a small ROI. The problem here is that the network would have a very limited field of view of the sorroundings... Is there a standard solution for this problem ?
Thank you very much !
Beta Was this translation helpful? Give feedback.
All reactions