GBlur
From Avisynth wiki
(Difference between revisions)
(modPlus modifications) |
|||
Line 2: | Line 2: | ||
{{Filter3 | {{Filter3 | ||
|1=<!-- author --> [http://www.avisynth.nl/users/vcmohan/ V.C.Mohan] | |1=<!-- author --> [http://www.avisynth.nl/users/vcmohan/ V.C.Mohan] | ||
− | |2=<!-- version --> | + | |2=<!-- version --> 17 Oct 2017 |
|3=<!-- download --> [http://www.avisynth.nl/users/vcmohan/modPlus/modPlus.7z Download] | |3=<!-- download --> [http://www.avisynth.nl/users/vcmohan/modPlus/modPlus.7z Download] | ||
|4=<!-- category --> External filters | |4=<!-- category --> External filters | ||
Line 36: | Line 36: | ||
== Examples == | == Examples == | ||
<!-- example code block: 1st char in each line = space --> | <!-- example code block: 1st char in each line = space --> | ||
− | GBlur() | + | GBlur() |
− | GBlur(rad = 4,sd = 1.0, u = true, v = false) | + | GBlur(rad = 4,sd = 1.0, u = true, v = false) |
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters|External Filters]] ←''' | '''Back to [[External_filters|External Filters]] ←''' |
Revision as of 04:23, 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. 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 ←