SSSharp: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
SSSharp - Super Slow Sharpen
 
 
Line 21: Line 21:
*<strike>[[aWarpSharp]]</strike>
*<strike>[[aWarpSharp]]</strike>
*[[aWarpSharp2]] - recommended drop-in replacement for aWarpSharp.
*[[aWarpSharp2]] - recommended drop-in replacement for aWarpSharp.
*[[DeGrainMedian]] - [http://avisynth.org.ru/degrain/degrainmedian082.zip degrainmedian082.zip]
*[[DeGrainMedian]]
*[[DCTFun|DCTFun4b]]
*[[DCTFun|DCTFun4b]]
*[[MaskTools2]]
*[[MaskTools2]]
*<strike>RemoveGrain - part of the [[RemoveGrain v1.0b]] package.</strike>
*<strike>RemoveGrain - part of the [[RemoveGrain v1.0b]] package.</strike>
*[[RgTools]] - recommended drop-in replacement for RemoveGrain!
*[[RgTools]] - recommended drop-in replacement for RemoveGrain!
*[[RemoveGrainHD]] - [http://chaosking.de/wp-content/uploads/avsfilters/Denoisers/Spatial_Denoisers/RemoveGrainHD___(0.5_-_2011-08-11).7z RemoveGrainHD___(0.5_-_2011-08-11).7z]
*[[RemoveGrainHD]]
*[[VariableBlur]]
*[[VariableBlur]]
<br>
<br>

Latest revision as of 16:25, 1 November 2015

Abstract
Author *.mp4 guy
Version v0.1
Download SSSharp script
Category Sharpeners
License
Discussion Doom9 Thread

Description

SSSharp; super slow sharpen.

Requirements

Required Plugins

Latest version of the following plugins are recommended unless stated otherwise.


SSSharp (clip c, float "rad", bool "ssw", float "strength", int "iter", bool "ss", int "denoise")


clip   =
Input clip


float  rad = 0.25
varY (luma variance) parameter of Unsharp. rad must be a multiple of 0.25 when ss=true, or 1 when ss=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.


bool  ssw = true
Set to false to disable supersampled warp sharpening.


float  strength = 4.0
strength parameter of Unsharp.


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.


bool  ss = true
Set to false to disable supersampled masking.


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.


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





Back to External Filters