Checkmate
From Avisynth wiki
(Difference between revisions)
m (→Description) |
m (add x64 category) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat5|External_filters|Plugins|Plugins_x64|Restoration_filters|Rainbow & Dot Crawl Removal}} |
{{Filter3 | {{Filter3 | ||
− | | {{Author/mf}} | + | | {{Author/mf}}, prunedtree, [https://github.com/tp7 tp7] |
− | + | | 0.9 | |
− | + | | [https://github.com/tp7/checkmate/releases checkmate.zip] | |
| Rainbow & Dot Crawl Removal | | Rainbow & Dot Crawl Removal | ||
− | | | + | | Open Source |
|}} | |}} | ||
− | + | ||
== Description == | == Description == | ||
Spatial and temporal dot crawl reducer. 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 default values. | Spatial and temporal dot crawl reducer. 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 default values. | ||
− | *[ | + | *[https://github.com/tp7/checkmate Checkmate for AviSynth 2.6] - open source, better performance, less bugs, and supports all [[planar]] colorspaces. [https://github.com/tp7/checkmate/releases Download] | [http://forum.doom9.org/showthread.php?t=169832 Discussion]<br>In this version {{Template:FuncDef|tthr2}} is (by default) set to 0, also this version has a bit lower precision than the original. The difference is hardly noticeable when you're looking for it. |
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | * AviSynth 2.5.8 or | + | * AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater] |
* Supported color formats: [[YV12]] | * Supported color formats: [[YV12]] | ||
<br> | <br> | ||
Line 49: | Line 49: | ||
luma = input.checkmate(tthr2=0) | luma = input.checkmate(tthr2=0) | ||
final = luma.[[Merge|MergeChroma]](chroma) | final = luma.[[Merge|MergeChroma]](chroma) | ||
− | - Suggested by [ | + | - Suggested by [https://forum.doom9.org/showthread.php?p=1113007#post1113007 scharfis_brain] and it's also known as [https://forum.doom9.org/showpost.php?p=1470237&postcount=14 DeCrow()] |
<br> | <br> | ||
<br> | <br> | ||
Line 55: | Line 55: | ||
== External Links == | == External 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 | ||
− | *[ | + | *[https://forum.doom9.org/showpost.php?p=1571520&postcount=20 Doom9 Forum] - Archived download. |
− | *[ | + | *[https://forum.videohelp.com/threads/358820-Improving-Dilbert?p=2266862&viewfull=1#post2266862 VideoHelp] - Archived download. |
<br> | <br> | ||
<br> | <br> |
Latest revision as of 23:05, 16 March 2020
Abstract | |
---|---|
Author | mf, prunedtree, tp7 |
Version | 0.9 |
Download | checkmate.zip |
Category | Rainbow & Dot Crawl Removal |
License | Open Source |
Discussion |
Contents |
[edit] Description
Spatial and temporal dot crawl reducer. 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 default values.
- Checkmate for AviSynth 2.6 - open source, better performance, less bugs, and supports all planar colorspaces. Download | Discussion
In this version tthr2 is (by default) set to 0, also this version has a bit lower precision than the original. The difference is hardly noticeable when you're looking for it.
[edit] Requirements
[edit] Syntax and Parameters
- checkmate (clip, int "thr", int "max", int "tthr2")
- clip =
- Input clip.
- clip =
- int thr = 12
- Spatial threshold that control the spatial filtering.
- Higher values will blend more but cause artifacts if set too high. If set too low, lines in static scenes where dot crawl was reduced will become slightly more blurry.
- int thr = 12
- int max = 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 too high.
- int max = 12
- int tthr2 = 5
- Temporal threshold that controls the temporal blending; higher values will blend more but cause artifacts if set too high.
- Setting this to 0 disables the temporal blending entirely. This may be helpful to reduce temporal artifacts in high motion scenes.
- int tthr2 = 5
- Note: Official documentation was never released. A valid range is unknown for all parameters. It's probably best to set those values not too distant from their defaults.
[edit] Examples
Checkmate with default values:
MPEG2Source("DotCrawl.d2v") checkmate(thr=12, max=12, tthr2=5)
Processing luma with tthr2=0 and chroma with default values. Helps avoid unwanted artifacts in the luma channel (Y).
input = MPEG2Source("DotCrawl.d2v") chroma = input.checkmate() luma = input.checkmate(tthr2=0) final = luma.MergeChroma(chroma)
- Suggested by scharfis_brain and it's also known as DeCrow()
[edit] External Links
- Scintilla's Guide - Unofficial documentation
- Doom9 Forum - Archived download.
- VideoHelp - Archived download.
Back to External Filters ←