SeeSaw
From Avisynth wiki
(Difference between revisions)
m (1 revision) |
|||
Line 1: | Line 1: | ||
− | {{FilterCat|External_filters| | + | {{FilterCat|External_filters|Denoisers|Spatial_Denoisers}} |
− | {{Filter| | + | {{Filter|kiraru2003, xeon533 |
− | * YV12 | + | |17.03.2003 |
− | |}} | + | | |
− | {{Template:FuncDef| | + | |Spatial Denoisers |
− | + | | | |
− | + | * Avisynth 2.5+ | |
− | + | * YV12, YUY2 | |
+ | |GPL v2}} | ||
+ | {{Template:FuncDef|_2DCleanYUY2(int "interlaced", int "thresholdY", int "radiusX", int "radiusY", int "dmode", int "thresholdU", int "thresholdV")}} | ||
== Abstract == | == 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 == | == Description == | ||
− | |||
{{Par|NRlimit|int|2}} | {{Par|NRlimit|int|2}} | ||
Absolute limit for pixel change by denoising | Absolute limit for pixel change by denoising | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{Par|sootheS|int|0}} | {{Par|sootheS|int|0}} | ||
Line 59: | Line 24: | ||
{{Par|ss_y|float|1.5}} | {{Par|ss_y|float|1.5}} | ||
SeeSaw doesn't require supersampling urgently, | SeeSaw doesn't require supersampling urgently, | ||
− | |||
== Examples == | == Examples == | ||
<pre> | <pre> | ||
avisource("Blah.avi") | avisource("Blah.avi") | ||
− | |||
</pre> | </pre> | ||
<pre> | <pre> | ||
− | |||
− | |||
− | |||
</pre> | </pre> | ||
== Links == | == Links == | ||
− | Download: | + | Download: |
− | Discussion: [ | + | Discussion: [ Doom9 thread.] |
Revision as of 03:07, 1 July 2013
Abstract | |
---|---|
Author | kiraru2003, xeon533 |
Version | 17.03.2003 |
Download | |
Category | Spatial Denoisers |
Requirements |
|
License | GPL v2 |
Discussion |
_2DCleanYUY2(int "interlaced", int "thresholdY", int "radiusX", int "radiusY", int "dmode", int "thresholdU", int "thresholdV")
Contents[hide] |
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
NRlimit int = 2
Absolute limit for pixel change by denoising
sootheS int = 0
0=minimum, 100=maximum smoothing of sharpener's spatial effect.
ss_x float = 1.5
ss_y float = 1.5
SeeSaw doesn't require supersampling urgently,
Examples
avisource("Blah.avi")
Links
Download: Discussion: [ Doom9 thread.]