GBlur
From Avisynth wiki
(Difference between revisions)
(→Description) |
|||
Line 11: | Line 11: | ||
== Description == | == Description == | ||
<!-- a one-sentence description --> | <!-- a one-sentence description --> | ||
− | GBlur smoothes an image by use of separable symmetric matrix of convolution coefficients. Requires AviSynth+ r2347 or greater. | + | GBlur smoothes an image by use of separable symmetric matrix of convolution coefficients. [http://www.avisynth.nl/users/vcmohan/modPlus/GBlur.html Full Discription] |
+ | |||
+ | |||
+ | Requires AviSynth+ r2347 or greater. | ||
<br> | <br> | ||
+ | |||
== [[Script variables|Syntax and Parameters]] == | == [[Script variables|Syntax and Parameters]] == | ||
:{{Template:FuncDef|<!-- function name -->GBlur(''clip'', ''<!-- par 1 type -->int'' "<!-- par 1 name -->rad", ''<!-- par 2 type -->float'' "<!-- par 2 name -->sd", ''<!-- par 3 type -->bool'' "<!-- par 3 name -->u ",''<!-- par 4 type -->bool'' <!-- par 4 name -->v")}} | :{{Template:FuncDef|<!-- function name -->GBlur(''clip'', ''<!-- par 1 type -->int'' "<!-- par 1 name -->rad", ''<!-- par 2 type -->float'' "<!-- par 2 name -->sd", ''<!-- par 3 type -->bool'' "<!-- par 3 name -->u ",''<!-- par 4 type -->bool'' <!-- par 4 name -->v")}} |
Revision as of 04:24, 18 June 2018
Abstract | |
---|---|
Author | V.C.Mohan |
Version | 17 Oct 2017 |
Download | Download |
Category | External filters |
License | GPLv2 |
Discussion | modPlus plugin for avisynth+ |
Description
GBlur smoothes an image by use of separable symmetric matrix of convolution coefficients. Full Discription
Requires AviSynth+ r2347 or greater.
Syntax and Parameters
- GBlur(clip, int "rad", float "sd", bool "u ",bool v")
- clip =
- Input clip.
- clip =
- size int = 3
- Number between 3 to 8. size X size blurring results .
- size int = 3
- sd float = 1.5
- Greater than 0. Standard deviation determines weightage of outer pixels.
- sd float = 1.5
- u bool = false
- In case of YUY2 or Planar u plane also to be cleaned .
- u bool = false
- v bool = false
- In case of YUY2 or Planar v plane also to be cleaned . .
- v bool = false
Examples
GBlur()
GBlur(rad = 4,sd = 1.0, u = true, v = false)
Back to External Filters ←