Skip to content

Commit

Permalink
Remove hardcoded test line
Browse files Browse the repository at this point in the history
  • Loading branch information
fepegar committed Oct 11, 2018
1 parent 733e239 commit f64427a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion niftynet/layer/rand_spatial_scaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def _apply_transformation(self, image, interp_order=3):
while len(full_zoom) < image.ndim:
full_zoom = np.hstack((full_zoom, [1.0]))
smooth = all(full_zoom[:3] < 1) # perform smoothing if undersampling
smooth = False
if smooth:
sigma = self._get_sigma(full_zoom[:3])
if image.ndim == 4:
Expand Down

0 comments on commit f64427a

Please sign in to comment.