{ } Raw JSON

bundles / skimage 0.26.1rc0.dev0+git20260530.b607368ff / skimage / filters / edges / farid_v

function

skimage.filters.edges:farid_v

source: /dev/scikit-image/src/skimage/filters/edges.py :828

Signature

def   farid_v ( image * mask = None )

Summary

Find the vertical edges of an image using the Farid transform.

Parameters

image : ndarray of shape (M, N)

Image to process.

mask : ndarray of shape (M, N), 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 : ndarray of shape (M, N) and dtype float

The Farid edge map.

Notes

The kernel was constructed using the 5-tap weights from [1].

Aliases

  • skimage.filters.farid_v

Referenced by