Expand description
Functions for computing gradients of image intensities.
Statics§
- HORIZONTAL_
PREWITT - Prewitt filter for detecting horizontal gradients.
- HORIZONTAL_
SCHARR - Scharr filter for detecting horizontal gradients.
- HORIZONTAL_
SOBEL - Sobel filter for detecting horizontal gradients.
- VERTICAL_
PREWITT - Prewitt filter for detecting vertical gradients.
- VERTICAL_
SCHARR - Scharr filter for detecting vertical gradients.
- VERTICAL_
SOBEL - Sobel filter for detecting vertical gradients.
Functions§
- horizontal_
prewitt - Convolves an image with the
HORIZONTAL_PREWITT
kernel to detect horizontal gradients. - horizontal_
scharr - Convolves an image with the
HORIZONTAL_SCHARR
kernel to detect horizontal gradients. - horizontal_
sobel - Convolves an image with the
HORIZONTAL_SOBEL
kernel to detect horizontal gradients. - prewitt_
gradients - Returns the magnitudes of gradients in an image using Prewitt filters.
- sobel_
gradient_ map - Computes per-channel gradients using Sobel filters and calls
f
to compute each output pixel. - sobel_
gradients - Returns the magnitudes of gradients in an image using Sobel filters.
- vertical_
prewitt - Convolves an image with the
VERTICAL_PREWITT
kernel to detect vertical gradients. - vertical_
scharr - Convolves an image with the
VERTICAL_SCHARR
kernel to detect vertical gradients. - vertical_
sobel - Convolves an image with the
VERTICAL_SOBEL
kernel to detect vertical gradients.