AAA

From Avisynth wiki
Jump to navigationJump to search
Abstract
Author Soulhunter
Version
Download AAA v0.1 - AAA v0.2
Category Anti-aliasing
Requirements
  • YV12, YUY2, YV16, YV24
License
Discussion

Description

Anti-aliasing filter designed for anime.
Note: This script is very old and usually not recommended nowadays.


Requirements

Required Plugins


AAA (clip clp, int "Xres", int "Yres", int "Xshrp", int "Yshrp", int "US", int "DS", bool "chroma")


clip  clp =
Input clip.


int  Xres =
int  Yres =
Xres/Yres = The final resolution... InputSize = OutputSize is the default


int  Xshrp = 15
int  Yshrp = 15
Xshrp/Yshrp = UnFilter strength... Settings of 15,15 are the defaults


int  US = 0
US = Resizer for upsampling... 0 = PointResize (default) / 1 = Lanczos


int  DS = 0
DS = Resizer for downsampling... 0 = Bilinear (default) / 1 = Bicubic / 2 = Lanczos


bool  chroma = false
Chroma = Enable/disable chroma antialiasing... Disable = false (default) / enable = true


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)





Back to External Filters