Frfun7: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
frfun7
 
m minor
Line 2: Line 2:
{{Filter
{{Filter
| Prunedtree
| Prunedtree
| 2013
| 2013 & rev6
| [http://dl.dropboxusercontent.com/s/mrvuou0kpnkkeg9/frfun7%202013.zip frfun7 2013.zip]
| [http://dl.dropboxusercontent.com/s/mrvuou0kpnkkeg9/frfun7%202013.zip frfun7 2013.zip]
[http://web.archive.org/web/20080905123941/http://soulhunter.chronocrossdev.com/data/frfun7_rev6.zip frfun7_rev6.zip]
[http://web.archive.org/web/20080905123941/http://soulhunter.chronocrossdev.com/data/frfun7_rev6.zip frfun7_rev6.zip]
Line 40: Line 40:
:::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.
   
   
::::*0 : default; fast but can create some minor artifacts around line edges. Quality is slightly inferior to frfun7_rev6.
::::*0 : fast but can create minor artifacts around line edges; faster but slightly lower quality than frfun7_rev6.
::::*1 : much slower but the quality is a little bit better than frfun7_rev6.  
::::*1 : slower than frfun7_rev6 but the quality is a little bit better.  
<br>
<br>
== Examples ==
== Examples ==

Revision as of 23:16, 30 March 2014

Abstract
Author Prunedtree
Version 2013 & rev6
Download frfun7 2013.zip

frfun7_rev6.zip

Category Spatial Denoisers
Requirements
License Closed source
Discussion


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 (x86)


frfun7 (clip, float "lambda",float "T", float "Tuv", int "P")


float  lambda = 1.1
Adjust the power of the local denoising.


float  T = 10.0
Limits the max luma denoising power for edges; 0 disables processing.


float  Tuv = 2.0
Limits the max chroma denoising power for edges; 0 disables processing.


int  P = 0
Undocumented parameter, only available in frfun7 2013.
By testing, one can conclude it's a "speed -vs- quality" trade off setting.
  • 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






Back to External Filters