Module: filter — skimage v0.10dev docs
sharky93.github.io › docs › devFind the horizontal edges of an image using the Scharr transform. skimage.filter.hsobel (image[, mask]) Find the horizontal edges of an image using the Sobel transform. skimage.filter.inverse (data[, ...]) Apply the filter in reverse to the given data. skimage.filter.prewitt (image[, mask]) Find the edge magnitude using the Prewitt transform.
scikit-image/edges.py at main · scikit-image/scikit-image ...
github.com › blob › main>>> from skimage import filters >>> edges = filters.farid(camera) """ check_nD (image, 2) out = np. sqrt (farid_h (image, mask = mask) ** 2 + farid_v (image, mask = mask) ** 2) out /= np. sqrt (2) return out: def farid_h (image, *, mask = None): """Find the horizontal edges of an image using the Farid transform. Parameters-----image : 2-D array: Image to process.