Gaussian Gradient Magnitude Filter

Applies a gradient magnitude filter to an image while smoothing the image with a Gaussian filter at the same time. The only parameter required to instantiate this algorithm is the sigma value for the gaussian filter.

Python Example:

img=LoadImage("...")
grad=GaussianGradientMagnitudeFilter(1.5)
img.ApplyIP(grad)

Back to Algorithm List