HQDering
From Avisynth wiki
(Difference between revisions)
m (→Introduction) |
(minor things) |
||
(3 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat4|External_filters|Scripts|Restoration_filters|Deringing & Mosquito Noise}} |
− | {{ | + | {{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= |
− | + | |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 == | ||
+ | Applies deringing by using a smart smoother near edges (where ringing occurs) only.<br> | ||
+ | <br> | ||
+ | == 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]] | ||
− | + | === Required Plugins === | |
− | + | *[[Deen]] (beta 2) | |
− | + | *[[MaskTools2]] | |
− | + | ||
− | + | ||
− | + | ||
<br> | <br> | ||
− | + | == [[Script variables|Syntax and Parameters]] == | |
− | == 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> | ||
− | ::{{ | + | ::{{Par2|input|clip| }} |
− | ::: | + | :::Input clip |
− | + | <br> | |
− | ::{{ | + | ::{{Par2|strength|int|255}} |
− | ::: Range: 0 - 255 | + | :::Strength of deringing. |
− | + | :::Range: 0 - 255 | |
− | ::{{ | + | <br> |
− | + | ::{{Par2|overall|int|0}} | |
+ | :::Overall smoothing. | ||
+ | :::Range: 0 - 255 | ||
+ | <br> | ||
+ | ::{{Par2|smoother|clip| }} | ||
+ | :::Use a custom smoothed clip. If not defined, "Deen("a3d",4,15,15,20)" will be used by default. | ||
<br> | <br> | ||
− | |||
== Examples == | == Examples == | ||
− | + | HQDeing with default settings: | |
[[AviSource]]("Blah.avi") | [[AviSource]]("Blah.avi") | ||
− | HQDering() | + | HQDering(strength=255, overall=0) |
− | + | <br> | |
− | + | ||
Using a custom smoothed clip: | Using a custom smoothed clip: | ||
− | + | HQDering(smoother=[[RemoveGrain]](mode=4))<br> | |
− | HQDering( | + | #smoothed = [[RemoveGrain]](mode=4) # |
− | + | #HQDering(smoother=smoothed) # same as above but written differently | |
− | + | ||
− | + | ||
− | + | ||
− | smoothed = [[RemoveGrain]](mode=4) | + | |
− | HQDering( | + | |
− | + | ||
− | + | ||
<br> | <br> | ||
Line 52: | Line 51: | ||
03/03/2006 [http://forum.doom9.org/showpost.php?p=793930&postcount=4 v0.2]: [foxyshadis] | 03/03/2006 [http://forum.doom9.org/showpost.php?p=793930&postcount=4 v0.2]: [foxyshadis] | ||
- Changed syntax to use [[MaskTools2]] | - Changed syntax to use [[MaskTools2]] | ||
− | - Slightly changed semantics | + | - Slightly changed semantics. |
Makes using a custom smoothed clip much easier<br> | Makes using a custom smoothed clip much easier<br> | ||
26/12/2003 [http://web.archive.org/web/20090423011804/http://mf.creations.nl/avs/functions/HQDering-v0.1.avs v0.1]: [mf] | 26/12/2003 [http://web.archive.org/web/20090423011804/http://mf.creations.nl/avs/functions/HQDering-v0.1.avs v0.1]: [mf] | ||
Line 58: | Line 57: | ||
<br> | <br> | ||
== External Links == | == External Links == | ||
− | + | *[http://forum.doom9.org/showthread.php?s=&threadid=67532 Doom9 Forum] - Original HQDering discussion thread.<br> | |
− | + | *[http://forum.doom9.org/showthread.php?p=793930#post793930 Doom9 Forum] - HQDering update by foxyshadis.<br> | |
− | + | *[http://forum.doom9.org/showthread.php?p=1043281 Doom9 Forum] - Additional information on HQDering.<br> | |
− | - [ | + | <br> |
+ | <br> | ||
+ | ----------------------------------------------- | ||
+ | '''Back to [[External_filters#Deringing_.26_Mosquito_Noise|External Filters]] ←''' |
Latest revision as of 18:46, 31 December 2014
Abstract | |
---|---|
Author | mf |
Version | v0.2 |
Download | HQDering script |
Category | Deringing & Mosquito Noise |
License | |
Discussion | Doom9 Thread original Doom9 Thread update |
Contents |
[edit] Description
Applies deringing by using a smart smoother near edges (where ringing occurs) only.
[edit] Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12
[edit] Required Plugins
- Deen (beta 2)
- MaskTools2
[edit] Syntax and Parameters
- HQDering(clip input, int "strength", int "overall", clip "smoother")
- clip input =
- Input clip
- clip input =
- int strength = 255
- Strength of deringing.
- Range: 0 - 255
- int strength = 255
- int overall = 0
- Overall smoothing.
- Range: 0 - 255
- int overall = 0
- clip smoother =
- Use a custom smoothed clip. If not defined, "Deen("a3d",4,15,15,20)" will be used by default.
- clip smoother =
[edit] Examples
HQDeing with default settings:
AviSource("Blah.avi") HQDering(strength=255, overall=0)
Using a custom smoothed clip:
HQDering(smoother=RemoveGrain(mode=4))
#smoothed = RemoveGrain(mode=4) # #HQDering(smoother=smoothed) # same as above but written differently
[edit] 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
[edit] External Links
- Doom9 Forum - Original HQDering discussion thread.
- Doom9 Forum - HQDering update by foxyshadis.
- Doom9 Forum - Additional information on HQDering.
Back to External Filters ←