VsMSharpen
From Avisynth wiki
Abstract | |
---|---|
Author | Dubhater, Asd-g |
Version | v2.0.1 |
Download | vsMSharpen-2.0.1.7z |
Category | Sharpeners |
License | GPLv2 |
Discussion |
Contents |
Description
MSharpen is a sharpener that tries to sharpen only edges. This plugin is a port of the VapourSynth plugin MSharpen.
Note: in this version, "threshold"
and "strength"
are now a percentage and are floating point values rather than integer like the original version. Values from the original version do not give the same output as MSharpen, hence the name change to vsMSharpen.
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: Y8, YV12, YV16, YV24, YV411
- AviSynth+: all planar Y, YUV, and RGB formats (8/10/12/14/16-bit) are supported.
- *** vcredist_x86.exe is required for vsMSharpen-x86
- *** vcredist_x64.exe is required for vsMSharpen-x64
Syntax and Parameters
- vsMSharpen (clip, float "threshold", float "strength", bool "mask", bool "luma", bool "chroma")
- clip =
- Input clip
- clip =
- float threshold = 6.0
- Sensitivity of the edge detection. Decrease if important edges are getting blurred. This parameter became a percentage in order to make it independent of the bit depth.
- float threshold = 6.0
- float strength = 39.0
- Strength of the sharpening. This parameter became a percentage in order to make it independent of the bit depth
- float strength = 39.0
- bool mask = false
- If true, the edge mask will be returned instead of the filtered frames.
- bool mask = false
- bool luma = true
- bool chroma = false
- Planes to process.
- When
mask=true
, the untouched planes will contain garbage.
- bool luma = true
Examples
vsMSharpen with default settings:
AviSource("blah.avi") vsMSharpen(threshold=6.0, strength=39.0, mask=false, luma=true, chroma=true)
Changelog
Version Date Changes
v2.0.1 2020/05/29 - Fixed memory misalignment issue. v2.0.0 2020/05/21 - Rename the plugin to vsMSharpen
External Links
- GitHub - Source code repository.
Back to External Filters ←