hsobel

hsobel

skimage.filters.hsobel(*args, **kwargs) [source]

Deprecated function. Use skimage.filters.sobel_h instead.

Find the horizontal edges of an image using the Sobel transform.

Parameters:

image : 2-D array

Image to process.

mask : 2-D array, optional

An 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 : 2-D array

The absolute Sobel edge map.

Notes

We use the following kernel and return the absolute value of the result at each point:

 1   2   1
 0   0   0
-1  -2  -1
doc_scikit_image
2017-01-12 17:21:19
Comments
Leave a Comment

Please login to continue.