GBlur

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(Syntax and Parameters)
(Syntax and Parameters)
Line 26: Line 26:
 
::{{Par2|rad|int|3}}
 
::{{Par2|rad|int|3}}
 
::: Radius of grid to use
 
::: Radius of grid to use
:::* Number between 3 to 8
+
::::* Number between 3 to 8
 
<br>
 
<br>
 
::{{Par2|rad|float|1.5}}
 
::{{Par2|rad|float|1.5}}
 
::: Standard deviation
 
::: Standard deviation
:::* More than 0
+
::::* More than 0
 
<br>
 
<br>
 
::{{Par2|u|bool|false}}
 
::{{Par2|u|bool|false}}

Revision as of 04:32, 3 July 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 later


Syntax and Parameters

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

Personal tools