AWarpSharpDering: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
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..."
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{FilterCat|External_filters|Restoration_filters|Deringing & Mosquito Noise}}
{{FilterCat4|External_filters|Scripts|Restoration_filters|Deringing & Mosquito Noise}}
{{Filter
{{Filter3
|[http://leak.no-ip.org/AviSynth/ Leak]
|[http://leak.no-ip.org/AviSynth/ Leak]
|1.0
|1.1
|[aWarpSharpDering]
|[[Media:aWarpSharpDering.avsi|aWarpSharpDering.avsi]]
|Deringing & Mosquito Noise
|Deringing & Mosquito Noise
|
|
* YV12
|}}
|}}


{{Template:FuncDef|AWarpSharpDering(clip source, int "depth",int "diffthresh",int "lumathresh",int "debug")}}
== 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.<br>
== Introduction ==
<br>
: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.
== Requirements ==
 
* AviSynth 2.5.8 or later
=== Requires Filters ===
* [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only
:*[[aWarpSharp2]]
* Supported color formats: [[YV12]]
:*[[MaskTools2]] 2.0a48+


== Description ==
==== Required Plugins ====
Latest versions of the following filters are recommended unless stated otherwise.<br>
*<strike>[[aWarpSharp]]</strike>
*[[aWarpSharp2]] - recommended drop-in replacement for aWarpSharp.
*[[MaskTools2]]
<br>


:{{Par|depth|int|32}}
== [[Script variables|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.
::{{Par2|source|clip| }}
::The smaller the difference the more of the sharpened clip will be used.<br>
:::Input clip.
:{{Par|lumathresh|int|32}}
<br>
::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.
::{{Par2|depth|int|32}}
:::Depth value of aWarpSharp.
<br>
::{{Par2|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>
::{{Par2|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>


== Examples ==
== Examples ==
 
aWarpSharpDering with default settings:
  [[AviSource]]("Blah.avi")
  [[AviSource]]("Blah.avi")
  AWarpSharpDering(depth=32, diffthresh=8, lumathresh=32)
  aWarpSharpDering(depth=32, diffthresh=8, lumathresh=32)
 
<br>
== Changelog ==
== Changelog ==
 
Version      Date            Changes<br>
== Links ==
1.1          2015/06/14      - Update to use MaskTools2 and other minor corrections.
 
1.0          2006/07/06      - Initial release[http://leak.no-ip.org/AviSynth/AWarpSharpDering/]
- [http://leak.no-ip.org/AviSynth/AWarpSharpDering/ Leak's script/plugin repository]
<br>
==External Links ==
<br>
<br>
-----------------------------------------------
'''Back to [[External_filters#Deringing_.26_Mosquito_Noise|External Filters]] &larr;'''

Latest revision as of 14:00, 15 June 2015

Abstract
Author Leak
Version 1.1
Download aWarpSharpDering.avsi
Category Deringing & Mosquito Noise
License
Discussion

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.

Requirements

  • AviSynth 2.5.8 or later
  • Progressive input only
  • Supported color formats: YV12

Required Plugins

Latest versions of the following filters are recommended unless stated otherwise.


aWarpSharpDering (clip source, int "depth",int "diffthresh",int "lumathresh",int "debug")


clip  source =
Input clip.


int  depth = 32
Depth value of aWarpSharp.


int  diffthresh = 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.


int  lumathresh = 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

aWarpSharpDering with default settings:

AviSource("Blah.avi")
aWarpSharpDering(depth=32, diffthresh=8, lumathresh=32)


Changelog

Version      Date            Changes
1.1 2015/06/14 - Update to use MaskTools2 and other minor corrections. 1.0 2006/07/06 - Initial release[1]





Back to External Filters