roberts-neg-diag

roberts_neg_diag

skimage.filters.roberts_neg_diag(image, mask=None) [source]

Find the cross edges of an image using the Roberts’ Cross operator.

The kernel is applied to the input image to produce separate measurements of the gradient component one orientation.

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 Robert’s edge map.

Notes

We use the following kernel:

 0   1
-1   0
doc_scikit_image
2017-01-12 17:23:20
Comments
Leave a Comment

Please login to continue.