RemoveGrain v0.9/RemoveGrain/RemoveGrain

From Avisynth wiki
Jump to: navigation, search


Back to RemoveGrain

Contents

Description

Purely spatial denoising function that includes 18 different modes.

Requirements


Syntax and Parameters

RemoveGrain (clip, int "mode", int "modeU", int "modeV", bool "planar")


clip   =
Input clip.


int  mode = 2
int  modeU = mode
int  modeV = modeU
Independently control the processing mode for each plane.
  • -1 : Bypass - input plane is trashed thus faster than mode 1
  • 0 : Copy - input plane is left intact
  • 1 :
  • 2 : Default
  • 3 :
  • 4 :
  • 5 :
  • 6 :
  • 7 :
  • 8 :
  • 9 :
  • 10 :
  • 11 :
  • 12 :
  • 13 :
  • 14 :
  • 15 :
  • 16 :
  • 17 :
  • 18 :
By default if modeU is not set it defaults to the value of mode. If modeV is not set it defaults to the value of modeU


bool  planar = false
See SSETools Interleaved2Planar.


Examples

RemoveGrain with default values:

AviSource("Blah.avi")
RemoveGrain(mode=2, modeY=2, modeV=2, planar=false)


External Links




Back to RemoveGrain

Personal tools