WarpSharp YV12: Difference between revisions
From Avisynth wiki
Jump to navigationJump to search
WarpSharp YV12 |
m minor formatting |
||
| Line 1: | Line 1: | ||
{{ | {{FilterCat4|External_filters|Plugins|Restoration_filters|Sharpeners}} | ||
{{ | {{Filter3 | ||
| {{Author/Sh0dan}} | | {{Author/Sh0dan}} | ||
| beta 0.2 | | beta 0.2 | ||
| Line 6: | Line 6: | ||
| Sharpeners | | Sharpeners | ||
| [http://www.gnu.org/licenses/gpl-3.0.txt GPLv2] | | [http://www.gnu.org/licenses/gpl-3.0.txt GPLv2] | ||
|}} | |6=[http://forum.doom9.org/showthread.php?t=41907 Doom9 Thread]}} | ||
<br> | <br> | ||
== Description == | == Description == | ||
Directly ported from ffdshow; it contains WarpSharp & XSharpen.<br> | |||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
* 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 | |||
* Supported color formats: [[YV12]] | |||
<br> | <br> | ||
== Syntax and Parameters == | == [[Script variables|Syntax and Parameters]] == | ||
<br> | <br> | ||
=== WarpSharp === | === WarpSharp === | ||
:{{Template:FuncDef|WarpSharp (''clip'', ''int'' "depth", ''int'' "threshold")}} | :{{Template:FuncDef|WarpSharp (''clip'', ''int'' "depth", ''int'' "threshold")}} | ||
<br> | |||
::{{Par2||clip| }} | |||
:::Input clip. | |||
<br> | <br> | ||
::{{Par2|depth|int|30}} | ::{{Par2|depth|int|30}} | ||
| Line 27: | Line 30: | ||
=== XSharpen === | === XSharpen === | ||
:{{Template:FuncDef|XSharpen (''clip'', ''int'' "strength", ''int'' "threshold")}} | :{{Template:FuncDef|XSharpen (''clip'', ''int'' "strength", ''int'' "threshold")}} | ||
<br> | |||
::{{Par2||clip| }} | |||
:::Input clip. | |||
<br> | <br> | ||
::{{Par2|strength|int|30}} | ::{{Par2|strength|int|30}} | ||
| Line 54: | Line 60: | ||
*[http://forum.doom9.org/showthread.php?t=46612 Doom9 Forum] - XSharpen discussion. | *[http://forum.doom9.org/showthread.php?t=46612 Doom9 Forum] - XSharpen discussion. | ||
*[http://web.archive.org/web/20030211024042/http://cultact-server.novi.dk/kpo/avisynth/avisynth_alpha.html Archive.org] - WarpSharp YV12 released in the AviSynth 2.5 alpha page. | *[http://web.archive.org/web/20030211024042/http://cultact-server.novi.dk/kpo/avisynth/avisynth_alpha.html Archive.org] - WarpSharp YV12 released in the AviSynth 2.5 alpha page. | ||
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters#Sharpeners|External Filters]] ←''' | '''Back to [[External_filters#Sharpeners|External Filters]] ←''' | ||
Revision as of 20:49, 20 September 2014
| Abstract | |
|---|---|
| Author | sh0dan |
| Version | beta 0.2 |
| Download | warpsharp_dll_20030103.zip |
| Category | Sharpeners |
| License | GPLv2 |
| Discussion | Doom9 Thread |
Description
Directly ported from ffdshow; it contains WarpSharp & XSharpen.
Requirements
- AviSynth 2.5.8 or later
- Progressive input only
- Supported color formats: YV12
WarpSharp
- WarpSharp (clip, int "depth", int "threshold")
- clip =
- Input clip.
- clip =
- int depth = 30
- int depth = 30
- int threshold = 40
- int threshold = 40
XSharpen
- XSharpen (clip, int "strength", int "threshold")
- clip =
- Input clip.
- clip =
- int strength = 30
- Range: 0 to 127
- Range: 0 to 127
- int strength = 30
- int threshold = 40
- Range: 0 to 255
- .
- Range: 0 to 255
- int threshold = 40
Examples
WarpSharp with default settings:
AviSource("Blah.avi") WarpSharp(depth=30, threshold=40)
XSharpen with default settings:
AviSource("Blah.avi") XSharpen(strength=30, threshold=40)
Changelog
Version Date Changes
beta 0.2 2003/01/03 - Add XSharpen and other bug fixes beta 0.1 2002/12/?? - Initial release
External Links
- Doom9 Forum - WarpSharp YV12 discussion.
- Doom9 Forum - XSharpen discussion.
- Archive.org - WarpSharp YV12 released in the AviSynth 2.5 alpha page.
Back to External Filters ←