GBlur
From Avisynth wiki
Abstract | |
---|---|
Author | V.C.Mohan |
Version | 14 Oct 2015 |
Download | GBlur_2_6.7z |
Category | External filters |
License | GPLv2 |
Discussion |
Contents |
Description
GBlur blurs the image as in out of focus or linear motion or rectangular grid. Full Discription
Gaussian blur is an image smoothing operation done by use of separable symmetric matrix of convolution coefficients. The size can be any odd nimber between 3 (for a 3x3 grid size) to 11 (for a 11x11 grid). Given the size and standard deviation, the convolution weights are computed and applied.. In YUV formats only the Y values are smoothed. However if u and or v are made true, those corresponding planes are also smoothed. In RGB formats all 3 color planes are smoothed.
- For AviSynth+ see modPlus, includes high bit depth colorspace support and 64-bit.
Requirements
Syntax and Parameters
- GBlur (clip, int "size", float "sd", bool "u", bool "v")
- clip =
- Input clip
- clip =
- int size = 3
- Size of grid to use
- Number between 3 to 8
- Size of grid to use
- int size = 3
- float rad = 1.5
- Standard deviation
- More than 0
- Standard deviation
- float rad = 1.5
- bool u = false
- Is u plane smoothing required?
- bool u = false
- bool v = false
- Is v plane smoothing required?
- bool v = false
Examples
GBlur()
GBlur(size=4, sd=1.0, u=true, v=false)
Back to External Filters ←