Replies: 1 comment
-
|
Hi if you want to change this you may try the |
Beta Was this translation helpful? Give feedback.
0 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.
-
I am working on a project where I have to classify knee MRIs. The original MRIs are of shape (160,384,384). I am using
tio.CropOrPad()to reduce them. As of my understanding of that transform if I reduce the first dimension some slices will be removed.Some slices do not have meaningful information so I think my model should perform better if I remove them.
If I use the transform like this:
tio.CropOrPad((100,224,244))how do I know which slices are been removed from the object ?And also, is there any way to choose manually which slices to be left out ?
Beta Was this translation helpful? Give feedback.
All reactions