RgTools/Clense
From Avisynth wiki
(Difference between revisions)
m (→Description) |
m (→Syntax and Parameters) |
||
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 04:34, 14 January 2015
Back to RgTools ←
Contents |
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
Syntax and Parameters
- Clense (clip, clip "previous", clip "next", bool "grey")
- clip =
- Input clip must be planar.
- clip =
- clip previous =
- Optional clip.
- clip previous =
- clip next =
- Optional clip.
- clip next =
- bool grey = false
- If true, chroma will not be processed nor copied.
- bool grey = false
- 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 ←