GBlur
From Avisynth wiki
(Difference between revisions)
m |
(→Syntax and Parameters) |
||
| Line 19: | Line 19: | ||
== [[Script variables|Syntax and Parameters]] == | == [[Script variables|Syntax and Parameters]] == | ||
| − | :{{Template:FuncDef| | + | :{{Template:FuncDef| GBlur (clip, int "rad", float "sd", bool "u", bool "v")}} |
<br> | <br> | ||
::{{Par2| |clip| }} | ::{{Par2| |clip| }} | ||
| − | :::Input clip. | + | ::: Input clip. |
<br> | <br> | ||
| − | ::{{Par2| | + | ::{{Par2|rad|int|3}} |
| − | ::: | + | ::: Radius of grid to use. |
| + | |||
| + | |||
| + | ::* Number between 3 to 8 | ||
<br> | <br> | ||
| − | ::{{Par2| | + | ::{{Par2|rad|float|1.5}} |
| − | ::: | + | ::: Standard deviation. |
| + | |||
| + | |||
| + | ::* More than 0 | ||
<br> | <br> | ||
| − | ::{{Par2| | + | ::{{Par2|u|bool|false}} |
| − | + | ::: Is u plane smoothing required? | |
| − | + | ||
| − | + | ||
| − | ::: | + | |
<br> | <br> | ||
| + | ::{{Par2|v|bool|false}} | ||
| + | ::: Is v plane smoothing required? | ||
<br> | <br> | ||
Revision as of 07:26, 18 June 2018
| Abstract | |
|---|---|
| Author | V.C.Mohan |
| Version | 17 Oct 2017 |
| Download | Download |
| Category | External filters |
| License | GPLv2 |
| Discussion | modPlus plugin for avisynth+ |
Contents |
Description
GBlur smoothes an image by use of separable symmetric matrix of convolution coefficients. Full Discription
Requirements
- AviSynth+ r2347 or greater.
Syntax and Parameters
- GBlur (clip, int "rad", float "sd", bool "u", bool "v")
- clip =
- Input clip.
- clip =
- int rad = 3
- Radius of grid to use.
- int rad = 3
- Number between 3 to 8
- float rad = 1.5
- Standard deviation.
- float rad = 1.5
- More than 0
- 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(rad = 4,sd = 1.0, u = true, v = false)
Back to External Filters ←