AWarpsharp2/aWarp
From Avisynth wiki
(Difference between revisions)
m (Update) |
m (→Syntax and Parameters) |
||
Line 15: | Line 15: | ||
::{{Par2| |clip| |}} | ::{{Par2| |clip| |}} | ||
::::Edge mask clip; usually the input clip processed by [[AWarpsharp2/aSobel|aSobel]] and followed by [[AWarpsharp2/aBlur|aBlur]]. | ::::Edge mask clip; usually the input clip processed by [[AWarpsharp2/aSobel|aSobel]] and followed by [[AWarpsharp2/aBlur|aBlur]]. | ||
+ | ::::If you want more stable results it's good idea to do anti-aliasing and temporal filtering on the edge mask before passing it to the warping stage. | ||
<br> | <br> | ||
::{{Par2|depth|int|3}} | ::{{Par2|depth|int|3}} | ||
Line 30: | Line 31: | ||
::::* 6 : same as 4, but don't process luma | ::::* 6 : same as 4, but don't process luma | ||
<br> | <br> | ||
+ | |||
== Examples == | == Examples == | ||
aWarp with ''all'' default settings is identical to [[/aWarpSharp2|aWarpSharp2()]]: | aWarp with ''all'' default settings is identical to [[/aWarpSharp2|aWarpSharp2()]]: |
Revision as of 02:44, 10 March 2014
Back to aWarpSharp2 ←
Description
- aWarp is designed for a more custom warp-sharpening than aWarpSharp2 allows.
Syntax and Parameters
- aWarp (clip, clip, int "depth", int "chroma")
- clip =
- Input clip.
- clip =
- int depth = 3
- Range: -128 to 127
- Strength of the final warping. Negative values result in warping in opposite direction.
- Range: -128 to 127
- int depth = 3
- int chroma = 4
- Processing mode for chroma planes (U and V):
- 0 : fill with zeroes
- 1 : don't care
- 2 : copy
- 3 : process
- 4 : guide by luma
- 5 : same as 3, but don't process luma
- 6 : same as 4, but don't process luma
- Processing mode for chroma planes (U and V):
- int chroma = 4
Examples
aWarp with all default settings is identical to aWarpSharp2():
input = AviSource("Blah.avi") edge_mask = input.aSobel(thresh=128, chroma=1).aBlur(blur=3, type=1, chroma=1)
aWarp(input, edge_mask, depth=3, chroma=4)
The following examples are written differently but are identical to the one above.
AviSource("Blah.avi") aWarp(aSobel().aBlur())
input = AviSource("Blah.avi") edge_mask = input.aSobel().aBlur()
aWarp(input, edge_mask)
Back to aWarpSharp2 ←