RgTools/Clense: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
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}}
Line 28: Line 30:
::<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> reduceflicker, planar, and cache parameters from the original [[RemoveGrain v1.0b/RemoveGrain/Clense| Clense]] are not implemented.
<br>
<br>
== Examples ==
== Examples ==
Clense with default values:
Clense with default values:

Revision as of 05:34, 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: reduceflicker, planar, and cache parameters from the original Clense are not implemented.


Examples

Clense with default values:

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




Back to RgTools