ChubbyRain2
From Avisynth wiki
(Difference between revisions)
m (→Examples) |
m (→Required Filters:) |
||
Line 20: | Line 20: | ||
:*[[MaskTools2]] 2.0a48+ | :*[[MaskTools2]] 2.0a48+ | ||
:* [[Bifrost]] | :* [[Bifrost]] | ||
− | :*[[ | + | :*[[Cnr2]] |
<br> | <br> | ||
+ | |||
== Syntax and Parameters == | == 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")}} |
Revision as of 14:34, 1 March 2014
Abstract | |
---|---|
Author | Lothar |
Version | 2014-02-23 |
Download | ChubbyRain2.avsi |
Category | Rainbow & Dot Crawl Removal |
Requirements |
|
License | |
Discussion |
Contents |
Description
- Spatial-temporal rainbow reducing script based on ChubbyRain.
Requirements
- - AviSynth 2.5.8 or later
- - Supported color formats: YV12
Required Filters:
- MaskTools2 2.0a48+
- Bifrost
- Cnr2
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.
- bool interlaced = false
Examples
ChubbyRain2 with default settings:
AviSource("Blah.avi") ChubbyRain2(th=10, radius=10, show=false, sft=10, interlaced=false)
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
Links
- Doom9 Forum - ChubbyRain2 discussion.
Back to External Filters ←