RemoveGrain v0.9/Repair/TemporalRepair: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
TemporalRepair
 
Line 8: Line 8:
<br>
<br>
== Syntax and Parameters ==
== Syntax and Parameters ==
:{{Template:FuncDef| TemporalRepair (''clip'', ''clip'', ''int'' "mode", ''int'' "smooth", ''bool'' "grey", ''bool'' "planar")}}
:{{Template:FuncDef| TemporalRepair (''clip'', ''clip'', ''int'' "smooth", ''bool'' "grey", ''bool'' "planar")}}
<br>
<br>
::{{Par2| |clip| }}
::{{Par2| |clip| }}
Line 29: Line 29:
:::See SSETools Interleaved2Planar.  
:::See SSETools Interleaved2Planar.  
<br>
<br>
== Examples ==
== Examples ==
TemporalRepair with default values:
TemporalRepair with default values:

Revision as of 16:06, 20 January 2014

Back to Repair

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, mode=2, smooth=0, grey=false, planar=false)






Back to Repair