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

From Avisynth wiki
Jump to navigationJump to search
m minor formatting
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{FilterCat4|External_filters|Plugin_functions|Other_filters|Limiting}}
'''Back to [[RemoveGrain v0.9/Repair|Repair]] ←'''
'''Back to [[RemoveGrain v0.9/Repair|Repair]] ←'''
== Description ==
== Description ==
: TemporalRepair is a temporal filter, primarily useful for restoring static (non moving) details of spatial filters like [[RemoveGrain v0.9/RemoveGrain/RemoveGrain|RemoveGrain]].
TemporalRepair is a temporal filter, primarily useful for restoring static (non moving) details of spatial filters like [[RemoveGrain v0.9/RemoveGrain/RemoveGrain|RemoveGrain]].
<br>
<br>
== Requirements: ==
:- Supported color formats: [[YUY2]], [[YV12]]
<br>
<br>
== Syntax and Parameters ==
== Requirements ==
* [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only
* Supported color formats: [[YUY2]], [[YV12]]
<br>
== [[Script variables|Syntax and Parameters]] ==
:{{Template:FuncDef| TemporalRepair (''clip'', ''clip'', ''int'' "smooth", ''bool'' "grey", ''bool'' "planar")}}
:{{Template:FuncDef| TemporalRepair (''clip'', ''clip'', ''int'' "smooth", ''bool'' "grey", ''bool'' "planar")}}
<br>
<br>
::{{Par2| |clip| }}
::{{Par2| |clip| }}
:::Mandatory input clip to be repaired. Usually the processed clip.
:::Input clip to be repaired; usually the processed clip.
<br>
<br>
::{{Par2| |clip| }}
::{{Par2| |clip| }}
:::Mandatory input clip. Usually the original unprocessed clip.
:::Input clip; usually the original unprocessed clip.
<br>
<br>
::{{Par2|smooth|int|0}}
::{{Par2|smooth|int|0}}
Line 36: Line 38:
  TemporalRepair(Processed, Unprocessed, smooth=0, grey=false, planar=false)
  TemporalRepair(Processed, Unprocessed, smooth=0, grey=false, planar=false)
<br>
<br>
 
==External Links ==
== Links ==
<br>
<br>
<br>
<br>
<br>
-----------------------------------------------
-----------------------------------------------
'''Back to [[RemoveGrain v0.9/Repair|Repair]] &larr;'''
'''Back to [[RemoveGrain v0.9/Repair|Repair]] &larr;'''

Latest revision as of 01:13, 22 September 2014

Back to Repair

Description

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

Requirements


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


clip   =
Input clip to be repaired; usually the processed clip.


clip   =
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)





Back to Repair