RemoveGrain v0.9/RemoveGrain/RemoveGrain

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (category)
m (minor formatting)
 
Line 1: Line 1:
[[Category:Plugin_Filters]]
+
{{FilterCat|External_filters|Plugin_functions|Spatial_denoisers}}
[[Category:Spatial_Denoisers]]
+
 
 
'''Back to [[RemoveGrain v0.9/RemoveGrain|RemoveGrain]] ←'''
 
'''Back to [[RemoveGrain v0.9/RemoveGrain|RemoveGrain]] ←'''
 
== Description ==
 
== Description ==
:Purely spatial denoising function that includes 18 different modes.
+
Purely spatial denoising function that includes 18 different modes.
 +
<br>
 
<br>
 
<br>
 
 
== Requirements ==
 
== Requirements ==
:- [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only  
+
* [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only  
:- Supported color formats: [[YUY2]], [[YV12]]
+
* Supported color formats: [[YUY2]], [[YV12]]
 
<br>
 
<br>
== Syntax and Parameters ==
+
== [[Script variables|Syntax and Parameters]] ==
 
:{{Template:FuncDef|RemoveGrain (''clip'', ''int'' "mode", ''int'' "modeU", ''int'' "modeV", ''bool'' "planar")}}
 
:{{Template:FuncDef|RemoveGrain (''clip'', ''int'' "mode", ''int'' "modeU", ''int'' "modeV", ''bool'' "planar")}}
 +
<br>
 +
::{{Par2| |clip| }}
 +
:::Input clip.
 
<br>
 
<br>
 
::{{Par2|mode |int|2}}
 
::{{Par2|mode |int|2}}
Line 50: Line 53:
 
<br>
 
<br>
  
== Links ==
+
==External Links ==
<br>
+
 
<br>
 
<br>
 
<br>
 
<br>
 
-----------------------------------------------
 
-----------------------------------------------
 
'''Back to [[RemoveGrain v0.9/RemoveGrain|RemoveGrain]] &larr;'''
 
'''Back to [[RemoveGrain v0.9/RemoveGrain|RemoveGrain]] &larr;'''

Latest revision as of 21:29, 21 September 2014


Back to RemoveGrain

Contents

[edit] Description

Purely spatial denoising function that includes 18 different modes.

[edit] Requirements


[edit] 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.


[edit] Examples

RemoveGrain with default values:

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


[edit] External Links




Back to RemoveGrain

Personal tools