WarpSharp/Xsharpen
From Avisynth wiki
Sharpening filter like VirtualDub's Xsharpen. It works as follows:
- It computes the minimum and maximum value of luma from the neighboring 8 pixels.
- It chooses smaller one between absolute values from the center of the minimum value and maximum value.
- Then, it interpolates the chosen value with luma.
Syntax and Parameters
- Xsharpen (clip, int "strength", int "threshold")
- clip =
- Input clip.
- clip =
- int strength = 128
- Strength
- int strength = 128
- int threshold = 8
- Threshold
- int threshold = 8
Examples
Xsharpen with default settings:
AviSource("Blah.avi") Xsharpen(strength=128, threshold=8)
Back to WarpSharp ←