SSSharp
From Avisynth wiki
Abstract | |
---|---|
Author | *.mp4 guy |
Version | v0.1 |
Download | SSSharp script |
Category | Sharpeners |
License | |
Discussion | Doom9 Thread |
Contents |
Description
SSSharp; super slow sharpen.
Requirements
- AviSynth 2.5.8 or greater
- Progressive input only
- Supported color formats: YV12
Required Plugins
Latest version of the following plugins are recommended unless stated otherwise.
aWarpSharp- aWarpSharp2 - recommended drop-in replacement for aWarpSharp.
- DeGrainMedian - degrainmedian082.zip
- DCTFun4b
- MaskTools2
RemoveGrain - part of the RemoveGrain v1.0b package.- RgTools - recommended drop-in replacement for RemoveGrain!
- RemoveGrainHD - RemoveGrainHD___(0.5_-_2011-08-11).7z
- VariableBlur
Syntax and Parameters
- SSSharp (clip c, float "rad", bool "ssw", float "strength", int "iter", bool "ss", int "denoise")
- clip =
- Input clip
- clip =
- float rad = 0.25
- varY (luma variance) parameter of Unsharp. rad must be a multiple of 0.25 when
ss=true
, or 1 whenss=false
. Usable range is 0.25 to ~8, using a rad that is not close to the radius of the blurring present in your source will give sub-optimal results.
- varY (luma variance) parameter of Unsharp. rad must be a multiple of 0.25 when
- float rad = 0.25
- bool ssw = true
- Set to false to disable supersampled warp sharpening.
- bool ssw = true
- float strength = 4.0
- strength parameter of Unsharp.
- float strength = 4.0
- int iter = 1
- Sharpening iterations; higher iter, with lower strength will give more precise masking (less halos for same sharpening) but will be very slow. Valid range is from 0 to 4, 0 disables sharpening, 4 is the maximum number of iterations.
- int iter = 1
- bool ss = true
- Set to false to disable supersampled masking.
- bool ss = true
- int denoise = iter
- Denoising iterations after sharpening; defaults to the value of iter. The denoise parameter is mostly to keep the the noise level in check while undergoing multiple sharpening iterations. Valid range is from 0 to 4, 0 disables denoising, 4 is the maximum number of iterations.
- int denoise = iter
Examples
SSSharp with default settings:
AviSource("Blah.avi") SSSharp(rad=0.25, ssw=true, strength=4.0, iter=1.0, ss=true, denoise=1)
Changelog
Version Date Changes
v0.1 02/13/2007 - Optimizations by Didée v0.0 02/12/2007 - Initial release
External Links
- Doom9 Forum - SSSharpFaster by LaTo.
Back to External Filters ←