ChubbyRain

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(reformat)
m (small corrections)
 
Line 7: Line 7:
 
|
 
|
 
|}}
 
|}}
<br>
+
 
 
== Description ==
 
== Description ==
 
Spatial-temporal rainbow reducing script.
 
Spatial-temporal rainbow reducing script.
Line 13: Line 13:
 
<br>
 
<br>
 
== Requirements ==
 
== Requirements ==
* AviSynth 2.5.8 or later
+
* AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater]
 
* Supported color formats: [[YV12]]
 
* Supported color formats: [[YV12]]
  

Latest revision as of 14:24, 6 March 2016

Abstract
Author Mug Funky
Version 2014-02-23
Download ChubbyRain.avsi
Category Rainbow & Dot Crawl Removal
License
Discussion

Contents

[edit] Description

Spatial-temporal rainbow reducing script.

[edit] Requirements

  • AviSynth 2.5.8 or greater
  • Supported color formats: YV12

[edit] Required Plugins


[edit] Syntax and Parameters

ChubbyRain (clip c, int "th", int "radius", bool "show", bool "interlaced")


clip  c =
Input clip.


int  th = 10
Masking threshold; lower values consider more pixels as rainbows.


int  radius = 10
radius for TemporalSoften.


bool  show = false
If true; rainbow mask will be shown, this can be helpful for adjusting th.


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.


[edit] Examples

ChubbyRain with default settings:

AviSource("Blah.avi")
ChubbyRain(th=10, radius=10, show=false, interlaced=false)


[edit] Changelog

Version           Date            Changes
2014/02/23 2014/02/23 - Changed syntax to use MaskTools2. - Add "interlaced" parameter.
2005/01/04 2005/01/04 - Initial release


[edit] External Links




Back to External Filters


Personal tools