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
@click.option('--interpolation_mode', '-im', help='Interpolation mode: NN for nearest neighbor, linear for linear interpolation and BSpline for BSpline interpolation', default='linear', type=click.Choice(['NN', 'linear', 'BSpline']))
65
65
@click.option('--bspline_order', '-bo', help='For BSpline interpolator, set the interpolation bspline order', default='2', type=click.Choice(['0', '1', '2', '3', '4', '5']))
66
66
67
+
@click.option('--gaussian', '-g', help='Run a gaussian filter before the downsampling', default='False', is_flag=True))
--adaptive flag (in combination with force_resample flag) allows the users to set the newspacing (or spacinglike) and the newsize is automatically computed and vice versa.
93
95
96
+
--gaussian run a gaussian filter before the downsampling. The sigma is set to 0.5s in mm with s the ratio of the old resolution by the new resolution.
0 commit comments