VariableBlur/AverageBlur

From Avisynth wiki
Revision as of 23:24, 13 July 2014 by Reel.Deal (Talk | contribs)

Jump to: navigation, search

Back to VariableBlur

Contents

Description

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


Requirements

- Progressive input only
- Supported color formats: YV12


Syntax and Parameters

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

Personal tools