scipy.ndimage.filters.sobel

scipy.ndimage.filters.sobel(input, axis=-1, output=None, mode='reflect', cval=0.0)

Calculate a Sobel filter.

Parameters :

input : array-like

input array to filter

axis : integer, optional

axis of input along which to calculate. Default is -1

output : array, optional

The output parameter passes an array in which to store the filter output.

mode : {‘reflect’,’constant’,’nearest’,’mirror’, ‘wrap’}, optional

The mode parameter determines how the array borders are handled, where cval is the value when mode is equal to ‘constant’. Default is ‘reflect’

cval : scalar, optional

Value to fill past edges of input if mode is ‘constant’. Default is 0.0

Previous topic

scipy.ndimage.filters.rank_filter

Next topic

scipy.ndimage.filters.uniform_filter

This Page