Hqdn3d
From Avisynth wiki
Abstract | |
---|---|
Author | Loren Merritt |
Version | v0.11 |
Download | hqdn3d-0.11.zip |
Category | Spatial-Temporal Denoisers |
License | GPLv2 |
Discussion |
Contents |
Description
High Quality DeNoise 3D is an AviSynth 2.5 port of the MPlayer filter of the same name. It performs a 3-way low-pass filter, which can completely remove high-frequency noise while minimizing blending artifacts.
Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12
Syntax and Parameters
- hqdn3d(clip, float "ls", float "cs", float "lt", float "ct", int "restart")
- clip clp =
- Input clip.
- clip clp =
- float ls = 4.0
- float cs = 3.0
- Luma and chroma spatial filter strength.
- float ls = 4.0
- float lt = 6.0
- float ct = 4.5
- Luma and chroma temporal filter strength.
- float lt = 6.0
- int restart = lt+1
- Whenever a frame is requested out of order, restart filtering this many frames before. While seeking still slightly affects the content of the frames returned, this should reduce the disturbance to an unnoticeable level.
- int restart = lt+1
- Filter strengths vary from 0 (no filtering) to 255 (there will be nothing left of your video). If any options are omitted, they will assume a value based on any other options that you did specify.
For example,hqdn3d(ls=2)
is equivalent tohqdn3d(ls=2, cs=1.5, lt=3, ct=2.25)
.
- Filter strengths vary from 0 (no filtering) to 255 (there will be nothing left of your video). If any options are omitted, they will assume a value based on any other options that you did specify.
Examples
hqdn3d with all default values:
AviSource("Blah.avi") hqdn3d(ls=4.0, cs=3.0, lt=6.0, ct=4.5, restart=7)
Changelog
Version Date Changes
v0.11 2005/01/25 - Fix a floating-point exception. v0.10 2004/10/25 - Initial release.
Archived Downloads
Version | Download | Mirror |
---|---|---|
v0.11 | hqdn3d-0.11.zip | hqdn3d-0.11.zip |
v0.10 | hqdn3d-0.10.zip | hqdn3d-0.10.zip |
External Links
- AquilineStudios - hqdn3d additional information.
Back to External Filters ←