RgTools/VerticalCleaner

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (Syntax and Parameters)
m (Undo revision 5227 by Reel.Deal (talk))
 
Line 27: Line 27:
 
<br>
 
<br>
 
::{{Par2|planar|bool|false}}
 
::{{Par2|planar|bool|false}}
:::Dummy parameter to keep compatibility with the original plugin; it's use is not recommended.
+
:::Parameter to keep compatibility with the original plugin; it's use is not recommended.
 
:::This allows to skip any colorspace checks whatsoever, making the filter always assume that planar input is passed.
 
:::This allows to skip any colorspace checks whatsoever, making the filter always assume that planar input is passed.
 
<br>
 
<br>

Latest revision as of 05:01, 14 January 2015

Back to RgTools

Contents

[edit] Description

A fast vertical median identical to the original VerticalCleaner.

[edit] Requirements


[edit] Syntax and Parameters

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


clip   =
Input clip must be planar.


int  mode = 1
int  modeU = mode
int  modeV = modeU
Modes:
  • 0 : copy input
  • 1 : vertical median
  • 2 : relaxed vertical median (preserves more detail)
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.
Note: The default mode of the original VerticalCleaner is 2.


bool  planar = false
Parameter to keep compatibility with the original plugin; it's use is not recommended.
This allows to skip any colorspace checks whatsoever, making the filter always assume that planar input is passed.


[edit] Examples

VerticalCleaner with default values:

AviSource("Blah.avi")
VerticalCleaner(mode=1, modeU=1, modeV=1, planar=false)




Back to RgTools

Personal tools