You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
make the downsample and th upsample transform similar:
same interpolation and same include/exclude parameter
Motivation
you do not add self.add_include_exclude(arguments) for the upsample, I guess this is a bug..
currently
the downsample is done with nearest interpolation, but the upsample is done with input argument (default linear)
why 2 different choice
Actually I am not sure, about nearest interpolation when going from small to big voxel
image you resample in a bit voxel containing exactly 4 small voxel, what does the nearest interpolation (since all 4 are within the target voxel)
At least with linear interpolation, i know it will take the mean ...
Pitch
Alternatives
Additional context
The text was updated successfully, but these errors were encountered:
🚀 Feature
make the downsample and th upsample transform similar:
same interpolation and same include/exclude parameter
Motivation
you do not add
self.add_include_exclude(arguments)
for the upsample, I guess this is a bug..currently
the downsample is done with nearest interpolation, but the upsample is done with input argument (default linear)
why 2 different choice
Actually I am not sure, about nearest interpolation when going from small to big voxel
image you resample in a bit voxel containing exactly 4 small voxel, what does the nearest interpolation (since all 4 are within the target voxel)
At least with linear interpolation, i know it will take the mean ...
Pitch
Alternatives
Additional context
The text was updated successfully, but these errors were encountered: