RemoveGrain v0.9/RemoveGrain/MCClense
From Avisynth wiki
Jump to navigationJump to search
Back to RemoveGrain ←
Description
Motion Compensated Clense. MCClense applies minmax clipping with respect to two frames (with the same frame number) from two neighbor clips. One clip is the forward motion compensated and the other the backward motion compensated clip. MCClense of course uses the same low level routine as Clense.
Requirements
- Progressive input only
- Supported color formats: YUY2, YV12
- MCClense (clip, clip, clip, bool "grey", bool "planar")
- clip =
- Input clip.
- clip =
- clip =
- Input clip assume to be the forward motion compensated clip.
- clip =
- clip =
- Input clip assume to be the backward motion compensated clip.
- clip =
- bool grey = false
- If true, chroma will not be processed nor copied.
- bool grey = false
- bool planar = false
- See SSETools Interleaved2Planar.
- bool planar = false
Examples
MCClense with default values:
AviSource("Blah.avi") MCClense(grey=false, planar=false)
External Links
- VideoProcessing Forum - MCClense explanation by Kassandro.
Back to RemoveGrain ←