SangNom

From Avisynth wiki
Jump to: navigation, search
Abstract
Author Marc FD
Version beta
Download SangNom.zip
Category Deinterlacing

Anti-aliasing

License Closed source
Discussion Doom9 Thread


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.
For an updated and faster version see SangNom2.

Requirements

  • AviSynth 2.5.8 or later
  • Supported color formats: YV12


Syntax and Parameters

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


External Links




Back to External Filters

Personal tools