From 0b124c34e24c691ca45fed7376da56dfb52a8a5e Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Mon, 7 Nov 2011 11:25:28 -0800 Subject: [PATCH] DOC: See also to skimage.sobel instead of ndimage.sobel. --- skimage/filter/canny.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/filter/canny.py b/skimage/filter/canny.py index c157f8eb..4818916c 100644 --- a/skimage/filter/canny.py +++ b/skimage/filter/canny.py @@ -78,7 +78,7 @@ def canny(image, sigma=1., low_threshold=.1, high_threshold=.2, mask=None): See also -------- - scipy.ndimage.sobel + skimage.sobel Notes -----