RgTools/Clense
From Avisynth wiki
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: 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 ←