ChubbyRain2
From Avisynth wiki
(Difference between revisions)
(ChubbyRain2) |
m (small corrections) |
||
(3 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat4|External_filters|Scripts|Restoration_filters|Rainbow & Dot Crawl Removal}} |
− | {{ | + | {{Filter3 |
| Lothar | | Lothar | ||
| 2014-02-23 | | 2014-02-23 | ||
| [http://avisynth.nl/images/ChubbyRain2.avsi ChubbyRain2.avsi] | | [http://avisynth.nl/images/ChubbyRain2.avsi ChubbyRain2.avsi] | ||
| Rainbow & Dot Crawl Removal | | Rainbow & Dot Crawl Removal | ||
− | |||
− | |||
| | | | ||
|}} | |}} | ||
− | + | ||
== Description == | == Description == | ||
− | + | Spatial-temporal rainbow reducing script based on [[ChubbyRain]]. | |
+ | <br> | ||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | + | * AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater] | |
− | : | + | * Supported color formats: [[YV12]] |
− | + | === Required Plugins === | |
− | + | Latest versions of the following filters are recommended unless stated otherwise.<br> | |
− | + | * [[Bifrost]] | |
− | + | *[[Cnr2]] | |
+ | *[[MaskTools2]] | ||
<br> | <br> | ||
− | == Syntax and Parameters == | + | |
+ | == [[Script variables|Syntax and Parameters]] == | ||
:{{Template:FuncDef|ChubbyRain2 (''clip'' c, ''int'' "th", ''int'' "radius", ''bool'' "show", ''int'' "sft", ''bool'' "interlaced")}} | :{{Template:FuncDef|ChubbyRain2 (''clip'' c, ''int'' "th", ''int'' "radius", ''bool'' "show", ''int'' "sft", ''bool'' "interlaced")}} | ||
<br> | <br> | ||
Line 41: | Line 42: | ||
<br> | <br> | ||
::{{Par2|interlaced|bool|false}} | ::{{Par2|interlaced|bool|false}} | ||
− | :::False means the input clip is [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|progressive]]; with true it's [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|interlaced]]. | + | :::False means the input clip is [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|progressive]]; with true it's [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|interlaced]]. Interlaced content is processed by using [[SeparateFields]] in the beginning and [[Weave]] at the end. |
− | + | :::<span style="color:red">'''Note:'''</span> this parameter was added as an after-thought, it's not technically correct so use with caution and only as a last resort. | |
<br> | <br> | ||
== Examples == | == Examples == | ||
− | + | ChubbyRain2 with default settings: | |
[[AviSource]]("Blah.avi") | [[AviSource]]("Blah.avi") | ||
ChubbyRain2(th=10, radius=10, show=false, sft=10, interlaced=false) | ChubbyRain2(th=10, radius=10, show=false, sft=10, interlaced=false) | ||
<br> | <br> | ||
+ | |||
== Changelog == | == Changelog == | ||
Version Date Changes<br> | Version Date Changes<br> | ||
Line 56: | Line 58: | ||
<br> | <br> | ||
− | ==Links== | + | ==External Links== |
*[http://forum.doom9.org/showthread.php?p=589885#post589885 Doom9 Forum] - ChubbyRain2 discussion. | *[http://forum.doom9.org/showthread.php?p=589885#post589885 Doom9 Forum] - ChubbyRain2 discussion. | ||
− | |||
<br> | <br> | ||
<br> | <br> |
Latest revision as of 15:23, 6 March 2016
Abstract | |
---|---|
Author | Lothar |
Version | 2014-02-23 |
Download | ChubbyRain2.avsi |
Category | Rainbow & Dot Crawl Removal |
License | |
Discussion |
Contents |
[edit] Description
Spatial-temporal rainbow reducing script based on ChubbyRain.
[edit] Requirements
[edit] Required Plugins
Latest versions of the following filters are recommended unless stated otherwise.
[edit] Syntax and Parameters
- ChubbyRain2 (clip c, int "th", int "radius", bool "show", int "sft", bool "interlaced")
- clip c =
- Input clip.
- clip c =
- int th = 10
- Masking threshold; lower values consider more pixels as rainbows.
- int th = 10
- int radius = 10
- radius for TemporalSoften.
- int radius = 10
- bool show = false
- If true; rainbow mask will be shown, this can be helpful for adjusting th.
- bool show = false
- int sft = 10
- chroma_threshold for TemporalSoften
- int sft = 10
- bool interlaced = false
- False means the input clip is progressive; with true it's interlaced. Interlaced content is processed by using SeparateFields in the beginning and Weave at the end.
- Note: this parameter was added as an after-thought, it's not technically correct so use with caution and only as a last resort.
- bool interlaced = false
[edit] Examples
ChubbyRain2 with default settings:
AviSource("Blah.avi") ChubbyRain2(th=10, radius=10, show=false, sft=10, interlaced=false)
[edit] Changelog
Version Date Changes
2014/02/23 2014/02/23 - Changed syntax to use MaskTools2. - Add "interlaced" parameter.
2005/01/06 2005/01/06 - Initial release
[edit] External Links
- Doom9 Forum - ChubbyRain2 discussion.
Back to External Filters ←