AWarpSharpDering
From Avisynth wiki
(Difference between revisions)
m (→Requires Filters) |
m |
||
Line 6: | Line 6: | ||
|Deringing & Mosquito Noise | |Deringing & Mosquito Noise | ||
| | | | ||
− | * YV12 | + | * [[YV12]] |
|}} | |}} | ||
− | == | + | == Description == |
:Tries to clean up slight ringing around edges by heavily AWarpSharp-ing the image and then applying it only to the areas where the difference is small enough so detail isn't destroyed. | :Tries to clean up slight ringing around edges by heavily AWarpSharp-ing the image and then applying it only to the areas where the difference is small enough so detail isn't destroyed. | ||
− | + | <br> | |
− | === Required Filters === | + | ==== Required Filters ==== |
:*[[aWarpSharp2]] | :*[[aWarpSharp2]] | ||
:*[[MaskTools2]] 2.0a48+ | :*[[MaskTools2]] 2.0a48+ | ||
− | |||
− | |||
− | |||
<br> | <br> | ||
− | :{{Par|depth|int|32}} | + | == Syntax and Parameters == |
− | ::Depth value of aWarpSharp2.<br> | + | :{{Template:FuncDef|AWarpSharpDering(clip source, int "depth",int "diffthresh",int "lumathresh",int "debug")}} |
− | :{{Par|diffthresh|int|8}} | + | <br> |
− | ::Differences between the source and the sharpened clip, larger than this will not be touched. | + | ::{{Par|depth|int|32}} |
− | ::The smaller the difference the more of the sharpened clip will be used.<br> | + | :::Depth value of [[aWarpSharp2]]. |
− | :{{Par|lumathresh|int|32}} | + | <br> |
− | :: | + | ::{{Par|diffthresh|int|8}} |
+ | :::Differences between the source and the sharpened clip, larger than this will not be touched. | ||
+ | :::The smaller the difference the more of the sharpened clip will be used. | ||
+ | <br> | ||
+ | ::{{Par|lumathresh|int|32}} | ||
+ | :::Since the ringing is mostly notable in bright places this threshold will prevent dark areas from being hit too hard, for instance line work will be preserved. | ||
<br> | <br> | ||
== Examples == | == Examples == |
Revision as of 05:43, 8 November 2013
Abstract | |
---|---|
Author | Leak |
Version | 1.0 |
Download | [aWarpSharpDering] |
Category | Deringing & Mosquito Noise |
Requirements | |
License | |
Discussion |
Contents |
Description
- Tries to clean up slight ringing around edges by heavily AWarpSharp-ing the image and then applying it only to the areas where the difference is small enough so detail isn't destroyed.
Required Filters
- aWarpSharp2
- MaskTools2 2.0a48+
Syntax and Parameters
- AWarpSharpDering(clip source, int "depth",int "diffthresh",int "lumathresh",int "debug")
- depth int = 32
- Depth value of aWarpSharp2.
- depth int = 32
- diffthresh int = 8
- Differences between the source and the sharpened clip, larger than this will not be touched.
- The smaller the difference the more of the sharpened clip will be used.
- diffthresh int = 8
- lumathresh int = 32
- Since the ringing is mostly notable in bright places this threshold will prevent dark areas from being hit too hard, for instance line work will be preserved.
- lumathresh int = 32
Examples
AviSource("Blah.avi") AWarpSharpDering(depth=32, diffthresh=8, lumathresh=32)
Changelog