RemoveGrain v0.9/Repair/TemporalRepair
From Avisynth wiki
(Difference between revisions)
m (→Syntax and Parameters) |
m (→Examples) |
||
Line 34: | Line 34: | ||
Unprocessed = [[AviSource]]("Blah.avi") | Unprocessed = [[AviSource]]("Blah.avi") | ||
Processed = RemoveGrain(Unprocessed, mode=2, modeU=2, modeV=2, planar=false)<br> | Processed = RemoveGrain(Unprocessed, mode=2, modeU=2, modeV=2, planar=false)<br> | ||
− | TemporalRepair(Processed, Unprocessed | + | TemporalRepair(Processed, Unprocessed, smooth=0, grey=false, planar=false) |
<br> | <br> | ||
+ | |||
== Links == | == Links == | ||
<br> | <br> |
Revision as of 16:06, 20 January 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:
Syntax and Parameters
- TemporalRepair (clip, clip, int "smooth", bool "grey", bool "planar")
- clip =
- Mandatory input clip to be repaired. Usually the processed clip.
- clip =
- clip =
- Mandatory input clip. Usually the original unprocessed clip.
- clip =
- int smooth = 0
- smooth:
- 0 : default
- 1 :
- 2 : intended to aid in deinterlacing
- 3 : intended to aid in deinterlacing
- smooth:
- int smooth = 0
- 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
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 ←