ChubbyRain: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
ChubbyRain
 
m small corrections
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{FilterCat|External_filters|Restoration_filters|Rainbow & Dot Crawl Removal}}
{{FilterCat4|External_filters|Scripts|Restoration_filters|Rainbow & Dot Crawl Removal}}
{{Filter
{{Filter3
| Mug Funky
| Mug Funky
| 2014-02-23
| 2014-02-23
| [http://avisynth.nl/images/ChubbyRain.avsi ChubbyRain.avsi]
| [http://avisynth.nl/images/ChubbyRain.avsi ChubbyRain.avsi]
| Rainbow & Dot Crawl Removal
| Rainbow & Dot Crawl Removal
|
* YV12
|
|
|}}
|}}
== Description ==
Spatial-temporal rainbow reducing script.
<br>
<br>
== Description ==
:Spatial-temporal rainbow reducing script.
<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]]


==== Required Filters: ====
=== Required Plugins ===
:*[[MaskTools2]] 2.0a48+
*[[MaskTools2]]
<br>
<br>
== Syntax and Parameters ==
== [[Script variables|Syntax and Parameters]] ==
:{{Template:FuncDef|ChubbyRain (''clip'' c, ''int'' "th", ''int'' "radius", ''bool'' "show", ''bool'' "interlaced")}}
:{{Template:FuncDef|ChubbyRain (''clip'' c, ''int'' "th", ''int'' "radius", ''bool'' "show", ''bool'' "interlaced")}}
<br>
<br>
Line 36: Line 35:
<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.
:::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 ==
Line 51: Line 50:
<br>
<br>


==Links==
==External Links==
*[http://forum.doom9.org/showthread.php?p=589012#post589012 Doom9 Forum] - ChubbyRain discussion.
*[http://forum.doom9.org/showthread.php?p=589012#post589012 Doom9 Forum] - ChubbyRain discussion.
<br>
<br>
<br>
<br>
<br>

Latest revision as of 15:24, 6 March 2016

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

Description

Spatial-temporal rainbow reducing script.

Requirements

  • AviSynth 2.5.8 or greater
  • Supported color formats: YV12

Required Plugins


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.


Examples

ChubbyRain with default settings:

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


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





Back to External Filters