HQDering

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (minor update)
Line 1: Line 1:
 
{{FilterCat|External_filters|Restoration_filters|Deringing & Mosquito Noise}}
 
{{FilterCat|External_filters|Restoration_filters|Deringing & Mosquito Noise}}
{{Filter
+
[[Category:Scripts]]
 +
{{Filter3
 
|{{Author/mf}}
 
|{{Author/mf}}
 
| v0.2
 
| v0.2
|
+
|3=[http://forum.doom9.org/showpost.php?p=793930&postcount=4 HQDering script]
|Deringing & Mosquito Noise
+
|4=Deringing & Mosquito Noise
|
+
|5=
* [[YV12]]
+
|6=[http://forum.doom9.org/showthread.php?s=&threadid=67532 Doom9 Thread original]<br>[http://forum.doom9.org/showthread.php?t=108114 Doom9 Thread update]
|}}
+
}}
 
== Description ==
 
== Description ==
 
:Applies deringing by using a smart smoother near edges (where ringing occurs) only.
 
:Applies deringing by using a smart smoother near edges (where ringing occurs) only.
 
<br>
 
<br>
==== Required Filters ====
+
== Requirements ==
 +
:- AviSynth 2.5.8 or later
 +
:- [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only
 +
:- Supported color formats: [[YV12]]
 +
<br>
 +
==== Required Plugins ====
 
:*[[Deen]]
 
:*[[Deen]]
 
:*[[MaskTools2]] 2.0a48+
 
:*[[MaskTools2]] 2.0a48+
 
<br>
 
<br>
== Syntax and Parameters ==
+
== [[Script variables|Syntax and Parameters]] ==
 
:{{Template:FuncDef|HQDering(clip input, int "strength", int "overall", clip "smoother")}}
 
:{{Template:FuncDef|HQDering(clip input, int "strength", int "overall", clip "smoother")}}
 
<br>
 
<br>
::{{Par|strength|int|255}}
+
::{{Par2|strength|int|255}}
 
:::Strength of deringing.
 
:::Strength of deringing.
 
:::: Range: 0 - 255
 
:::: Range: 0 - 255
 
<br>
 
<br>
::{{Par|overall|int|0}}
+
::{{Par2|overall|int|0}}
 
:::Overall smoothing.
 
:::Overall smoothing.
 
:::: Range: 0 - 255
 
:::: Range: 0 - 255
 
<br>
 
<br>
::{{Par|smoother|clip|}}
+
::{{Par2|smoother|clip| }}
 
:::Use a custom smoothed clip. If not defined, "Deen("a3d",4,15,15,20)" will be used by default.
 
:::Use a custom smoothed clip. If not defined, "Deen("a3d",4,15,15,20)" will be used by default.
 
<br>
 
<br>
Line 37: Line 43:
 
  [[AviSource]]("Blah.avi")
 
  [[AviSource]]("Blah.avi")
 
  HQDering(strength=200, smoother=[[RemoveGrain]](mode=4))
 
  HQDering(strength=200, smoother=[[RemoveGrain]](mode=4))
 
+
<br>
 
+
 
Another form of using a custom smoothed clip:
 
Another form of using a custom smoothed clip:
 
  [[AviSource]]("Blah.avi")
 
  [[AviSource]]("Blah.avi")
 
  smoothed = [[RemoveGrain]](mode=4)
 
  smoothed = [[RemoveGrain]](mode=4)
 
  HQDering(strength=200, smoother=smoothed)
 
  HQDering(strength=200, smoother=smoothed)
 
 
 
<br>
 
<br>
  
Line 56: Line 59:
 
<br>
 
<br>
 
== External Links ==
 
== External Links ==
- [http://forum.doom9.org/showthread.php?s=&threadid=67532 Original HQDering discussion thread]<br>
+
*[http://forum.doom9.org/showthread.php?s=&threadid=67532 Doom9 Forum] - Original HQDering discussion thread.<br>
- [http://forum.doom9.org/showthread.php?p=1043281 Additional information on HQDering]<br>
+
*[http://forum.doom9.org/showthread.php?p=793930#post793930 Doom9 Forum] - HQDering update by foxyshadis.<br>
- [http://forum.doom9.org/showthread.php?p=793930#post793930 HQDering update by foxyshadis]<br>
+
*[http://forum.doom9.org/showthread.php?p=1043281 Doom9 Forum] - Additional information on HQDering.<br>
- [http://web.archive.org/web/20090214224648/http://mf.creations.nl/avs/ mf's script/plugin repository]
+
<br>
 +
<br>
 +
<br>
 +
-----------------------------------------------
 +
'''Back to [[External_filters#Deringing_.26_Mosquito_Noise|External Filters]] &larr;'''

Revision as of 13:19, 29 June 2014

Abstract
Author mf
Version v0.2
Download HQDering script
Category Deringing & Mosquito Noise
License
Discussion Doom9 Thread original
Doom9 Thread update

Contents

Description

Applies deringing by using a smart smoother near edges (where ringing occurs) only.


Requirements

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


Required Plugins


Syntax and Parameters

HQDering(clip input, int "strength", int "overall", clip "smoother")


int  strength = 255
Strength of deringing.
Range: 0 - 255


int  overall = 0
Overall smoothing.
Range: 0 - 255


clip  smoother =
Use a custom smoothed clip. If not defined, "Deen("a3d",4,15,15,20)" will be used by default.


Examples

Default:

AviSource("Blah.avi")
HQDering()


Using a custom smoothed clip:

AviSource("Blah.avi")
HQDering(strength=200, smoother=RemoveGrain(mode=4))


Another form of using a custom smoothed clip:

AviSource("Blah.avi")
smoothed = RemoveGrain(mode=4)
HQDering(strength=200, smoother=smoothed)


Changelog

 03/03/2006  v0.2:  [foxyshadis]
     - Changed syntax to use MaskTools2
     - Slightly changed semantics.
       Makes using a custom smoothed clip much easier
26/12/2003 v0.1: [mf] - initial release


External Links





Back to External Filters

Personal tools