VariableBlur/AverageBlur
From Avisynth wiki
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
- clip =
- int radY = 3
- int radC = 3
- radius of the kernel.
- radY for luma, radC for chroma (U/V).
- int radY = 3
- 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.
- Controls which planes the filter is applied to:
- int Y = 3
Examples
AverageBlur with default values:
AviSource("Blah.avi") AverageBlur(radY=3, radC=3, Y=3, U=2, V=2)
Back to VariableBlur ←