SSIQ
(Created page with "{{FilterCat|External_filters|Restoration_filters|Rainbow & Dot Crawl Removal}} {{Filter | {{Author/Myrsloik}} | v1.1 | [http://avisynth.nl/users/warpenterprises/files/ssiq_20...") |
m (small corrections) |
||
(6 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat4|External_filters|Plugins|Restoration_filters|Rainbow & Dot Crawl Removal}} |
− | {{ | + | {{Filter3 |
| {{Author/Myrsloik}} | | {{Author/Myrsloik}} | ||
| v1.1 | | v1.1 | ||
− | | [http://avisynth.nl/users/warpenterprises/files/ssiq_20070304.zip | + | | [http://avisynth.nl/users/warpenterprises/files/ssiq_20070304.zip ssiq_20070304.zip] |
| Rainbow & Dot Crawl Removal | | Rainbow & Dot Crawl Removal | ||
− | | | + | | [http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
|}} | |}} | ||
− | + | ||
− | == | + | == Description == |
− | + | SSIQ is an AviSynth conversion of the VirtualDub filter [http://www.doki.ca/filters/ Smart Smoother IQ v0.6]. In addition to RGB32 support where it produces identical output to the VirtualDub version, it also accepts YUY2 and YV12 without doing any internal colorspace conversions. For YUY2 and YV12 the chroma is first resized up to full resolution and then back in the end. The advantage of doing that is that you get a small speed increase and almost completely identical output. SSIQ is purely spatial. | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
<br> | <br> | ||
==== Orginal Description: ==== | ==== Orginal Description: ==== | ||
− | + | This filter performs structure-preserving smoothing (blurring) on the I/Q (chrominance or colour) information of the image, leaving Y (luminance) intact. It was created in an attempt to reduce the appearance of "rainbows" (cross-colour artifacts) near lines in some cel animation. It is based on Donald Graft's [http://rationalqm.us/smooth.html Smart Smoother filter], which operates in RGB space. | |
− | + | ||
− | + | ||
<br> | <br> | ||
− | |||
− | |||
− | |||
− | |||
<br> | <br> | ||
− | == | + | == Requirements == |
− | : | + | * AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater] |
+ | * Supported color formats: [[RGB32]], [[YUY2]], [[YV12]] | ||
<br> | <br> | ||
− | |||
− | |||
− | |||
− | ::{{ | + | == [[Script variables|Syntax and Parameters]] == |
+ | :{{Template:FuncDef|SSIQ (clip, int "diameter", int "strength", bool "interlaced")}} | ||
+ | <br> | ||
+ | ::{{Par2| |clip| }} | ||
+ | :::Input clip. | ||
+ | <br> | ||
+ | ::{{Par2|diameter|int|11}} | ||
+ | :::Determines the size of the area over which blurring is possible. The bigger it is the slower the filter runs. | ||
+ | :::Valid diameters are: 3,5,7,9,11 | ||
+ | <br> | ||
+ | ::{{Par2|strength|int|200}} | ||
:::Determines how much blurring is done. Use the lowest amount that removes the unwanted noise/artifacts. | :::Determines how much blurring is done. Use the lowest amount that removes the unwanted noise/artifacts. | ||
− | + | :::Range: 1 - 300 | |
− | + | <br> | |
− | ::{{ | + | ::{{Par2|interlaced:|bool|false}} |
:::Set this if your source video is interlaced. | :::Set this if your source video is interlaced. | ||
<br> | <br> | ||
== Examples == | == Examples == | ||
+ | SSIQ with default settings: | ||
[[AviSource]]("Blah.avi") | [[AviSource]]("Blah.avi") | ||
− | SSIQ() | + | SSIQ(diameter=11, strength=200, interlaced=false) |
<br> | <br> | ||
== Changelog == | == Changelog == | ||
Line 52: | Line 47: | ||
<br> | <br> | ||
== Credits == | == Credits == | ||
− | Originally created by Tim Parks and optimized by Mark DeNies. Less than optimal AviSynth conversion by Fredrik Mellbin. | + | Originally created by Tim Parks and optimized by Mark DeNies. Less than optimal AviSynth conversion by Fredrik Mellbin.<br> |
+ | <br> | ||
+ | <br> | ||
+ | ----------------------------------------------- | ||
+ | '''Back to [[External_filters#Rainbow_.26_Dot_Crawl_Removal|External Filters]] ←''' | ||
+ | ----------------------------------------------- |
Latest revision as of 15:10, 6 March 2016
Abstract | |
---|---|
Author | Myrsloik |
Version | v1.1 |
Download | ssiq_20070304.zip |
Category | Rainbow & Dot Crawl Removal |
License | GPLv2 |
Discussion |
Contents |
[edit] Description
SSIQ is an AviSynth conversion of the VirtualDub filter Smart Smoother IQ v0.6. In addition to RGB32 support where it produces identical output to the VirtualDub version, it also accepts YUY2 and YV12 without doing any internal colorspace conversions. For YUY2 and YV12 the chroma is first resized up to full resolution and then back in the end. The advantage of doing that is that you get a small speed increase and almost completely identical output. SSIQ is purely spatial.
[edit] Orginal Description:
This filter performs structure-preserving smoothing (blurring) on the I/Q (chrominance or colour) information of the image, leaving Y (luminance) intact. It was created in an attempt to reduce the appearance of "rainbows" (cross-colour artifacts) near lines in some cel animation. It is based on Donald Graft's Smart Smoother filter, which operates in RGB space.
[edit] Requirements
[edit] Syntax and Parameters
- SSIQ (clip, int "diameter", int "strength", bool "interlaced")
- clip =
- Input clip.
- clip =
- int diameter = 11
- Determines the size of the area over which blurring is possible. The bigger it is the slower the filter runs.
- Valid diameters are: 3,5,7,9,11
- int diameter = 11
- int strength = 200
- Determines how much blurring is done. Use the lowest amount that removes the unwanted noise/artifacts.
- Range: 1 - 300
- int strength = 200
- bool interlaced: = false
- Set this if your source video is interlaced.
- bool interlaced: = false
[edit] Examples
SSIQ with default settings:
AviSource("Blah.avi") SSIQ(diameter=11, strength=200, interlaced=false)
[edit] Changelog
Version 1.1: - Fixed an off by one error and in the process probably also made the YV12 and YUY2 modes slightly faster.
[edit] Credits
Originally created by Tim Parks and optimized by Mark DeNies. Less than optimal AviSynth conversion by Fredrik Mellbin.
Back to External Filters ←