AWarpSharpDering
From Avisynth wiki
(Difference between revisions)
(Created page with "{{FilterCat|External_filters|Restoration_filters|Deringing & Mosquito Noise}} {{Filter |[http://leak.no-ip.org/AviSynth/ Leak] |1.0 |[aWarpSharpDering] |Deringing & Mosquito N...") |
|||
| Line 8: | Line 8: | ||
* YV12 | * YV12 | ||
|}} | |}} | ||
| − | |||
| − | |||
== Introduction == | == Introduction == | ||
| Line 18: | Line 16: | ||
:*[[MaskTools2]] 2.0a48+ | :*[[MaskTools2]] 2.0a48+ | ||
| − | == | + | == Parameters == |
| − | + | {{Template:FuncDef|AWarpSharpDering(clip source, int "depth",int "diffthresh",int "lumathresh",int "debug")}} | |
| + | <br> | ||
:{{Par|depth|int|32}} | :{{Par|depth|int|32}} | ||
::Depth value of aWarpSharp2.<br> | ::Depth value of aWarpSharp2.<br> | ||
| Line 27: | Line 26: | ||
:{{Par|lumathresh|int|32}} | :{{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. | ::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> | |
== Examples == | == Examples == | ||
| − | |||
[[AviSource]]("Blah.avi") | [[AviSource]]("Blah.avi") | ||
AWarpSharpDering(depth=32, diffthresh=8, lumathresh=32) | AWarpSharpDering(depth=32, diffthresh=8, lumathresh=32) | ||
| − | + | <br> | |
== Changelog == | == Changelog == | ||
| − | + | <br> | |
== Links == | == Links == | ||
| − | |||
- [http://leak.no-ip.org/AviSynth/AWarpSharpDering/ Leak's script/plugin repository] | - [http://leak.no-ip.org/AviSynth/AWarpSharpDering/ Leak's script/plugin repository] | ||
Revision as of 21:33, 15 October 2013
| Abstract | |
|---|---|
| Author | Leak |
| Version | 1.0 |
| Download | [aWarpSharpDering] |
| Category | Deringing & Mosquito Noise |
| Requirements |
|
| License | |
| Discussion | |
Contents |
Introduction
- 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.
Requires Filters
- aWarpSharp2
- MaskTools2 2.0a48+
Parameters
AWarpSharpDering(clip source, int "depth",int "diffthresh",int "lumathresh",int "debug")
- depth int = 32
- Depth value of aWarpSharp2.
- Depth value of aWarpSharp2.
- 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.
- 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.
Examples
AviSource("Blah.avi") AWarpSharpDering(depth=32, diffthresh=8, lumathresh=32)
Changelog