MfRainbow: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m Undo revision 2739 by Reel.Deal (talk)
Update
Line 2: Line 2:
{{Filter
{{Filter
| {{Author/mf}}
| {{Author/mf}}
| v0.31
| v0.32
| [http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-v0.31.avs mfRainbow]
| [http://avisynth.nl/images/MfRainbow-v0.32.avsi mfRainbow-v0.32.avsi]
| Rainbow & Dot Crawl Removal
| Rainbow & Dot Crawl Removal
|
|
Line 13: Line 13:
:Derainbows in areas of high Y, U and V frequencies, which fluctuate heavily.
:Derainbows in areas of high Y, U and V frequencies, which fluctuate heavily.
<br>
<br>
===== Requirements: =====
== Requirements ==
:- AviSynth 2.5.8 or later
:- AviSynth 2.5.8 or later
:- Supported color formats: [[YV12]]
:- Supported color formats: [[YV12]]
:- [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only


===== Required Filters: =====
==== Required Filters: ====
:*[[MaskTools]] v1.5.8
:*[[MaskTools2]] 2.0a48+
:* WarpSharp v2008
:* WarpSharp v2008
<br>
<br>
== Syntax and Parameters ==
== Syntax and Parameters ==
:{{Template:FuncDef|mfRainbow(clip input, int "strength", int "scd")}}
:{{Template:FuncDef|mfRainbow (''clip'' input, ''int'' "scd", ''bool'' "interlaced")}}
<br>
<br>
::{{Par|strength|int|255}}
::{{Par2|input|clip| }}
:::Range: 0 - 255
:::Input clip.
::::Processing strength.
<br>
<br>
::{{Par|scd|int|10}}
::{{Par2|scd|int|10}}
:::Scene change detection for [[Soften|TemporalSoften]]. Good values are between 5 and 30.
:::Scene change detection for [[Soften|TemporalSoften]]; good values are between 5 and 30.
<br>
::{{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]].
:::Interlaced content is processed by using [[SeparateFields]] in the beginning and [[Weave]] at the end.
<br>
<br>
== Examples ==
== Examples ==
mfRainbow with default settings:
  [[AviSource]]("Blah.avi")
  [[AviSource]]("Blah.avi")
  mfRainbow()
  mfRainbow(scd=10, interlaced=false)
<br>
<br>
== Changelog ==
== Changelog ==
  [http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-v0.31.avs v0.31:]
Version      Date            Changes<br>
      - Tweakable scenechange detection for tough sources.<br>
v0.32        2014/02/23      - Changed syntax to use MaskTools2.
  [http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-v0.3.avs v0.3:]
                              - Removed leftover parameters from earlier versions; they were disabled anyway.
       - Temporal fluctuation mask building!<br>
                              - Add "interlaced" parameter.<br>
  [http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-v0.2.avs v.02:]
[http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-v0.31.avs v0.31:]     2004/04/15      - Tweakable scenechange detection for tough sources.<br>
       - Added U and V mask-building, overhauled Deen settings, changed to YV12.<br>
[http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-v0.3.avs v0.3:]      2004/03/18      - Temporal fluctuation mask building!<br>
  [http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-0.1.avs v0.1:]
[http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-v0.2.avs v.02:]      2003/12/27      - Added U and V mask-building, overhauled Deen settings, changed to YV12.<br>
       - Initial release
[http://web.archive.org/web/20090212071718/http://mf.creations.nl/avs/functions/mfRainbow-0.1.avs v0.1:]      2003/05/31      - Initial release
<br>
<br>
== Links ==
== Links ==
*[http://forum.doom9.org/showthread.php?p=321319#post321319 Doom9 Forum] - mfRainbow v0.1 discussion.
*[http://forum.doom9.org/showthread.php?p=321319#post321319 Doom9 Forum] - mfRainbow v0.1 discussion.

Revision as of 22:07, 23 February 2014

Abstract
Author mf
Version v0.32
Download mfRainbow-v0.32.avsi
Category Rainbow & Dot Crawl Removal
Requirements
  • YV12
License
Discussion


Description

Derainbows in areas of high Y, U and V frequencies, which fluctuate heavily.


Requirements

- AviSynth 2.5.8 or later
- Supported color formats: YV12

Required Filters:


Syntax and Parameters

mfRainbow (clip input, int "scd", bool "interlaced")


clip  input =
Input clip.


int  scd = 10
Scene change detection for TemporalSoften; good values are between 5 and 30.


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.


Examples

mfRainbow with default settings:

AviSource("Blah.avi")
mfRainbow(scd=10, interlaced=false)


Changelog

Version       Date            Changes
v0.32 2014/02/23 - Changed syntax to use MaskTools2. - Removed leftover parameters from earlier versions; they were disabled anyway. - Add "interlaced" parameter.
v0.31: 2004/04/15 - Tweakable scenechange detection for tough sources.
v0.3: 2004/03/18 - Temporal fluctuation mask building!
v.02: 2003/12/27 - Added U and V mask-building, overhauled Deen settings, changed to YV12.
v0.1: 2003/05/31 - Initial release






Back to External Filters