NonlinUSM: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m link and colorspace note
Description: add a bit of info
Line 10: Line 10:


== Description ==
== Description ==
Non-linear Unsharp Masking. Like most sharpeners, this script only processes luma, chroma channels are simply copied from the input clip.<br>
Non-linear Unsharp Masking, uses a wide-range Gaussian instead of a small-range kernel. Like most sharpeners, this script only processes luma, chroma channels are simply copied from the input clip.<br>
<br>
<br>
== Requirements ==
== Requirements ==
* AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater]
* AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater]

Revision as of 00:50, 6 March 2017

Abstract
Author Didée
Version 2012/02/01
Download NonlinUSM script
Category Sharpeners
License
Discussion Doom9 Thread

Description

Non-linear Unsharp Masking, uses a wide-range Gaussian instead of a small-range kernel. Like most sharpeners, this script only processes luma, chroma channels are simply copied from the input clip.

Requirements

Required Plugins

Additional planar colorspaces are supported when using AviSynth 2.6 and appropriate MaskTools2.

NonlinUSM (clip o, float "z", float "pow", float "str", float "rad", float "ldmp")


clip  o =
Input clip


float  z = 6.0
zero point


float  pow = 1.6
power


float  str = 1.0
strength


float  rad = 9.0
radius for "gauss"


float  ldmp = 0.001
damping for very small differences


Examples

NonlinUSM with default settings:

AviSource("Blah.avi")
NonlinUSM(z=6.0, pow=1.6, str=1.0, rad=9.0, ldmp=0.001)


Changelog

Version         Date            Changes
2012/02/01 2012/02/01 - Initial public release





Back to External Filters