SAA
From Avisynth wiki
(Difference between revisions)
m (1 revision) |
(quick update) |
||
| Line 1: | Line 1: | ||
| − | {{Filter|Soulhunter|1.0|[[Media:SAA.avs|SAA.avs]]|Anti-aliasing| | + | {{FilterCat4|External_filters|Scripts|Restoration_filters|Anti-aliasing}} |
| + | {{Filter | ||
| + | |Soulhunter | ||
| + | |1.0 | ||
| + | |[[Media:SAA.avs|SAA.avs]] | ||
| + | |Anti-aliasing | ||
| + | | | ||
* YV12 | * YV12 | ||
|}} | |}} | ||
| − | + | == Description == | |
| + | SAA is a simple anti-aliasing script created by Soulhunter.<br/> | ||
| + | '''Note:''' This script is very old and usually not recommended nowadays. | ||
| − | == | + | == Requirements == |
| − | + | * AviSynth 2.5.8 or later | |
| + | * [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only | ||
| + | * Supported color formats: [[YV12]] | ||
| − | === | + | === Required Plugins === |
*[[SangNom]] | *[[SangNom]] | ||
| − | |||
| − | {{ | + | == [[Script variables|Syntax and Parameters]] == |
| − | Supersampling multiplier (Default: 2x) | + | :{{Template:FuncDef|SAA (clip Clp, int "SS", bool "CP") }} |
| + | <br> | ||
| + | ::{{Par2|Clp|clip| }} | ||
| + | :::Input clip. | ||
| + | <br> | ||
| + | ::{{Par2|SS|int|2}} | ||
| + | :::Supersampling multiplier (Default: 2x). | ||
| + | <br> | ||
| + | ::{{Par2|CP|bool|true}} | ||
| + | :::Use Chroma Processing. | ||
| − | |||
| − | |||
== Examples == | == Examples == | ||
| − | + | SAA with default settings: | |
| − | SAA() | + | [[AviSource]]("blah.avi") |
| + | SAA(SS=2, CP=true) | ||
| − | |||
| − | |||
| − | [ | + | ==External Links == |
| + | *[http://forum.doom9.org/showthread.php?p=553784#post553784 Doom9 Forum] - SAA script | ||
| + | <br> | ||
| + | <br> | ||
| + | ----------------------------------------------- | ||
| + | '''Back to [[External_filters#Anti-aliasing|External Filters]] ←''' | ||
Latest revision as of 23:52, 29 September 2014
| Abstract | |
|---|---|
| Author | Soulhunter |
| Version | 1.0 |
| Download | SAA.avs |
| Category | Anti-aliasing |
| Requirements |
|
| License | |
| Discussion | |
Contents |
[edit] Description
SAA is a simple anti-aliasing script created by Soulhunter.
Note: This script is very old and usually not recommended nowadays.
[edit] Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12
[edit] Required Plugins
[edit] Syntax and Parameters
- SAA (clip Clp, int "SS", bool "CP")
- clip Clp =
- Input clip.
- clip Clp =
- int SS = 2
- Supersampling multiplier (Default: 2x).
- int SS = 2
- bool CP = true
- Use Chroma Processing.
- bool CP = true
[edit] Examples
SAA with default settings:
AviSource("blah.avi") SAA(SS=2, CP=true)
[edit] External Links
- Doom9 Forum - SAA script
Back to External Filters ←