From a8291352e42c7484e9afe9e7fb605a069fdf56da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Wed, 17 Oct 2012 09:00:06 +0200 Subject: [PATCH] Improve description of scharr and sobel edge filters --- skimage/filter/edges.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/filter/edges.py b/skimage/filter/edges.py index f374634e..fcd9f548 100644 --- a/skimage/filter/edges.py +++ b/skimage/filter/edges.py @@ -35,7 +35,7 @@ def _mask_filter_result(result, mask): def sobel(image, mask=None): - """Calculate the absolute magnitude Sobel to find edges. + """Find the edge magnitude using the Sobel transform. Parameters ---------- @@ -134,7 +134,7 @@ def vsobel(image, mask=None): def scharr(image, mask=None): - """Calculate the absolute magnitude Scharr to find edges. + """Find the edge magnitude using the Scharr transform. Parameters ----------