VariableBlur/AverageBlur

From Avisynth wiki
Revision as of 11:57, 21 September 2014 by Reel.Deal (talk | contribs) (minor formatting)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Back to VariableBlur

Description

AverageBlur works by taking the average value of the pixels inside the radius.

Requirements


AverageBlur (clip, int "radY", int "radC", int "Y", int "U", int "V")


clip   =
Input clip.


int  radY = 3
int  radC = 3
radius of the kernel.
radY for luma, radC for chroma (U/V).


int  Y = 3
int  U = 2
int  V = 2
Controls which planes the filter is applied to:
  • 3 : corresponding plane will be filtered
  • 2 : corresponding plane will be copied from the source
  • 1 : corresponding plane will be ignored
  • from 0 to -255 : corresponding plane will be assigned the absolute value.


Examples

AverageBlur with default values:

AviSource("Blah.avi")
AverageBlur(radY=3, radC=3, Y=3, U=2, V=2)




Back to VariableBlur