Checkmate
From Avisynth wiki
(Difference between revisions)
(→Syntax and Parameters) |
|||
Line 11: | Line 11: | ||
<br> | <br> | ||
== Description == | == Description == | ||
− | :Spatial and temporal dot crawl removal. | + | :Spatial and temporal dot crawl removal. Checkmate is most effective in static or low motion scenes. When using in high motion scenes (or areas) be careful, it's known to cause artifacts with its the default values. |
===== Requirements: ===== | ===== Requirements: ===== | ||
:- AviSynth 2.5.8 or later | :- AviSynth 2.5.8 or later | ||
:- Supported color formats: [[YV12]] | :- Supported color formats: [[YV12]] | ||
<br> | <br> | ||
− | |||
− | |||
== Syntax and Parameters == | == Syntax and Parameters == | ||
:{{Template:FuncDef|checkmate(clip, int "thr", int "max", int "tthr2")}} | :{{Template:FuncDef|checkmate(clip, int "thr", int "max", int "tthr2")}} | ||
Line 34: | Line 32: | ||
::::Setting this to 0 disables the temporal blending entirely. This may be helpful to reduce temporal artifacts in high motion scenes. | ::::Setting this to 0 disables the temporal blending entirely. This may be helpful to reduce temporal artifacts in high motion scenes. | ||
<br> | <br> | ||
− | + | ::<span style="color:red">'''Note:'''</span> Official documentation was never released. The valid range for the parameters is unknown. It's probably best to set those values not too distant from their defaults. | |
+ | <br> | ||
== Examples == | == Examples == | ||
Checkmate with default values: | Checkmate with default values: | ||
Line 40: | Line 39: | ||
checkmate(thr=12, max=12, tthr2=5) | checkmate(thr=12, max=12, tthr2=5) | ||
<br> | <br> | ||
− | |||
== Links == | == Links == | ||
*[http://www.aquilinestudios.org/avsfilters/dotcrawl.html#checkmate Scintilla's Guide] - Unofficial documentation | *[http://www.aquilinestudios.org/avsfilters/dotcrawl.html#checkmate Scintilla's Guide] - Unofficial documentation |
Revision as of 14:05, 28 November 2013
Abstract | |
---|---|
Author | mf / prunedtree |
Version | 2006-03-04 |
Download | Checkmate |
Category | Rainbow & Dot Crawl Removal |
Requirements |
|
License | Closed source |
Discussion |
Contents |
Description
- Spatial and temporal dot crawl removal. Checkmate is most effective in static or low motion scenes. When using in high motion scenes (or areas) be careful, it's known to cause artifacts with its the default values.
Requirements:
- - AviSynth 2.5.8 or later
- - Supported color formats: YV12
Syntax and Parameters
- checkmate(clip, int "thr", int "max", int "tthr2")
- thr int = 12
- Spatial threshold:
- Controls the spatial filter, higher values will blend more but cause artifacts if set to high.
- If set to low, lines in static scenes where dot crawl was reduced will become slightly more blurry.
- Spatial threshold:
- thr int = 12
- max int = 12
- Controls the maximum amount by which a pixel's value may change. Higher values will increase the strength of the filtering but cause artifacts if set to high.
- max int = 12
- tthr2 int = 5
- Temporal threshold:
- Controls the temporal blending; higher values will blend more but cause artifacts if set to high.
- Setting this to 0 disables the temporal blending entirely. This may be helpful to reduce temporal artifacts in high motion scenes.
- Temporal threshold:
- tthr2 int = 5
- Note: Official documentation was never released. The valid range for the parameters is unknown. It's probably best to set those values not too distant from their defaults.
Examples
Checkmate with default values:
AviSource("Blah.avi") checkmate(thr=12, max=12, tthr2=5)
Links
- Scintilla's Guide - Unofficial documentation
- Doom9 Forum - Archived download.
- VideoHelp - Archived download.
Back to External Filters ←