RemoveGrain v1.0b/RemoveGrain/RemoveGrain: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
RemoveGrain
 
Raffriff42 (talk | contribs)
m link fix
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[Category:Plugin_Filters]]
[[Category:Spatial_denoisers]]
'''Back to [[RemoveGrain v1.0b/RemoveGrain|RemoveGrain]] ←'''
'''Back to [[RemoveGrain v1.0b/RemoveGrain|RemoveGrain]] ←'''
== Description ==
== Description ==
: Denoising function that includes 27 different modes.
:Purely spatial denoising function that includes 27 different modes.
<br>
<br>



Latest revision as of 06:45, 8 November 2015

Back to RemoveGrain

Description

Purely spatial denoising function that includes 27 different modes.


Requirements

- Progressive input only
- Supported color formats: YUY2, YV12


Syntax and Parameters

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


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 :
  • 19 :
  • 20 :
  • 21 :
  • 22 :
  • 23 :
  • 24 :
  • 25 :
  • 26 :
  • 27 :
  • 28 : Same as mode 27
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)






Back to RemoveGrain