RgTools/Clense
From Avisynth wiki
(Difference between revisions)
m (minor formatting) |
m (→Description: reword) |
||
Line 4: | Line 4: | ||
== Description == | == Description == | ||
− | {{Template:FuncDef|Clense}} is a Temporal median of three frames. | + | {{Template:FuncDef|Clense}} is a Temporal median of three frames, this filter can be used as a building block for many fancy medians. {{Template:FuncDef|Clense}} is identical to [[MedianBlur2|MedianBlurTemporal(0,0,0,1)]] but a lot faster |
<br> | <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 |
Revision as of 18:30, 25 October 2014
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 =
- clip previous =
- clip next =
- 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 ←