Vinverse/2.5

From Avisynth wiki
Revision as of 19:41, 20 September 2014 by Reel.Deal (talk | contribs) (minor formatting)
Jump to navigationJump to search
Abstract
Author tritical
Version v1.0
Download vinverse.zip
Category Luma Equalization
License GPLv2
Discussion Doom9 Thread


Description

Vinverse is based off the Vinverse script function by Didée, which is a small but effective function against residual combing.
For an updated and faster version see Vinverse for AviSynth 2.6.

Requirements


vinverse (clip, float "sstr" int "amnt", int "uv", float "scl", int "opt")


clip   =
Input clip


float  sstr = 2.7
Strength of contra sharpening.


int  amnt = 255
Change no pixel by more than this.
Valid range: 0 to 255


int  uv = 3
Chroma mode, as in MaskTools2:
  • 1 = trash chroma
  • 2 = pass chroma through (copy from input clip)
  • 3 = process chroma


float  scl = 0.25
Scale factor for VshrpD*VblurD < 0


int  opt = 2
Allowed values:
  • 0 = use C
  • 1 = use MMX
  • 2 = auto detect
Default = 2, MMX and C routines give the same output.


Examples

Vinverse with default settings:

AviSource("blah.avi")
Vinverse(sstr=2.7, amnt=255, uv=3, scl=0.25, opt=2)


Changelog

Version      Date            Changes
v1.0 11/04/2006 - Initial release


Archived Downloads

Version Download Mirror
v1.0 vinverse.zip vinverse.zip





Back to Vinverse

Back to External Filters