Smoothing

From Avisynth wiki
Revision as of 20:35, 25 July 2021 by Reel.Deal (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
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


*** 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.


int  strength = 1
The strength of the filter; the smaller the value, the stronger the strength.
Range: 0-31


bool  range = false
Widen the range of blur to make the effect stronger.


int  threads = 0
Range: 0-32 (0=auto)


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

Personal tools