SmartSSIQ
From Avisynth wiki
(Difference between revisions)
(reformat) |
m (small corrections) |
||
(One intermediate revision by one user not shown) | |||
Line 8: | Line 8: | ||
| | | | ||
|}} | |}} | ||
− | + | ||
== Description == | == Description == | ||
This is a derainbowing script which works with [[SSIQ]]. The basic problem with SSIQ is that it can alter the color on the entire picture, which is a very bad thing. All we want to do is remove rainbows, while leaving everything else alone. To accomplish this, SSIQ is applied (at full strength) to the entire frame. An edge mask is created from the original video. And finally, using [[Overlay]] it will blend ONLY the de-rainbowed edges onto the original video. | This is a derainbowing script which works with [[SSIQ]]. The basic problem with SSIQ is that it can alter the color on the entire picture, which is a very bad thing. All we want to do is remove rainbows, while leaving everything else alone. To accomplish this, SSIQ is applied (at full strength) to the entire frame. An edge mask is created from the original video. And finally, using [[Overlay]] it will blend ONLY the de-rainbowed edges onto the original video. | ||
Line 17: | Line 17: | ||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | * AviSynth 2.5.8 or | + | * AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater] |
* Supported color formats: [[YV12]] | * Supported color formats: [[YV12]] | ||
Line 29: | Line 29: | ||
<br> | <br> | ||
::{{Par2|input|clip| }} | ::{{Par2|input|clip| }} | ||
− | + | :::Input clip. | |
<br> | <br> | ||
::{{Par2|strength|int|200}} | ::{{Par2|strength|int|200}} | ||
Line 41: | Line 41: | ||
:::<span style="color:red">'''Note:'''</span> this parameter was added as an after-thought, so use it with caution and only as a last resort. | :::<span style="color:red">'''Note:'''</span> this parameter was added as an after-thought, so use it with caution and only as a last resort. | ||
<br> | <br> | ||
+ | |||
== Examples == | == Examples == | ||
SmartSSIQ with default settings: | SmartSSIQ with default settings: |
Latest revision as of 14:11, 6 March 2016
Abstract | |
---|---|
Author | LB, foxyshadis |
Version | 2014-02-23 |
Download | SmartSSIQ.avsi |
Category | Rainbow & Dot Crawl Removal |
License | |
Discussion |
Contents |
[edit] Description
This is a derainbowing script which works with SSIQ. The basic problem with SSIQ is that it can alter the color on the entire picture, which is a very bad thing. All we want to do is remove rainbows, while leaving everything else alone. To accomplish this, SSIQ is applied (at full strength) to the entire frame. An edge mask is created from the original video. And finally, using Overlay it will blend ONLY the de-rainbowed edges onto the original video.
Note: SmartSSIQ with default settings can cause slight discoloration on derainbowed areas.
[edit] Requirements
[edit] Required Plugins
Latest versions of the following filters are recommended unless stated otherwise.
[edit] Syntax and Parameters
- SmartSSIQ (clip input, int "strength", bool "interlaced")
- clip input =
- Input clip.
- clip input =
- int strength = 200
- Processing strength; this value ultimately controls the opacity* in overlay.
- Range: 0 to 255
- int strength = 200
- *opacity = strength/255.0
- bool interlaced = false
- False means the input clip is progressive; with true it's interlaced.
- Note: this parameter was added as an after-thought, so use it with caution and only as a last resort.
- bool interlaced = false
[edit] Examples
SmartSSIQ with default settings:
AviSource("Blah.avi") SmartSSIQ(strength=200, interlaced=false)
[edit] Changelog
Version Date Author Changes
2014/02/23 2014/02/23 Reel.Deal - Luma is not processed; prevents minor artifacts. - Add "interlaced" parameter.
2005/12/08 2005/12/08 foxyshadis - Changed syntax to use MaskTools2. - Now uses the AviSynth version of SSIQ. - Tweak edge mask and remove UnsharpMask
2005/08/05 2005/08/05 LB - Original SmartSSIQ that uses the VirtualDub version of SSIQ.
[edit] External Links
- Doom9 Forum - Original SmartSSIQ discussion.
- Doom9 Forum - Updated SmartSSIQ discussion.
Back to External Filters ←