Abcxyz: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
Line 36: Line 36:


== Examples ==
== Examples ==
abcxyz with default values.
  [[AviSource]]("Blah.avi")
  [[AviSource]]("Blah.avi")
  abcxyz()
  abcxyz(rad=3.0, ss=1.5)
<br>
<br>
== Changelog ==
== Changelog ==
   Changes 2013-10-16:
   Changes 2013-10-16:

Revision as of 18:05, 27 January 2014

Abstract
Author Didée
Version MT2
Download abcxyz_MT2
Category Dehalo
Requirements YV12
License
Discussion

Description

Reduces halo artifacts that can occur when sharpening.


Requirements

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

Required Plugins:


Syntax and Parameters

abcxyz (clip "clp", int "rad", int "ss")


clip  clp =
Input clip.


float  rad = 3.0
Radius for halo removal.


float  ss = 1.5
Range: 1.0 - ???
Radius for supersampling / ss=1.0 -> no supersampling.


Examples

abcxyz with default values.

AviSource("Blah.avi")
abcxyz(rad=3.0, ss=1.5)


Changelog

 Changes 2013-10-16:
     - Changed syntax to use MaskTools2.
       Output is identical to the original.
Changes 2005-11-02: - Initial release






Back to External Filters