1
0
Fork 0
hugo/docs/content/en/functions/images/UnsharpMask.md

1006 B

title description categories keywords params
images.UnsharpMask Returns an image filter that sharpens an image.
functions_and_methods
aliases returnType signatures
images.filter
images.UnsharpMask SIGMA AMOUNT THRESHOLD

The sigma argument is used in a gaussian function and affects the radius of effect. Sigma must be positive. The sharpen radius is approximately 3 times the sigma value.

The amount argument controls how much darker and how much lighter the edge borders become. Typically between 0.5 and 1.5.

The threshold argument controls the minimum brightness change that will be sharpened. Typically between 0 and 0.05.

Usage

Create the filter:

{{ $filter := images.UnsharpMask 10 0.4 0.03 }}

{{% include "/_common/functions/images/apply-image-filter.md" %}}

Example

{{< img src="images/examples/zion-national-park.jpg" alt="Zion National Park" filter="UnsharpMask" filterArgs="10,0.4,0.03" example=true

}}