Change default interpolation order to 1

This commit is contained in:
Juan Nunez-Iglesias
2014-01-29 22:55:18 +11:00
parent d71cd4d750
commit 040a21afb9
+1 -1
View File
@@ -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