RgTools/Clense: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
 
(One intermediate revision by the same user not shown)
Line 20: Line 20:
<br>
<br>
::{{Par2|previous|clip| }}
::{{Par2|previous|clip| }}
:::Optional clip.
<br>
<br>
::{{Par2|next|clip| }}
::{{Par2|next|clip| }}
:::Optional clip.
<br>
<br>
::{{Par2|grey|bool|false}}
::{{Par2|grey|bool|false}}
:::If true, chroma will not be processed nor copied.
:::If true, chroma will not be processed nor copied.
<br>
<br>
::<span style="color:red">'''Note:'''</span> reduceflicker, planar, and cache parameters from the original [[RemoveGrain v1.0b/RemoveGrain/Clense| Clense]] are not implemented.
::<span style="color:red">'''Note:'''</span> deprecated <tt>reduceflicker</tt>, <tt>planar</tt>, and <tt>cache</tt> parameters from the original [[RemoveGrain v1.0b/RemoveGrain/Clense| Clense]] are not implemented. This version also includes the <tt>{{Template:FuncDef|previous}}</tt> and <tt>{{Template:FuncDef|next}}</tt> parameters from Clense in RemoveGrainT v1.0pre which were not available in the original Clense.
<br>
<br>
== Examples ==
== Examples ==
Clense with default values:
Clense with default values:

Latest revision as of 06:00, 14 January 2015


Back to RgTools

Description

Clense is a Temporal median of three frames, this filter can be used as a building block for many fancy medians. Clense is identical to MedianBlurTemporal(0,0,0,1) but a lot faster.

Requirements


Clense (clip, clip "previous", clip "next", bool "grey")


clip   =
Input clip must be planar.


clip  previous =
Optional clip.


clip  next =
Optional clip.


bool  grey = false
If true, chroma will not be processed nor copied.


Note: deprecated reduceflicker, planar, and cache parameters from the original Clense are not implemented. This version also includes the previous and next parameters from Clense in RemoveGrainT v1.0pre which were not available in the original Clense.


Examples

Clense with default values:

AviSource("Blah.avi")
Clense(grey=false)




Back to RgTools