VsMSharpen

From Avisynth wiki
Revision as of 18:29, 22 May 2020 by Reel.Deal (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Abstract
Author Dubhater, Asd-g
Version v2.0.0
Download vsMSharpen-2.0.0.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


*** 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


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  strength = 39.0
Strength of the sharpening. This parameter became a percentage in order to make it independent of the bit depth


bool  mask = false
If true, the edge mask will be returned instead of the filtered frames.


bool  luma = true
bool  chroma = false
Planes to process.
When mask=true, the untouched planes will contain garbage.


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.0 2020/0521 - Rename the plugin to vsMSharpen


External Links

  • GitHub - Source code repository.




Back to External Filters

Personal tools