FastBlur
From Avisynth wiki
Abstract | |
---|---|
Author | wonkey_monkey |
Version | v0.1 |
Download | FastBlur.zip |
Category | Blurring |
License | Closed source |
Discussion | Doom9 Thread |
Contents |
Description
Fast approximate Gaussian blurs.
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: RGB24, RGB32, Y8, YV12, YV16, YV24, YV411,
Syntax and Parameters
- FastBlur (clip, float blur, float "y_blur", int "iterations, bool "dither", bool "gamma")
- clip =
- Input clip.
- clip =
- float =
- Blur radius (equivalent to Photoshop Gaussian Blur's radius).
- float =
- float yblur =
- Vertical blur (if different from horizontal blur)
- float yblur =
- int iterations = 3
- Number of iterations for approximation. Defaults to 3. A value of 1 performs a box blur.
- int iterations = 3
- bool dither = false
- Enable/disable dithering.
- bool dither = false
- bool gamma = true
- Approximate gamma awareness. This should be disabled for masks..
- bool gamma = true
Examples
- FastBlur with strong settings:
AviSource("blah.avi") #FastBlur(..TODO..)
Changelog
Version Date Changes
v0.1 06/30/2019 - Initial release.
External Links
- Doom9 Forum - FastBlur discussion.
Back to External Filters ←