LazyDering
From Avisynth wiki
(Difference between revisions)
(→Introduction) |
|||
Line 9: | Line 9: | ||
|}} | |}} | ||
− | |||
== Introduction == | == Introduction == | ||
Line 18: | Line 17: | ||
:*[[aWarpSharp2]] | :*[[aWarpSharp2]] | ||
:*[[MaskTools2]] 2.0a48+ | :*[[MaskTools2]] 2.0a48+ | ||
− | + | <br> | |
− | == | + | == Parameters == |
− | + | {{Template:FuncDef|LazyDering(clip source, int "depth",int "diff",int "thr")}} | |
+ | <br> | ||
+ | <br> | ||
:{{Par|depth|int|32}} | :{{Par|depth|int|32}} | ||
::Depth value of aWarpSharp2.<br> | ::Depth value of aWarpSharp2.<br> | ||
Line 28: | Line 29: | ||
:{{Par|thr|int|32}} | :{{Par|thr|int|32}} | ||
::Threshold to prevent dark areas from being hit too hard. | ::Threshold to prevent dark areas from being hit too hard. | ||
− | + | <br> | |
== Examples == | == Examples == | ||
[[AviSource]]("Blah.avi") | [[AviSource]]("Blah.avi") | ||
LazyDering(depth=32, diff=8, thr=32) | LazyDering(depth=32, diff=8, thr=32) | ||
− | + | <br> | |
== Changelog == | == Changelog == | ||
− | + | <br> | |
== Links == | == Links == | ||
- [http://forum.doom9.org/showthread.php?t=154777 RazorbladeByte's script repository] | - [http://forum.doom9.org/showthread.php?t=154777 RazorbladeByte's script repository] |
Revision as of 21:29, 15 October 2013
Abstract | |
---|---|
Author | Leak, RazorbladeByte |
Version | 0.1 |
Download | LazyDering_v0.1.avsi |
Category | Deringing & Mosquito Noise |
Requirements |
|
License | |
Discussion |
Contents |
Introduction
- LazyDering tries to clean up slight ringing around edges by applying aWarpSharp2 only to areas where the difference is small enough so detail isn't destroyed.
- LazyDering it's a modified version of aWarpSharpDering.
Requires Filters
- aWarpSharp2
- MaskTools2 2.0a48+
Parameters
LazyDering(clip source, int "depth",int "diff",int "thr")
- depth int = 32
- Depth value of aWarpSharp2.
- Depth value of aWarpSharp2.
- diff 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.
- Differences between the source and the sharpened clip, larger than this will not be touched.
- thr int = 32
- Threshold to prevent dark areas from being hit too hard.
Examples
AviSource("Blah.avi") LazyDering(depth=32, diff=8, thr=32)
Changelog