-
Hi all,
I am going through the paper to understand the architecture but looking at the code, I cannot figure out where do we specify the number of labels in the Network architecture. Is it The second part I am confused about is the parameter I think I need to reduce the spatial size to something other than 96 as some of my images do not have 96 slices? Can someone throw some light ? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
HI @vikashg, thanks for the interests of the work.
|
Beta Was this translation helpful? Give feedback.
-
Hi @tangy5, |
Beta Was this translation helpful? Give feedback.
-
The input image is all (512, 512, 108), which is good. Can you check whether there are Spacingd transform? This step will resample the input volume to a specific resolution, then the dimensions will change, I guess the z axis, after resample, there are less than 96 slices. In detail, this transform: you can remove this if your images resolution are consistent.
|
Beta Was this translation helpful? Give feedback.
The input image is all (512, 512, 108), which is good. Can you check whether there are Spacingd transform? This step will resample the input volume to a specific resolution, then the dimensions will change, I guess the z axis, after resample, there are less than 96 slices.
In detail, this transform: you can remove this if your images resolution are consistent.