SangNom
From Avisynth wiki
(Difference between revisions)
m (→Description) |
m (minor formatting) |
||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat4|External_filters|Plugins|Restoration_filters|Deinterlacers}} |
− | + | ||
{{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.<br/> | |
+ | For an updated and faster version see [[SangNom2]]. | ||
+ | <br> | ||
<br> | <br> | ||
− | |||
== Requirements == | == Requirements == | ||
− | + | * AviSynth 2.5.8 or later | |
− | + | * Supported color formats: [[YV12]] | |
− | + | * [[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> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters#Deinterlacing|External Filters]] ←''' | '''Back to [[External_filters#Deinterlacing|External Filters]] ←''' |
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 |
Contents |
[edit] 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.
[edit] Requirements
- AviSynth 2.5.8 or later
- Supported color formats: YV12
- ISSE capbale CPU
[edit] Syntax and Parameters
- SangNom (clip, int "order", int "aa")
- clip =
- Input clip.
- clip =
- int order = 1
- Order of deinterlacing:
- int order = 1
- 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.
- int aa = 48
[edit] 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)
[edit] Changelog
Version Date Changes
beta 01/18/2004 - public release
[edit] Archived Downloads
Version | Download | Mirror | Mirror 2 |
---|---|---|---|
beta | SangNom.zip | SangNom.zip | SangNom.zip |
[edit] External Links
- Doom9 Forum - SangNom discussion.
Back to External Filters ←