AAA

From Avisynth wiki
Revision as of 22:47, 29 September 2014 by Reel.Deal (Talk | contribs)

Jump to: navigation, search
Abstract
Author Soulhunter
Version
Download AAA.avs
Category Anti-aliasing
Requirements
  • YV12
License
Discussion

Contents

Description

Anti-aliasing filter designed for anime.


Requirements

  • AviSynth 2.5.8 or later
  • Progressive input only
  • Supported color formats: YV12

Required Plugins


Syntax and Parameters

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

  • Xres/Yres = The final resolution... InputSize = OutputSize is the default
  • Xshrp/Yshrp = Unfilter strength... Settings of 15,15 are the defaults
  • Us = Resizer for upsampling... 0 = PointResize (default) / 1 = Lanczos
  • Ds = Resizer for downsampling... 0 = Bilinear (default) / 1 = Bicubic / 2 = Lanczos
  • Chroma = Enable/disable chroma antialiasing... Disable = false (default) / enable = true


Examples

AviSource("Blah.avi")
AAA()
# 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)


External Links




Back to External Filters

Personal tools