Caf

From Avisynth wiki
Revision as of 06:37, 6 December 2015 by Reel.Deal (talk | contribs) (caf (Chromatic Aberration Fixer.))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Abstract
Author Torchlight
Version
Download caf.avsi
Category Chroma Correction
License
Discussion

Description

Chromatic Aberration Fixer.

Requirements

  • AviSynth 2.5.8 or greater
  • Supported color formats: YV12

Required Plugins

Latest versions of the following filters are recommended unless stated otherwise.


caf (clip src, float "rx", float "ry", float "bx", float "by", int "warp", bool "clamp")


clip   =
Input clip.


float  rx = -1.5
float  ry = rx
float  bx = -rx
float  by = bx
rx/ry adjust how much to resize the red plane; bx/by is the same, but for blue.


int  warp = 4
warp adjusts warpsharp strength on red/blue planes. 0 disables warping


bool  clamp = true
clamp sets whether the chroma (after converting back to YV12) should be limited by the original chroma; this prevents introducing chromatic aberration on, for example, hardsubbed text without chromatic aberration.


Examples

caf with default settings:

AviSource("Blah.avi")
caf()


Changelog

Version      Date(D/M/Y)      Changes
15/04/2014 - Inital release





Back to External Filters