| BlurIsSeparable Property |
Gets or sets a value indicating whether the configured blur filter is separable.
Namespace: DigitalRune.Graphics.PostProcessingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public bool IsSeparable { get; set; }
Public Property IsSeparable As Boolean
Get
Set
public:
property bool IsSeparable {
bool get ();
void set (bool value);
}
member IsSeparable : bool with get, set
Property Value
Type:
Boolean if this instance is separable; otherwise,
.
Remarks
Filters like a box blur or a Gaussian blur are separable. This means, the result of an n x n
blur is equal to an n x 1 blur followed by an 1 x n blur. If this flag is set, this
processor will perform a blur pass in two steps: First, the image blurred using the
configured
Offsets. Then, the x and y values of the
Offsets are
swapped and the blurred image is blurred again.
See Also