Enum MedianBlurDynamicRange
- Namespace
- PaintDotNet.Direct2D1.Effects
- Assembly
- PaintDotNet.Windows.Framework.dll
public enum MedianBlurDynamicRange
Fields
Auto = 0Automatically chooses Fast or Accurate depending on the value of the PrecisionBits property. Lower values will use Accurate to improve quality, while higher values will use Fast to improve performance.
Fast = 1Calculates the dynamic range on a per-pixel basis using the neighborhood of pixels within a square kernel.
Accurate = 2Calculates the dynamic range on a per-pixel basis using the neighborhood of pixels within a circular kernel.
This is the slowest but highest quality option.