bundles / skimage 0.26.1rc0.dev0+git20260530.b607368ff / skimage / filters / edges / scharr_h
function
skimage.filters.edges:scharr_h
source: /dev/scikit-image/src/skimage/filters/edges.py :378
Signature
def scharr_h ( image , mask = None ) Summary
Find the horizontal edges of an image using the Scharr transform.
Parameters
image: ndarray of shape (M, N)Image to process.
mask: ndarray of shape (M, N), optionalAn optional mask to limit the application to a certain area. Note that pixels surrounding masked regions are also masked to prevent masked regions from affecting the result.
Returns
output: ndarray of shape (M, N) and dtype floatThe Scharr edge map.
Notes
We use the following kernel
3 10 3 0 0 0 -3 -10 -3
Aliases
-
skimage.filters.scharr_h