SangNom

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (update)
m (add category)
Line 1: Line 1:
 +
{{FilterCat|External_filters|Restoration_filters|Deinterlacers}}
 +
[[Category:Plugins]]
 
{{Filter3
 
{{Filter3
 
|{{Author/Marc FD}}
 
|{{Author/Marc FD}}

Revision as of 22:32, 10 May 2014

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

Anti-aliasing

License Closed source
Discussion {{{6}}}


Contents

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.


Requirements

- AviSynth 2.5.8 or later
- Supported color formats: YV12
- ISSE capbale CPU


Syntax and Parameters

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


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


External Links





Back to External Filters

Personal tools