SeeSaw

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(add changelog)
 
(6 intermediate revisions by one user not shown)
Line 1: Line 1:
{{FilterCat|External_filters|Denoisers|Spatial_Denoisers}}
+
{{FilterCat4|External_filters|Scripts|Restoration_filters|Sharpeners}}
{{Filter|kiraru2003, xeon533
+
{{Filter3
|17.03.2003
+
|{{Author/Didée}}
 +
|0.3g
 +
|[[Media:SeeSaw.avs|SeeSaw.avs]]
 +
|Sharpeners
 
|
 
|
|Spatial Denoisers
+
|6=[http://forum.doom9.org/showthread.php?t=104701 Doom9 Thread]}}
|
+
== Description ==
* Avisynth 2.5+
+
SeeSaw is a function that uses a balance of denoising and sharpening to enhance a clip. This function provides a (simple) implementation of the "crystality sharpen" principle. In conjunction with a user-specified denoised clip, the aim is to enhance weak detail, hopefully without oversharpening or creating jaggies on strong detail, and produce a result that is temporally stable without detail shimmering, while keeping everything within reasonable bitrate requirements. This is done by intermixing source, denoised source and a modified sharpening process, in a seesaw-like manner. (Full Name: "Denoiser-and-Sharpener-are-riding-the-SeeSaw" )
* YV12, YUY2
+
|GPL v2}}
+
{{Template:FuncDef|_2DCleanYUY2(int "interlaced", int "thresholdY", int "radiusX", int "radiusY", int "dmode", int "thresholdU", int "thresholdV")}}
+
  
== Abstract ==
 
This filter averages pixels in a configurable radius around a source pixel that are within a configurable threshold of the central pixel. This has the effect of blending low-level video noise while retaining sharp details.
 
  
== Description ==
+
== Requirements ==
 +
AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater]
 +
* [[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]]
  
{{Par|NRlimit|int|2}}
+
=== Required Plugins ===
Absolute limit for pixel change by denoising
+
*[[MaskTools2]]
 +
*<strike>RemoveGrain- part of the [[RemoveGrain v1.0b]] package.</strike>
 +
*[[RgTools]] - recommended drop-in replacement for RemoveGrain!
 +
<BR>
  
{{Par|sootheS|int|0}}
+
== [[Script variables|Syntax and Parameters]] ==
0=minimum, 100=maximum smoothing of sharpener's spatial effect.
+
:{{Template:FuncDef|SeeSaw (clip  clp, clip "denoised", int "NRlimit",int "NRlimit2", float "Sstr", int "Slimit", float "Spower", float "SdampLo", float "SdampHi", float "Szp", float "bias", int "Smode", int "sootheT", int "sootheS", float "ssx", float "ssy") }}
 
+
<br>
{{Par|ss_x|float|1.5}}
+
::{{Par2|clp|clip| }}
{{Par|ss_y|float|1.5}}
+
:::Input clip; the noisy source.
SeeSaw doesn't require supersampling urgently,
+
<br>
 +
::{{Par2|denoised|clip| }}
 +
:::Input clip; denoised clip.
 +
:::You're very much encouraged to feed your own custom denoised clip into SeeSaw. If the "denoised" clip parameter is omitted, a simple "spatial pressdown" filter is used.
 +
<br>
 +
::{{Par2|NRlimit|int|2}}
 +
:::Absolute limit for pixel change by denoising
 +
<br>
 +
::{{Par2|NRLimit2|int|NRlimit+1}}
 +
:::Limit for intermediate denoising
 +
<br>
 +
::{{Par2|Sstr|float|1.5}}
 +
:::Sharpening strength (don't touch this too much).
 +
<br>
 +
::{{Par2|Slimit|int|NRlimit+2}}
 +
:::Positive: absolute limit for pixel change by sharpening negative: pixel's sharpening difference is reduced to <code>diff = pow(diff,1/abs(limit))</code>
 +
<br>
 +
::{{Par2|Spower|float|4}}
 +
:::Exponent for modified sharpener.
 +
<br>
 +
::{{Par2|Szp|float|16+2}}
 +
:::Zero point - below: overdrive sharpening - above: reduced sharpening.
 +
<br>
 +
::{{Par2|SdampLo|float|Spower+1}}
 +
:::Reduces overdrive sharpening for very small changes.
 +
<br>
 +
::{{Par2|SdampHi|float|24}}
 +
:::Further reduces sharpening for big sharpening changes. Try 15~30. "0" disables.
 +
<br>
 +
::{{Par2|bias|float|49}}
 +
:::Bias towards detail ( >= 50 ), or towards calm result ( < 50 ).
 +
<br>
 +
::{{Par2|Smode|int|ssx<1.35 ? 11 : ssx<1.51 ? 20 : 19}}
 +
:::RemoveGrain mode used in the modified sharpening function (sharpen2).
 +
<br>
 +
::{{Par2|sootheT|int|49}}
 +
:::0=minimum, 100=maximum soothing of sharpener's temporal instability.
 +
:::(-100 .. -1 : will chain 2 instances of temporal soothing.)
 +
<br>
 +
::{{Par2|sootheS|int|0}}
 +
:::0=minimum, 100=maximum smoothing of sharpener's spatial effect.
 +
<br>
 +
::{{Par2|ss_x|float|1.5}}
 +
::{{Par2|ss_y|float|1.5}}
 +
:::SeeSaw doesn't require supersampling urgently, if at all, small values ~1.25 seem to be enough.
 +
<br>
  
 
== Examples ==
 
== Examples ==
 
<pre>
 
<pre>
 
avisource("Blah.avi")
 
avisource("Blah.avi")
 +
SeeSaw()
 
</pre>
 
</pre>
  
 
<pre>
 
<pre>
 +
a = TheNoisySource
 +
b = a.YourPreferredDenoising()
 +
SeeSaw( a, b, [parameters] )
 
</pre>
 
</pre>
 
+
<br>
== Links ==
+
== Changelog ==
Download:  
+
Version      Date(D/M/Y)      Changes<br>
Discussion: [ Doom9 thread.]
+
0.3g        15/12/2015      - Mod by StainlessS
 +
                                * Force int call arguments to user script function float params to be explicit floats.<br>
 +
0.3f        13/12/2006      - Mod by [http://forum.doom9.org/showthread.php?p=916812#post916812 foxyshadis] 
 +
                                * Update to use MaskTools2.<br>
 +
0.3e        02/01/2006      - Renamed "Sdamp" to "SdampLo"
 +
                              - "SdampHi" (new) will further reduce sharpening on detail that's already strong (even less aliasing, hopefully)
 +
                              - "SootheT=0" and "NRlimit=0" now are really NOPs (formerly these cases applied YV12Lutxy, with zero effect.)
 +
                              - Todo: replace [additive] sharpening with [multiplication] sharpening
 +
<br>
 +
==External Links ==
 +
Download: [[Media:SeeSaw.avs|SeeSaw.avs]] : Current version, using masktools2.<br/>
 +
Discussion: [http://forum.doom9.org/showthread.php?t=104701 Doom9 thread.]
 +
<br>
 +
<br>
 +
-----------------------------------------------
 +
'''Back to [[External_filters#Sharpeners|External Filters]] &larr;'''

Latest revision as of 20:43, 3 June 2017

Abstract
Author Didée
Version 0.3g
Download SeeSaw.avs
Category Sharpeners
License
Discussion Doom9 Thread

Contents

 [hide

[edit] Description

SeeSaw is a function that uses a balance of denoising and sharpening to enhance a clip. This function provides a (simple) implementation of the "crystality sharpen" principle. In conjunction with a user-specified denoised clip, the aim is to enhance weak detail, hopefully without oversharpening or creating jaggies on strong detail, and produce a result that is temporally stable without detail shimmering, while keeping everything within reasonable bitrate requirements. This is done by intermixing source, denoised source and a modified sharpening process, in a seesaw-like manner. (Full Name: "Denoiser-and-Sharpener-are-riding-the-SeeSaw" )


[edit] Requirements

AviSynth 2.5.8 or greater

[edit] Required Plugins


[edit] Syntax and Parameters

SeeSaw (clip clp, clip "denoised", int "NRlimit",int "NRlimit2", float "Sstr", int "Slimit", float "Spower", float "SdampLo", float "SdampHi", float "Szp", float "bias", int "Smode", int "sootheT", int "sootheS", float "ssx", float "ssy")


clip  clp =
Input clip; the noisy source.


clip  denoised =
Input clip; denoised clip.
You're very much encouraged to feed your own custom denoised clip into SeeSaw. If the "denoised" clip parameter is omitted, a simple "spatial pressdown" filter is used.


int  NRlimit = 2
Absolute limit for pixel change by denoising


int  NRLimit2 = NRlimit+1
Limit for intermediate denoising


float  Sstr = 1.5
Sharpening strength (don't touch this too much).


int  Slimit = NRlimit+2
Positive: absolute limit for pixel change by sharpening negative: pixel's sharpening difference is reduced to diff = pow(diff,1/abs(limit))


float  Spower = 4
Exponent for modified sharpener.


float  Szp = 16+2
Zero point - below: overdrive sharpening - above: reduced sharpening.


float  SdampLo = Spower+1
Reduces overdrive sharpening for very small changes.


float  SdampHi = 24
Further reduces sharpening for big sharpening changes. Try 15~30. "0" disables.


float  bias = 49
Bias towards detail ( >= 50 ), or towards calm result ( < 50 ).


int  Smode = ssx<1.35 ? 11 : ssx<1.51 ? 20 : 19
RemoveGrain mode used in the modified sharpening function (sharpen2).


int  sootheT = 49
0=minimum, 100=maximum soothing of sharpener's temporal instability.
(-100 .. -1 : will chain 2 instances of temporal soothing.)


int  sootheS = 0
0=minimum, 100=maximum smoothing of sharpener's spatial effect.


float  ss_x = 1.5
float  ss_y = 1.5
SeeSaw doesn't require supersampling urgently, if at all, small values ~1.25 seem to be enough.


[edit] Examples

avisource("Blah.avi")
SeeSaw()
a = TheNoisySource
b = a.YourPreferredDenoising()
SeeSaw( a, b, [parameters] )


[edit] Changelog

Version      Date(D/M/Y)      Changes
0.3g 15/12/2015 - Mod by StainlessS * Force int call arguments to user script function float params to be explicit floats.
0.3f 13/12/2006 - Mod by foxyshadis * Update to use MaskTools2.
0.3e 02/01/2006 - Renamed "Sdamp" to "SdampLo" - "SdampHi" (new) will further reduce sharpening on detail that's already strong (even less aliasing, hopefully) - "SootheT=0" and "NRlimit=0" now are really NOPs (formerly these cases applied YV12Lutxy, with zero effect.) - Todo: replace [additive] sharpening with [multiplication] sharpening


[edit] External Links

Download: SeeSaw.avs : Current version, using masktools2.
Discussion: Doom9 thread.


Back to External Filters

Personal tools