GBlur

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (Requirements: AviSynth 2.6)
m (added category)
Line 1: Line 1:
 
+
{{FilterCat4|External_filters|Plugins|Adjustment_filters|Blurring}}
{{FilterCat4|External_filters|Plugins|<!-- category -->TODO|<!-- category -->TODO}}
+
 
+
 
{{Filter3
 
{{Filter3
 
|1=<!-- author -->[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan]
 
|1=<!-- author -->[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan]

Revision as of 03:09, 8 November 2015

Abstract
Author V.C.Mohan
Version 1.0.0.0.0
Download 2.5.8 versionGBlur 2.6.0 alpha5 version URL -->GBlur
Category External filters
License GPLv2
Discussion Announced GBlur as GaussBlur plugin


Contents

Description

Gaussian blurring by a separable kernel is done, and is useful in gentle cleaning or preprocess for certain other filters and a full description is at click me.

Requirements

* Not available in AviSynth 2.5.8.


"c[size]i[sd]f[u]b[v]b"

Syntax and Parameters

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


clip   =
Input clip.


size  int = 3
odd number from 3 to 11. size X size blurring results .


sd  float = 1.5
Greater than 0. Standard deviation determines weightage of outer pixels.


u  bool = false
in case of YUY2 or Planar u plane also to be cleaned .


v  bool = false
in case of YUY2 or Planar v plane also to be cleaned . .




Examples

## This is some example code to blur  an image.
imagereader("C:\avi_plugins\varianslim\theoin.jpg", end = 10)
converttoyv16()
yv = GBlur (size = 5, v = true)
yy = GBlur (size = 7)
yuv = GBlur (size = 3, u = true, v = true)



Back to External Filters

Personal tools