AAA
From Avisynth wiki
(Difference between revisions)
m (another quick update) |
(Added reference to version 0.2 which supports YUY2, YV16 and YV24 (FranceBB)) |
||
Line 3: | Line 3: | ||
|Soulhunter | |Soulhunter | ||
| | | | ||
− | |[[Media:AAA.avs|AAA. | + | |[[Media:AAA.avs|AAA v0.1]] - [https://github.com/FranceBB/AAA_2/blob/master/AAA.avsi AAA v0.2] |
|Anti-aliasing | |Anti-aliasing | ||
| | | | ||
− | * YV12 | + | * YV12, YUY2, YV16, YV24 |
|}} | |}} | ||
== Description == | == Description == | ||
Line 16: | Line 16: | ||
* AviSynth 2.5.8 or later | * 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 | * [[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]] | + | * Supported color formats in version 0.1: [[YV12]] |
+ | * Supported color formats in version 0.2: [[YV12]], [[YUY2]], [[YV16]], [[YV24]] | ||
=== Required Plugins === | === Required Plugins === | ||
− | *[[ | + | *[[SangNom2]] |
*[[UnFilter]] | *[[UnFilter]] | ||
Latest revision as of 01:52, 28 May 2020
Abstract | |
---|---|
Author | Soulhunter |
Version | |
Download | AAA v0.1 - AAA v0.2 |
Category | Anti-aliasing |
Requirements |
|
License | |
Discussion |
Contents |
[edit] Description
Anti-aliasing filter designed for anime.
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 in version 0.1: YV12
- Supported color formats in version 0.2: YV12, YUY2, YV16, YV24
[edit] Required Plugins
[edit] Syntax and Parameters
- AAA (clip clp, int "Xres", int "Yres", int "Xshrp", int "Yshrp", int "US", int "DS", bool "chroma")
- clip clp =
- Input clip.
- clip clp =
- int Xres =
- int Yres =
- Xres/Yres = The final resolution... InputSize = OutputSize is the default
- int Xres =
- int Xshrp = 15
- int Yshrp = 15
- Xshrp/Yshrp = UnFilter strength... Settings of 15,15 are the defaults
- int Xshrp = 15
- int US = 0
- US = Resizer for upsampling... 0 = PointResize (default) / 1 = Lanczos
- int US = 0
- int DS = 0
- DS = Resizer for downsampling... 0 = Bilinear (default) / 1 = Bicubic / 2 = Lanczos
- int DS = 0
- bool chroma = false
- Chroma = Enable/disable chroma antialiasing... Disable = false (default) / enable = true
- bool chroma = false
[edit] Examples
AAA with default settings:
AviSource("Blah.avi") AAA(Xshrp=15, Yshrp=15, US=0, DS=0, chroma=false)
#Or if you don't want to adjust the settings you could just run: LanczosResize(width*2,height*2).TurnLeft().SangNom().TurnRight().SangNom().LanczosResize(width,height).Unfilter(15,15)
[edit] External Links
- Doom9 Forum - Original discussion.
- Doom9 Forum - AAAmod script.
Back to External Filters ←