Smoothing
From Avisynth wiki
Abstract | |
---|---|
Author | putin |
Version | 0005 |
Download | smoothing0005.zip |
Category | Spatial Denoisers |
License | Open source |
Discussion |
Contents |
Description
smoothing is a spatial denoising plugin, it works by looking at all the nearby pixels and blur them in the better direction. Filtering is always included in every pixel. Therefore, the side effects are large.
AviSynth plugin ported from the Aviutl plugin Smoothing by flash3kyuu.
NOTE: Documentation was translated from Japanese with online translators, some words may be not be accurate.
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Progressive input only
- Supported color formats: YUY2, YV12
- *** vcredist_x86.exe is required for smoothing-x86
- *** vcredist_x64.exe is required for smoothing-x64
Syntax and Parameters
- smoothing(clip, int "strength", bool "range", int "threads")
- clip =
- Input clip; only YUY2 and YV12 supported.
- clip =
- int strength = 1
- The strength of the filter; the smaller the value, the stronger the strength.
- Range: 0-31
- int strength = 1
- bool range = false
- Widen the range of blur to make the effect stronger.
- bool range = false
- int threads = 0
- Range: 0-32 (0=auto)
- int threads = 0
Examples
smoothing with default settings:
AviSource("Blah.avi") smoothing(strength=1, range=false, threads=0)
Changelog
Version Date Changes
0005 2014/08/26 - latest release
Archived Downloads
Version | Download | Mirror |
---|---|---|
0005 | smoothing0005.zip |
External Links
Back to External Filters ←