Frfun7
From Avisynth wiki
(Difference between revisions)
m (link) |
m (minor formatting) |
||
Line 1: | Line 1: | ||
− | {{FilterCat|External_filters|Denoisers|Spatial Denoisers}} | + | {{FilterCat|External_filters|Plugins|Denoisers|Spatial Denoisers}} |
{{Filter3 | {{Filter3 | ||
| Prunedtree | | Prunedtree | ||
Line 10: | Line 10: | ||
<br> | <br> | ||
== Description == | == Description == | ||
− | + | frfun7 is a spatial fractal denoising plugin. | |
+ | <br> | ||
+ | <br> | ||
+ | <span style="color:red">'''Note:'''</span> frfun7 2013 is the updated version, unfortunately the output is not identical to frfun7_rev6. For that reason both versions are available. | ||
<br> | <br> | ||
− | |||
<br> | <br> | ||
== Requirements == | == 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> | <br> | ||
− | + | *'''''frfun7 2013 only''''': [http://www.microsoft.com/en-us/download/details.aspx?id=8328 Microsoft Visual C++ 2010 Redistributable Package (<tt>vcredist_x86.exe</tt>)] | |
− | + | ||
<br> | <br> | ||
== [[Script variables|Syntax and Parameters]] == | == [[Script variables|Syntax and Parameters]] == | ||
Line 35: | Line 36: | ||
<br> | <br> | ||
::{{Par2|P|int|0}} | ::{{Par2|P|int|0}} | ||
− | :::Undocumented parameter, only available in frfun7 2013. | + | :::Undocumented parameter, only available in frfun7 2013. |
:::By testing, one can conclude it's a "speed -vs- quality" trade off setting. | :::By testing, one can conclude it's a "speed -vs- quality" trade off setting. | ||
Line 75: | Line 76: | ||
<br> | <br> | ||
− | == Links == | + | ==External Links == |
*[http://forum.doom9.org/showthread.php?p=825604#post825604 Doom9 Forum] - frfun7_rev6 discussion.<br> | *[http://forum.doom9.org/showthread.php?p=825604#post825604 Doom9 Forum] - frfun7_rev6 discussion.<br> | ||
*[http://forum.doom9.org/showthread.php?p=1643055#post1643055 Doom9 Forum] - frfun7 2013 discussion.<br> | *[http://forum.doom9.org/showthread.php?p=1643055#post1643055 Doom9 Forum] - frfun7 2013 discussion.<br> |
Revision as of 07:05, 20 September 2014
Abstract | |
---|---|
Author | Prunedtree |
Version | 2013 & rev6 |
Download | frfun7 2013.zip |
Category | Spatial Denoisers |
License | Closed source |
Discussion | Doom9 Thread |
Contents |
Description
frfun7 is a spatial fractal denoising plugin.
Note: frfun7 2013 is the updated version, unfortunately the output is not identical to frfun7_rev6. For that reason both versions are available.
Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12
- frfun7 2013 only: Microsoft Visual C++ 2010 Redistributable Package (vcredist_x86.exe)
Syntax and Parameters
- frfun7 (clip, float "lambda",float "T", float "Tuv", int "P")
- float lambda = 1.1
- Adjust the power of the local denoising.
- float lambda = 1.1
- float T = 10.0
- Limits the max luma denoising power for edges; 0 disables processing.
- float T = 10.0
- float Tuv = 2.0
- Limits the max chroma denoising power for edges; 0 disables processing.
- float Tuv = 2.0
- int P = 0
- Undocumented parameter, only available in frfun7 2013.
- By testing, one can conclude it's a "speed -vs- quality" trade off setting.
- int P = 0
- 0 : fast but can create minor artifacts around line edges; faster but slightly lower quality than frfun7_rev6.
- 1 : slower than frfun7_rev6 but the quality is a little bit better.
Examples
frfun7 with default settings:
AviSource("Blah.avi") frfun7(lambda=1.1, T=6.0, Tuv=2.0, P=0)
Changelog
Version Date Changes
2013 2013/09/04 - no longer buffers the input; yields a nice speed increase. - "P" parameter added
rev6 2006/05/10 - bug fixes - remove mod8 restriction - process first and last frame
rev1 2006/05/05 - initial release
Archived Downloads
Version | Download | Mirror | Mirror 2 |
---|---|---|---|
2013 | frfun7 2013.zip | frfun7 2013.zip | |
rev6 | frfun7_rev6.zip | frfun7_rev6.zip | frfun7_rev6.zip |
External Links
- Doom9 Forum - frfun7_rev6 discussion.
- Doom9 Forum - frfun7 2013 discussion.
Back to External Filters ←