NonlinUSM: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m External Links: add link
m minor formatting
Line 1: Line 1:
{{FilterCat|External_filters|Restoration_filters|Sharpeners}}
{{FilterCat4|External_filters|Scripts|Restoration_filters|Sharpeners}}
[[Category:Scripts]]
 
{{Filter3
{{Filter3
| {{Author/Didée}}
| {{Author/Didée}}
Line 11: Line 11:
<br>
<br>
== Description ==
== Description ==
:Non-linear Unsharp Masking.
Non-linear Unsharp Masking. 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 later
* AviSynth 2.5.8 or later
:- [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only  
* [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only  
:- Supported color formats: [[YV12]]
* Supported color formats: [[YV12]]
<br>
==== Required Plugins: ====
:*[[MaskTools2]] 2.0a48+
<br>
<br>
==== Required Plugins ====
*[[MaskTools2]] 2.0a48+
<br>
<br>
== [[Script variables|Syntax and Parameters]] ==
== [[Script variables|Syntax and Parameters]] ==
Line 55: Line 54:
*[http://forum.doom9.org/showthread.php?p=1555234 Doom9 Forum] - NonlinUSM discussion.
*[http://forum.doom9.org/showthread.php?p=1555234 Doom9 Forum] - NonlinUSM discussion.
*[http://forum.doom9.org/showthread.php?t=171050&highlight=nonlinusm Doom9 Forum] - Usage examples.
*[http://forum.doom9.org/showthread.php?t=171050&highlight=nonlinusm Doom9 Forum] - Usage examples.
<br>
<br>
<br>
<br>
<br>
-----------------------------------------------
-----------------------------------------------
'''Back to [[External_filters#Sharpeners|External Filters]] &larr;'''
'''Back to [[External_filters#Sharpeners|External Filters]] &larr;'''

Revision as of 20:54, 20 September 2014


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


Description

Non-linear Unsharp Masking. Like most sharpeners, this script only processes luma, chroma channels are simply copied from the input clip.

Requirements

  • AviSynth 2.5.8 or later
  • Progressive input only
  • Supported color formats: YV12


Required Plugins


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