FastBlur
From Avisynth wiki
(Difference between revisions)
(FastBlur) |
m (→Syntax and Parameters: corrections) |
||
Line 30: | Line 30: | ||
<br> | <br> | ||
::{{Par2|yblur|float|}} | ::{{Par2|yblur|float|}} | ||
− | ::::Vertical blur (if different from horizontal blur) | + | ::::Vertical blur (if different from horizontal blur) |
− | + | ||
− | + | ||
− | + | ||
<br> | <br> | ||
::{{Par2|iterations|int|3}} | ::{{Par2|iterations|int|3}} | ||
− | :::: | + | ::::Number of iterations for approximation. Defaults to 3. A value of 1 performs a box blur. |
<br> | <br> | ||
::{{Par2|dither|bool|false}} | ::{{Par2|dither|bool|false}} |
Revision as of 20:27, 21 October 2019
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
- AviSynth 2.6.0 or greater
- x64 version requires 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 ←