RemoveGrain v0.9/Repair/TemporalRepair

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (Examples)
m (category)
Line 1: Line 1:
 +
[[Category:Plugin_Filters]]
 +
[[Category:Limiting]]
 
'''Back to [[RemoveGrain v0.9/Repair|Repair]] ←'''
 
'''Back to [[RemoveGrain v0.9/Repair|Repair]] ←'''
 
== Description ==
 
== Description ==

Revision as of 00:21, 24 August 2014

Back to Repair

Contents

Description

TemporalRepair is a temporal filter, primarily useful for restoring static (non moving) details of spatial filters like RemoveGrain.


Requirements:

- Supported color formats: YUY2, YV12


Syntax and Parameters

TemporalRepair (clip, clip, int "smooth", bool "grey", bool "planar")


clip   =
Mandatory input clip to be repaired. Usually the processed clip.


clip   =
Mandatory input clip. Usually the original unprocessed clip.


int  smooth = 0
smooth:
  • 0 : default
  • 1 :
  • 2 : intended to aid in deinterlacing
  • 3 : intended to aid in deinterlacing


bool  grey = false
If true chroma will not be processed nor copied.


bool  planar = false
See SSETools Interleaved2Planar.


Examples

TemporalRepair with default values:

Unprocessed = AviSource("Blah.avi")
Processed   = RemoveGrain(Unprocessed, mode=2, modeU=2, modeV=2, planar=false)
TemporalRepair(Processed, Unprocessed, smooth=0, grey=false, planar=false)


Links





Back to Repair