From 040a21afb90d5e5c3e6ad43748142395259a680f Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Wed, 29 Jan 2014 22:55:18 +1100 Subject: [PATCH] Change default interpolation order to 1 --- skimage/measure/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/measure/profile.py b/skimage/measure/profile.py index 5a754ee3..e49c710c 100644 --- a/skimage/measure/profile.py +++ b/skimage/measure/profile.py @@ -3,7 +3,7 @@ import scipy.ndimage as nd def profile_line(img, src, dst, linewidth=1, - order=0, mode='constant', cval=0.0): + order=1, mode='constant', cval=0.0): """Return the intensity profile of an image measured along a scan line. Parameters