RemoveGrain v0.9/Repair/Repair
From Avisynth wiki
(Difference between revisions)
(Repair) |
m (minor formatting) |
||
(One intermediate revision by one 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 == | ||
− | + | Repairs unwanted artifacts created by plugins included in the [[RemoveGrain v0.9]] package. | |
+ | <br> | ||
<br> | <br> | ||
− | |||
== Requirements == | == 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> | <br> | ||
− | == Syntax and Parameters == | + | == [[Script variables|Syntax and Parameters]] == |
:{{Template:FuncDef|Repair (''clip'', ''clip'', ''int'' "mode", ''int'' "modeU", ''int'' "modeV", ''bool'' "planar")}} | :{{Template:FuncDef|Repair (''clip'', ''clip'', ''int'' "mode", ''int'' "modeU", ''int'' "modeV", ''bool'' "planar")}} | ||
<br> | <br> | ||
::{{Par2| |clip| }} | ::{{Par2| |clip| }} | ||
− | ::: | + | :::Input clip to be repaired; usually the processed clip. |
<br> | <br> | ||
::{{Par2| |clip| }} | ::{{Par2| |clip| }} | ||
− | ::: | + | :::Input clip; usually the original unprocessed clip. |
<br> | <br> | ||
::{{Par2|mode |int|2}} | ::{{Par2|mode |int|2}} | ||
Line 55: | Line 56: | ||
Repair(Processed, Unprocessed, mode=2, modeU=2, modeV=2, planar=false) | Repair(Processed, Unprocessed, mode=2, modeU=2, modeV=2, planar=false) | ||
<br> | <br> | ||
− | + | ==External Links == | |
− | == Links == | + | |
− | + | ||
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[RemoveGrain v0.9/Repair|Repair]] ←''' | '''Back to [[RemoveGrain v0.9/Repair|Repair]] ←''' |
Latest revision as of 01:10, 22 September 2014
Back to Repair ←
Contents |
[edit] Description
Repairs unwanted artifacts created by plugins included in the RemoveGrain v0.9 package.
[edit] Requirements
- Progressive input only
- Supported color formats: YUY2, YV12
[edit] Syntax and Parameters
- Repair (clip, clip, int "mode", int "modeU", int "modeV", bool "planar")
- clip =
- Input clip to be repaired; usually the processed clip.
- clip =
- clip =
- Input clip; usually the original unprocessed clip.
- clip =
- int mode = 2
- int modeU = mode
- int modeV = modeU
- Independently control the processing mode for each plane.
- int mode = 2
- -1 : Bypass - input plane is trashed thus faster than mode 1
- 0 : Copy - input plane is left intact
- 1 :
- 2 : Default
- 3 :
- 4 :
- 5 :
- 6 :
- 7 :
- 8 :
- 9 :
- 10 :
- 11 :
- 12 :
- 13 :
- 14 :
- 15 :
- 16 :
- 17 :
- 18 :
- By default if modeU is not set it defaults to the value of mode. If modeV is not set it defaults to the value of modeU
- bool planar = false
- See SSETools Interleaved2Planar.
- bool planar = false
[edit] Examples
Repair with default values:
Unprocessed = AviSource("Blah.avi") Processed = RemoveGrain(Unprocessed, mode=2, modeU=2, modeV=2, planar=false)
Repair(Processed, Unprocessed, mode=2, modeU=2, modeV=2, planar=false)
[edit] External Links
Back to Repair ←