SangNom: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m minor formatting
 
Line 1: Line 1:
{{FilterCat|External_filters|Restoration_filters|Deinterlacers}}
{{FilterCat4|External_filters|Plugins|Restoration_filters|Deinterlacers}}
[[Category:Plugins]]
{{Filter3
{{Filter3
|{{Author/Marc FD}}
|{{Author/Marc FD}}
Line 8: Line 7:
Anti-aliasing
Anti-aliasing
|Closed source
|Closed source
}}
|6=[http://forum.doom9.org/showthread.php?t=69052 Doom9 Thread]}}
<br>
<br>
== Description ==
== Description ==
:SangNom is a single field deinterlacer, no fancy stuff, just plain edge-directed interpolation. In addition, it can also be used for anti-aliasing.
SangNom is a single field deinterlacer, no fancy stuff, just plain edge-directed interpolation. In addition, it can also be used for anti-aliasing.<br/>
For an updated and faster version see [[SangNom2]].
<br>
<br>
<br>
== Requirements ==
== Requirements ==
:- AviSynth 2.5.8 or later
* AviSynth 2.5.8 or later
:- Supported color formats: [[YV12]]
* Supported color formats: [[YV12]]


:- [[ISSE]] capbale CPU
* [[ISSE]] capbale CPU
<br>
<br>
== [[Script variables|Syntax and Parameters]] ==
== [[Script variables|Syntax and Parameters]] ==
:{{Template:FuncDef|SangNom (''clip'', ''int'' "order", ''int'' "aa")}}
:{{Template:FuncDef|SangNom (''clip'', ''int'' "order", ''int'' "aa")}}
<br>
::{{Par2| |clip| }}
:::Input clip.
<br>
<br>
::{{Par2|order|int|1}}
::{{Par2|order|int|1}}
Line 64: Line 67:
== External Links ==
== External Links ==
*[http://forum.doom9.org/showthread.php?t=69052 Doom9 Forum] - SangNom discussion.
*[http://forum.doom9.org/showthread.php?t=69052 Doom9 Forum] - SangNom discussion.
<br>
<br>
<br>
<br>
<br>
-----------------------------------------------
-----------------------------------------------
'''Back to [[External_filters#Deinterlacing|External Filters]] &larr;'''
'''Back to [[External_filters#Deinterlacing|External Filters]] &larr;'''

Latest revision as of 03:14, 25 September 2014

Abstract
Author Marc FD
Version beta
Download SangNom.zip
Category Deinterlacing

Anti-aliasing

License Closed source
Discussion Doom9 Thread


Description

SangNom is a single field deinterlacer, no fancy stuff, just plain edge-directed interpolation. In addition, it can also be used for anti-aliasing.
For an updated and faster version see SangNom2.

Requirements

  • AviSynth 2.5.8 or later
  • Supported color formats: YV12


SangNom (clip, int "order", int "aa")


clip   =
Input clip.


int  order = 1
Order of deinterlacing:
  • 0 : Single frame rate, keep bottom field.
  • 1 : Single frame rate, keep top field.
  • 2 : Double frame rate, top and bottom fields are kept but DoubleWeave must be called before SangNom.


int  aa = 48
Anti-aliasing strength; this value only affects luma, chroma is internally set to 0.


Examples

SangNom with default settings:

AviSource("blah.avi")
SangNom(order=1, aa=48)


SangNom with double frame rate output:

AviSource("blah.avi")
DoubleWeave()
SangNom(order=2, aa=48)


Changelog

Version      Date            Changes
beta 01/18/2004 - public release


Archived Downloads

Version Download Mirror Mirror 2
beta SangNom.zip SangNom.zip SangNom.zip





Back to External Filters