HQDering: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
Line 30: Line 30:


== Examples ==
== Examples ==
Default.
Default:
  [[AviSource]]("Blah.avi")
  [[AviSource]]("Blah.avi")
  HQDering()
  HQDering()
Using a custom smoothed clip.
 
 
Using a custom smoothed clip:
  [[AviSource]]("Blah.avi")
  [[AviSource]]("Blah.avi")
  HQDering(strength=200, smoother=[[RemoveGrain]](mode=4))
  HQDering(strength=200, smoother=[[RemoveGrain]](mode=4))
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)
Line 43: Line 47:


<br>
<br>
== Changelog ==
== Changelog ==
   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]

Revision as of 03:45, 28 October 2013

Abstract
Author mf
Version v0.2
Download
Category Deringing & Mosquito Noise
Requirements
  • YV12
License
Discussion

Introduction

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

Required Filters


Parameters

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


strength int = 255
Range: 0 - 255
Strength of deringing.
overall int = 0
Range: 0 - 255
Overall smoothing.
smoother clip =
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


- Original HQDering discussion thread
- Additional information on HQDering
- HQDering update by foxyshadis
- mf's script/plugin repository