GBlur: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
Yakub2.X (talk | contribs)
Yakub2.X (talk | contribs)
Line 14: Line 14:


== Requirements ==
== Requirements ==
* AviSynth+ r2347 or greater.
* AviSynth+ r2347 or later


<br>
<br>

Revision as of 08:27, 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

Requirements

  • AviSynth+ r2347 or later


GBlur (clip, int "rad", float "sd", bool "u", bool "v")


clip   =
Input clip.


int  rad = 3
Radius of grid to use.


  • Number between 3 to 8


float  rad = 1.5
Standard deviation.


  • More than 0


bool  u = false
Is u plane smoothing required?


bool  v = false
Is v plane smoothing required?


Examples

GBlur()
GBlur(rad = 4,sd = 1.0, u = true, v = false)



Back to External Filters