DeRainbow
From Avisynth wiki
(Difference between revisions)
m (Update) |
m (→Links) |
||
Line 55: | Line 55: | ||
== Links == | == Links == | ||
+ | *[http://forum.doom9.org/showthread.php?p=383336#post383336 Doom9 Forum] - Original "Rainbow Killer" discussion. | ||
*[http://forum.doom9.org/showthread.php?p=398106#post398106 Doom9 Forum] - DeRainbow discussion. | *[http://forum.doom9.org/showthread.php?p=398106#post398106 Doom9 Forum] - DeRainbow discussion. | ||
<br> | <br> |
Revision as of 06:57, 24 February 2014
Abstract | |
---|---|
Author | sh0dan |
Version | 2014/02/23 |
Download | DeRainbow.avsi |
Category | Rainbow & Dot Crawl Removal |
Requirements |
|
License | |
Discussion |
Contents |
Description
- A simple script to reduce rainbows.
Requirements:
- - AviSynth 2.5.8 or later
- - Supported color formats: YUY2, YV12
- - Progressive input only
Required Filters:
- MaskTools2 2.0a48+
- MipSmooth
- MSharpen
Syntax and Parameters
- DeRainbow (clip org, int "thresh", bool "interlaced")
- DeRainbowYUY2 (clip org, int "thresh", bool "interlaced")
- clip org =
- Input clip.
- clip org =
- int thresh = 10
- MSharpen threshold value; default is 10 (which is fairly strong).
- int thresh = 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
DeRainbow with default settings:
AviSource("Blah.avi") DeRainbow(thresh=10, interlaced=false)
Changelog
Version Date Changes
2014/02/23 2014/02/23 - Changed syntax to use MaskTools2. - Add "interlaced" parameter.
2003/11/12 2003/11/12 - Fixed DeRainbow and added a YUY2 version (much slower though), but with no chroma downsampling. - I tweaked it a bit for best results on my current material. - I also changed the blurs to MipSmooth.
2003/10/08 2003/10/08 - Initial release. - Originally named "Rainbow Killer"
Links
- Doom9 Forum - Original "Rainbow Killer" discussion.
- Doom9 Forum - DeRainbow discussion.
Back to External Filters ←