WarpSharp/Xsharpen

From Avisynth wiki
Revision as of 17:06, 29 November 2015 by Reel.Deal (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Sharpening filter like VirtualDub's Xsharpen. It works as follows:

  1. It computes the minimum and maximum value of luma from the neighboring 8 pixels.
  2. It chooses smaller one between absolute values from the center of the minimum value and maximum value.
  3. Then, it interpolates the chosen value with luma.


Syntax and Parameters

Xsharpen (clip, int "strength", int "threshold")


clip   =
Input clip.


int  strength = 128
Strength


int  threshold = 8
Threshold


Examples

Xsharpen with default settings:

AviSource("Blah.avi")
Xsharpen(strength=128, threshold=8) 



Back to WarpSharp

Personal tools