From b0876ea4ea06b29df01f9c302adeaa6e0f993f07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Thu, 27 Nov 2014 22:59:39 -0500 Subject: [PATCH] Remove deprecated absolute edge map description --- skimage/filters/edges.py | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/skimage/filters/edges.py b/skimage/filters/edges.py index 065b7445..7fb1fb21 100644 --- a/skimage/filters/edges.py +++ b/skimage/filters/edges.py @@ -106,8 +106,7 @@ def sobel_h(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 1 2 1 0 0 0 @@ -139,8 +138,7 @@ def sobel_v(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 1 0 -1 2 0 -2 @@ -268,8 +266,7 @@ def scharr_h(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 3 10 3 0 0 0 @@ -306,8 +303,7 @@ def scharr_v(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 3 0 -3 10 0 -10 @@ -444,8 +440,7 @@ def prewitt_h(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 1 1 1 0 0 0 @@ -477,8 +472,7 @@ def prewitt_v(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 1 0 -1 1 0 -1 @@ -599,8 +593,7 @@ def roberts_pos_diag(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 1 0 0 -1 @@ -634,8 +627,7 @@ def roberts_neg_diag(image, mask=None): Notes ----- - We use the following kernel and return the absolute value of the - result at each point:: + We use the following kernel:: 0 1 -1 0