Click or drag to resize
DigitalRuneBlurEdgeSoftness Property
Gets or sets the edge softness for bilateral filtering.

Namespace: DigitalRune.Graphics.PostProcessing
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public float EdgeSoftness { get; set; }

Property Value

Type: Single
The edge softness for bilateral filtering in world space units. The default value is 0.1.
Remarks

When IsBilateral is enabled, an edge-aware blur is used to avoid blurring over depth discontinuities. The sensitivity of the edge-aware blur is defined by EdgeSoftness. The value is the max allowed depth difference of two pixel in world space units (at 1 unit in front of the camera). Pixels that closer than this threshold are blurred together; pixels which are farther apart are ignored.

Decrease the value to make edges crisper. Increase to make edges softer.

See Also